>basicRequire: ' + e, debugCode)\n } finally {\n module.deactivate();\n }\n }\n module.addOnloadCallback(codeWrapper);\n module.load();\n }\n };\n };\n\n dbgOn(!Object.isString(moduleName));\n var module = createNamespaceModule(moduleName);\n module.wasDefined = true;\n module.requires = basicRequire.curry(module);\n return module;\n},require: function require(/*requiredModuleNameOrAnArray, anotherRequiredModuleName, ...*/) {\n var getUniqueName = function() { return 'anonymous_module_' + require.counter },\n args = $A(arguments);\n require.counter !== undefined ? require.counter++ : require.counter = 0;\n var m = module(getUniqueName()).beAnonymous();\n if (lively.Config.showModuleDefStack)\n try { throw new Error() } catch(e) { m.defStack = e.stack }\n return m.requires(Object.isArray(args[0]) ? args[0] : args);\n},Class: [object Object],getStack: function getStack() {\n var result = [];\n for(var caller = arguments.callee.caller; caller; caller = caller.caller) {\n if (result.indexOf(caller) != -1) {\n result.push({name: \"recursive call can't be traced\"});\n break;\n }\n result.push(caller);\n };\n return result;\n},printStack: function printStack() {\n function guessFunctionName(func) {\n var qName = func.qualifiedMethodName && func.qualifiedMethodName(),\n regExpRes = func.toString().match(/function (.+)\\(/);\n return qName || (regExpRes && regExpRes[1]) || func;\n };\n\n var string = \"== Stack ==\\n\",\n stack = getStack();\n stack.shift(); // for getStack\n stack.shift(); // for printStack (me)\n var indent = \"\";\n for (var i=0; i < stack.length; i++) {\n string += indent + i + \": \" +guessFunctionName(stack[i]) + \"\\n\";\n indent += \" \";\n };\n return string;\n},logStack: function logStack() {\n this.console.log(printStack());\n},reqs: [lively.morphic.CompatLayer, lively.morphic.Widgets, lively.morphic.MorphAddons],$: function ( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\treturn new jQuery.fn.init( selector, context, rootjQuery );\n\t},jQuery: function ( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\treturn new jQuery.fn.init( selector, context, rootjQuery );\n\t},requestAnimationFrame: function webkitRequestAnimationFrame() { [native code] },cancelAnimationFrame: function webkitCancelAnimationFrame() { [native code] },CustomJSON: [object Object],Objects: [object Object],Properties: [object Object],Strings: [object Object],Numbers: [object Object],UserAgent: [object Object],constructor: function Namespace(){ Class.initializer.apply(this, arguments) },initialize: function (context, nsName) {\n this.namespaceIdentifier = context.namespaceIdentifier + '.' + nsName;\n this.createTime = new Date();\n },gather: function (selector, condition, recursive) {\n var result = Object.values(this).select(function(ea) { return condition.call(this, ea) }, this);\n if (!recursive) return result;\n return this.subNamespaces().inject(result, function(result, ns) { return result.concat(ns[selector](true)) });\n },subNamespaces: function (recursive) {\n return this.gather(\n 'subNamespaces',\n function(ea) { return (ea instanceof lively.lang.Namespace || ea === Global) && ea !== this },\n recursive);\n },classes: function (recursive) {\n var normalClasses = this.gather(\n 'classes',\n function(ea) { return ea && ea !== this.constructor && Class.isClass(ea) },\n recursive);\n if (this === Global)\n return [Array, Number, String, Function].concat(normalClasses);\n return normalClasses;\n },functions: function (recursive) {\n return this.gather(\n 'functions',\n function(ea) { return ea\n && !Class.isClass(ea)\n && Object.isFunction(ea)\n && !ea.declaredClass\n && this.requires !== ea\n && ea.getOriginal() === ea },\n recursive);\n },namespaceIdentifier: Global,isLoaded: function () {\n return true;\n },lively: module(Global.lively),UUID: function UUID(){ Class.initializer.apply(this, arguments) },Namespace: [object Object],Converter: [object Object],NodeFactory: [object Object],XLinkNS: [object Object],LivelyNS: [object Object],XHTMLNS: [object Object],Exporter: function Exporter(){ Class.initializer.apply(this, arguments) },Copier: function Copier(){ Class.initializer.apply(this, arguments) },Importer: function Importer(){ Class.initializer.apply(this, arguments) },DocLinkConverter: function DocLinkConverter(){ Class.initializer.apply(this, arguments) },stringToXML: function (string) {\n return new DOMParser().parseFromString(string, \"text/xml\").documentElement;\n },RealTrait: function RealTrait(){ Class.initializer.apply(this, arguments) },Trait: function (/*traitName, def ... */) {\n var args = $A(arguments),\n traitName = args.shift(),\n trait = RealTrait.named(traitName),\n category = ' default category';\n for (var i = 0; i < args.length; i++) {\n if (Object.isString(args[i])) {\n category = args[i];\n } else {\n trait.extend(category, args[i]);\n }\n }\n return trait;\n },logStackFor: function (obj, methodName) {\n obj[methodName] = obj[methodName].wrap(function(proceed) {\n var args = $A(arguments); args.shift();\n MyLogDepth++;\n dbgOn(true);\n var result = proceed.apply(this, args);\n\n logStack();\n MyLogDepth--;\n return result\n })\n },MyLogDepth: 0,resetLogDepth: function () { MyLogDepth = 0 },logCall: function (args, from, shift) {\n var s = Strings.indent('', ' ', Global.MyLogDepth);\n if (from) s += String(from) + \" \";\n s += args.callee.qualifiedMethodName() + \"(\"\n var myargs = $A(args);\n if (shift) myargs.shift(); // for loggin inside wrapper functions\n myargs.each(function(ea){ s += ea + \", \"});\n s += \")\";\n console.log(s);\n },logCallHelper: function (from, methodName, args, indent) {\n return Strings.indent(\n Strings.format('%s>>%s(%s)',\n from.toString(),\n methodName,\n args.collect(function(ea) { return ea.toString() }).join(', ')),\n ' ', indent);\n },logMethod: function (obj, methodName) {\n obj[methodName] = obj[methodName].wrap(function(proceed) {\n var args = $A(arguments); args.shift();\n MyLogDepth++;\n console.log(logCallHelper(this, methodName, args, MyLogDepth * 2))\n var result = proceed.apply(this, args);\n MyLogDepth--;\n return result\n })\n },printObject: function (obj) {\n var s = String(obj) + \":\";\n Properties.own(obj).forEach(function(ea) {\n var value;\n try { value = String(obj[ea])} catch (e) { };\n s += \" \" + ea + \":\" + value + \"\\n\"\n });\n return s\n },printObjectFull: function (obj) {\n var s = \"{\";\n for(ea in obj) {\n s += \" \" + ea + \":\" + String(obj[ea]) + \", \\n\"\n };\n return s + \"}\"\n },logObject: function (obj) {\n console.log(printObject(obj))\n },AttributeConnection: function AttributeConnection(){ Class.initializer.apply(this, arguments) },connect: function () { [native code] },disconnect: function (sourceObj, attrName, targetObj, targetMethodName) {\n if (!sourceObj.attributeConnections) return;\n\n sourceObj.attributeConnections.select(function(con) {\n return \tcon.getSourceAttrName() == attrName &&\n con.getTargetObj() === targetObj &&\n con.getTargetMethodName() == targetMethodName;\n }).forEach(function(con) { con.disconnect() });\n\n if (typeof sourceObj['onDisconnect'] == 'function') {\n sourceObj.onDisconnect(attrName, targetObj, targetMethodName);\n };\n },disconnectAll: function (sourceObj) {\n while (sourceObj.attributeConnections && sourceObj.attributeConnections.length > 0) {\n sourceObj.attributeConnections[0].disconnect();\n }\n },signal: function (sourceObj, attrName, newVal) {\n var connections = sourceObj.attributeConnections;\n if (!connections) return;\n var oldVal = sourceObj[attrName];\n for (var i = 0, len = connections.length; i < len; i++) {\n var c = connections[i];\n if (c.getSourceAttrName() == attrName) c.update(newVal, oldVal);\n }\n },updateAttributeConnection: function (sourceObj, attrName, newVal) {\n var connections = sourceObj.attributeConnections;\n if (!connections) return;\n var oldVal = sourceObj[attrName];\n for (var i = 0, len = connections.length; i < len; i++) {\n var c = connections[i];\n if (c.getSourceAttrName() == attrName) c.update(newVal, oldVal);\n }\n },apps: module(Global.apps),Point: function Point(){ Class.initializer.apply(this, arguments) },pt: function (x, y) {\n // DEPRECATED: use lively.pt(x, y) instead\n return lively.pt(x, y);\n},Rectangle: function Rectangle(){ Class.initializer.apply(this, arguments) },rect: function (arg1, arg2, arg3, arg4) {\n // DEPRECATED: use lively.rect(arg1, arg2, arg3, arg4) instead\n return lively.rect(arg1, arg2, arg3, arg4);\n},Color: function Color(){ Class.initializer.apply(this, arguments) },ObjectGraphLinearizer: function ObjectGraphLinearizer(){ Class.initializer.apply(this, arguments) },ObjectLinearizerPlugin: function ObjectLinearizerPlugin(){ Class.initializer.apply(this, arguments) },ClassPlugin: function ClassPlugin(){ Class.initializer.apply(this, arguments) },LayerPlugin: function LayerPlugin(){ Class.initializer.apply(this, arguments) },StoreAndRestorePlugin: function StoreAndRestorePlugin(){ Class.initializer.apply(this, arguments) },DoNotSerializePlugin: function DoNotSerializePlugin(){ Class.initializer.apply(this, arguments) },DoWeakSerializePlugin: function DoWeakSerializePlugin(){ Class.initializer.apply(this, arguments) },LivelyWrapperPlugin: function LivelyWrapperPlugin(){ Class.initializer.apply(this, arguments) },IgnoreDOMElementsPlugin: function IgnoreDOMElementsPlugin(){ Class.initializer.apply(this, arguments) },RegExpPlugin: function RegExpPlugin(){ Class.initializer.apply(this, arguments) },OldModelFilter: function OldModelFilter(){ Class.initializer.apply(this, arguments) },DEPRECATEDScriptFilter: function DEPRECATEDScriptFilter(){ Class.initializer.apply(this, arguments) },ClosurePlugin: function ClosurePlugin(){ Class.initializer.apply(this, arguments) },IgnoreFunctionsPlugin: function IgnoreFunctionsPlugin(){ Class.initializer.apply(this, arguments) },GenericFilter: function GenericFilter(){ Class.initializer.apply(this, arguments) },ConversionPlugin: function ConversionPlugin(){ Class.initializer.apply(this, arguments) },AttributeConnectionPlugin: function AttributeConnectionPlugin(){ Class.initializer.apply(this, arguments) },CopyOnlySubmorphsPlugin: function CopyOnlySubmorphsPlugin(){ Class.initializer.apply(this, arguments) },IgnoreEpiMorphsPlugin: function IgnoreEpiMorphsPlugin(){ Class.initializer.apply(this, arguments) },cop: module(Global.cop),enableLayer: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },disableLayer: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },withLayers: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },withoutLayers: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },createLayer: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerObject: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerClass: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerClassAndSubclasses: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },Layer: function Layer(){ Class.initializer.apply(this, arguments) },LayerableObjectTrait: [object Object],LayerableObject: function LayerableObject(){ Class.initializer.apply(this, arguments) },COPError: function COPError(){ Class.initializer.apply(this, arguments) },CouchDB: function CouchDB(){ Class.initializer.apply(this, arguments) },ometa: module(Global.ometa),escapeStringFor: [object Object],escapeChar: function (c) {\n var charCode = c.charCodeAt(0)\n return charCode > 255 ? String.fromCharCode(charCode) : escapeStringFor[charCode]\n},getTag: function (x) {\n\t\tif (x === null || x === undefined) return x;\n\t\tswitch (typeof x) {\n\t\t\tcase 'object': return x.hasOwnProperty(\"_id_\") ? x._id_ : x._id_ = \"R\" + numIds++;\n\t\t\tcase 'boolean': return x ? \"Btrue\" : \"Bfalse\";\n\t\t\tcase 'string': return \"S\" + x;\n\t\t\tcase 'number': return \"N\" + x;\n\t\t}\n\t\tthrow new Error('Cannot determine tag for object ' + x);\n\t},printOn: function ometaPrintOn(objOrArray, ws) {\n\tif (Object.isArray(objOrArray)) {\n\t\tws.nextPutAll(\"[\")\n\t\tfor (var idx = 0; idx < objOrArray.length; idx++) {\n\t\t\tif (idx > 0)\n\t\t\tws.nextPutAll(\", \")\n\t\t\tprintOn(objOrArray[idx], ws);\n\t\t}\n\t\tws.nextPutAll(\"]\")\n\t} else {\n\t\tws.nextPutAll(objOrArray !== 0 && !objOrArray ? String(objOrArray) : objOrArray.toString())\n\t}\n},ownPropertyNames: function ownPropertyNames(obj) {\n var r = []\n for (name in obj)\n if (obj.hasOwnProperty(name))\n r.push(name)\n return r\n},hasProperty: function hasProperty(obj, p) { { return obj[p] != undefined } },isImmutable: function (x) { return x === null || x === undefined || typeof x === 'boolean' || typeof x === 'number' || typeof x === 'string'},isNumber: function isNumber(obj) { return Object.isNumber(obj) },isString: function isString(obj) { return Object.isString(obj) },isCharacter: function isCharacter(obj) { return Object.isString(obj) && obj.length == 1 },isSpace: function isSpace(obj) { return isCharacter(obj) && obj.charCodeAt(0) <= 32 },isDigit: function isDigit(obj) { return isCharacter(obj) && obj >= \"0\" && obj <= \"9\" },isLower: function isLower(obj) { return isCharacter(obj) && obj >= \"a\" && obj <= \"z\" },isUpper: function isUpper(obj) { return isCharacter(obj) && obj >= \"A\" && obj <= \"Z\" },digitValue: function digitValue(obj) { return Object.isString(obj) && obj.charCodeAt(0) - \"0\".charCodeAt(0) },isSequenceable: function (obj) { return Object.isArray(obj) || Object.isString(obj) },StringBuffer: function StringBuffer() {\n this.strings = []\n for (var idx = 0; idx < arguments.length; idx++)\n this.nextPutAll(arguments[idx])\n},ReadStream: function ReadStream(anArrayOrString) {\n this.src = anArrayOrString\n this.pos = 0\n},ometaUnescape: function ometaUnescape(s) {\n if (s[0] == '\\\\')\n switch (s[1]) {\n case '\\\\': return '\\\\'\n case 'r': return '\\r'\n case 'n': return '\\n'\n case 't': return '\\t'\n default: return s[1]\n }\n else\n return s\n},tempnam: function tempnam(s) { return (s ? s : \"_tmpnam_\") + tempnam.n++ },Change: function Change(){ Class.initializer.apply(this, arguments) },ChangeSet: function ChangeSet(){ Class.initializer.apply(this, arguments) },ClassChange: function ClassChange(){ Class.initializer.apply(this, arguments) },ProtoChange: function ProtoChange(){ Class.initializer.apply(this, arguments) },StaticChange: function StaticChange(){ Class.initializer.apply(this, arguments) },MethodCategoryChange: function MethodCategoryChange(){ Class.initializer.apply(this, arguments) },DoitChange: function DoitChange(){ Class.initializer.apply(this, arguments) },AnotherCodeMarkupParser: function AnotherCodeMarkupParser(){ Class.initializer.apply(this, arguments) },CrayonColors: function CrayonColors(){ Class.initializer.apply(this, arguments) },Model: function Model(){ Class.initializer.apply(this, arguments) },SyntheticModel: function SyntheticModel(){ Class.initializer.apply(this, arguments) },ViewTrait: [object Object],View: function View(){ Class.initializer.apply(this, arguments) },range: function (begin, end, step) {\n step = step || 1\n var result = [];\n for (var i = begin; i <= end; i += step)\n result.push(i);\n return result;\n },newFakeMouseEvent: function (point) {\n // DEPRECATED use livelymorphic.Events EventSimulator\n var rawEvent = {\n type: \"mousemove\",\n pageX: 100,\n pageY: 100,\n altKey: false,\n shiftKey: false,\n metaKey: false\n };\n var evt = new Event(rawEvent);\n evt.hand = lively.morphic.World.current().hands.first();\n if (point) evt.mousePoint = point;\n return evt;\n },showThenHide: function (morph, duration) {\n duration = duration || 3;\n morph.openInWorld();\n if (duration) // FIXME use scheduler\n (function() { morph.remove() }).delay(duration);\n },showPt: function (/*pos or x,y, duration, extent*/) {\n var args = $A(arguments);\n // pos either specified using point object or two numbers\n var pos = args[0].constructor == lively.Point ?\n args.shift() :\n pt(args.shift(), args.shift());\n var duration = args.shift();\n var extent = args.shift() || pt(12,12);\n\n\n var b = new BoxMorph(extent.extentAsRectangle());\n b.align(b.getCenter(), pos);\n b.applyStyle({fill: Color.red});\n b.ignoreEvents();\n b.disableEvents();\n b.setOpacity(0.5);\n\n showThenHide(b, duration);\n return b;\n },showRect: function (rect, duration) {\n var b = new BoxMorph(rect);\n b.applyStyle({borderColor: Color.red, borderWidth: 2, fill: null});\n b.ignoreEvents();\n b.disableEvents();\n b.setOpacity(0.5);\n showThenHide(b, duration);\n return b\n },showMorph: function (morph) {\n showRect(morph.getGlobalTransform().transformRectToRect(morph.shape.bounds()))\n },showConnection: function (c, duration) {\n var m1 = c.getSourceObj();\n var m2 = c.getTargetObj();\n\n if (m1.isConnectionVisualization || m2.isConnectionVisualization) return; // don't show yourself...\n if (!(m1 instanceof Morph)) return;\n if (!(m2 instanceof Morph)) return;\n\n var morph = Morph.makeConnector(pt(100,100), pt(200,200));\n morph.isConnectionVisualization = true;\n\n if (duration) showThenHide(morph, duration);\n else morph.openInWorld();\n\n morph.setBorderWidth(2);\n morph.setBorderColor(Color.red);\n morph.arrowHead.head.setFill(Color.red);\n morph.arrowHead.head.setBorderColor(Color.red);\n\n var labelStyle = {fill: Color.white, textColor: Color.red};\n\n morph.connectMorphs(m1, m2)\n var startLabel = new lively.morphic.Text(new Rectangle(0,0, 100,30), c.getSourceAttrName()).beLabel();\n startLabel.applyStyle(labelStyle);\n morph.addMorph(startLabel);\n morph.startLabel = startLabel;\n\n var endLabel = new lively.morphic.Text(new Rectangle(0,0, 100,30), c.getTargetMethodName()).beLabel();\n endLabel.applyStyle(labelStyle);\n morph.addMorph(endLabel);\n morph.endLabel = endLabel;\n\n if (c.converterString) {\n var middleLabel = new lively.morphic.Text(new Rectangle(0,0, 100,30), c.converterString).beLabel();\n middleLabel.applyStyle(labelStyle);\n morph.addMorph(middleLabel);\n morph.middleLabel = middleLabel;\n }\n\n morph.addScript(function updateLabelPositions() {\n this.startLabel.setPosition(this.getStartPos());\n this.endLabel.setPosition(this.getEndPos());\n if (this.middleLabel) this.middleLabel.setPosition(this.getRelativePoint(0.5));\n });\n\n connect(morph, 'geometryChanged', morph, 'updateLabelPositions');\n\n morph.toggleLineStyle();\n\n return morph;\n },showConnections: function (obj) {\n if (!obj.attributeConnections) return;\n for (var i = 0; i < obj.attributeConnections.length; i++)\n showConnection(obj.attributeConnections[i]);\n },hideAllConnections: function (morph) {\n morph.withAllSubmorphsDo(function() {\n if (this.isConnectionVisualization) this.remove();\n });\n },fail: match failed,OMeta: [object Object],ChunkParser: [object Object],OMInputStream: function OMInputStream(hd, tl) {\n this.memo = { }\n this.hd = hd\n this.tl = tl\n},OMInputStreamEnd: function OMInputStreamEnd(idx) {\n this.memo = { }\n this.idx = idx\n},makeArrayOMInputStream: function makeArrayOMInputStream(arr, idx) { return idx < arr.length ? new ArrayOMInputStream(arr, idx) : new OMInputStreamEnd(idx) },ArrayOMInputStream: function ArrayOMInputStream(arr, idx) {\n this.memo = { }\n this.arr = arr\n this.idx = idx\n this.hd = arr[idx]\n},makeOMInputStreamProxy: function makeOMInputStreamProxy(target) {\n return Object.delegated(target,{\n memo: { },\n target: target,\n tail: function() { return makeOMInputStreamProxy(target.tail()) }\n })\n},Failer: function Failer() { },DeprecatedView: function DeprecatedView(){ Class.initializer.apply(this, arguments) },XPathEmulator: function XPathEmulator(){ Class.initializer.apply(this, arguments) },XPathEmulatorResult: function XPathEmulatorResult(){ Class.initializer.apply(this, arguments) },Query: function Query(){ Class.initializer.apply(this, arguments) },Styles: function Styles(){ Class.initializer.apply(this, arguments) },DisplayThemes: [object Object],Parser: [object Object],BSNullOptimization: [object Object],BSAssociativeOptimization: [object Object],BSSeqInliner: [object Object],JumpTable: function (choiceOp,choice){(this[\"choiceOp\"]=choiceOp);(this[\"choices\"]=({}));this.add(choice)},BSJumpTableOptimization: [object Object],BSOMetaOptimizer: [object Object],URL: function URL(){ Class.initializer.apply(this, arguments) },NetRequestStatus: function NetRequestStatus(){ Class.initializer.apply(this, arguments) },NetRequest: function NetRequest(){ Class.initializer.apply(this, arguments) },NetRequestReporterTrait: [object Object],NetRequestReporter: function NetRequestReporter(){ Class.initializer.apply(this, arguments) },Resource: function Resource(){ Class.initializer.apply(this, arguments) },SVNResource: function SVNResource(){ Class.initializer.apply(this, arguments) },SVNVersionInfo: function SVNVersionInfo(){ Class.initializer.apply(this, arguments) },WebResource: function WebResource(){ Class.initializer.apply(this, arguments) },LKFileParser: [object Object],TextDevLayer: TextDevLayer,NewMorphicCompatLayer: NewMorphicCompatLayer,_layer_object_id: 0,__layered_Morph__: undefined,Morph: function Morph(){ Class.initializer.apply(this, arguments) },__layered_BoxMorph__: undefined,__layered_TextMorph__: undefined,__layered_WorldMorph__: undefined,WorldMorph: function World(){ Class.initializer.apply(this, arguments) },__layered_ButtonMorph__: undefined,ButtonMorph: function Button(){ Class.initializer.apply(this, arguments) },__layered_PanelMorph__: undefined,PanelMorph: function Panel(){ Class.initializer.apply(this, arguments) },__layered_HorizontalDivider__: undefined,HorizontalDivider: function HorizontalDivider(){ Class.initializer.apply(this, arguments) },__layered_SliderMorph__: undefined,SliderMorph: function Slider(){ Class.initializer.apply(this, arguments) },__layered_MenuMorph__: undefined,MenuMorph: function Menu(){ Class.initializer.apply(this, arguments) },__layered_ImageMorph__: undefined,ImageMorph: function Image(){ Class.initializer.apply(this, arguments) },__layered_ContainerMorph__: undefined,ContainerMorph: function Morph(){ Class.initializer.apply(this, arguments) },__layered_TextSelectionMorph__: undefined,TextSelectionMorph: function Morph(){ Class.initializer.apply(this, arguments) },__layered_Widget__: undefined,Widget: function WindowedApp(){ Class.initializer.apply(this, arguments) },__layered_newTextPane__: undefined,newTextPane: function (initialBounds, defaultText) {\n var text = new lively.morphic.Text(initialBounds.extent().extentAsRectangle(), defaultText);\n text.applyStyle({clipMode: 'scroll', fixedWidth: true, fixedHeight: true})\n return text\n },__layered_newDragnDropListPane__: undefined,newDragnDropListPane: function (initialBounds, suppressSelectionOnUpdate) {\n return new lively.morphic.List(initialBounds, ['-----'])\n },LivelyJSParser: [object Object],JSTranslator: [object Object],BSJSParser: [object Object],keywords: [break, case, catch, continue, default, delete, do, else, finally, for, function, if, in, instanceof, new, return, switch, this, throw, try, typeof, var, void, while, with, ometa],BSJSTranslator: [object Object],less: [object Object],BSOMetaParser: [object Object],BSOMetaTranslator: [object Object],LKJSParser: [object Object],LKJSTranslator: [object Object],LKOMetaParser: [object Object],LKOMetaJSParser: [object Object],LKOMetaJSTranslator: [object Object],OMetaSupport: function OMetaSupport(){ Class.initializer.apply(this, arguments) },CodeParser: function CodeParser(){ Class.initializer.apply(this, arguments) },JsParser: function JsParser(){ Class.initializer.apply(this, arguments) },OMetaParser: function OMetaParser(){ Class.initializer.apply(this, arguments) },show: function (obj) {\n if (!obj) return null;\n if (Object.isArray(obj)) return obj.forEach(function(ea) { lively.morphic.show(ea) });\n else if (obj instanceof lively.Point) return lively.morphic.newShowPt(obj);\n else if (obj instanceof lively.Line) return lively.morphic.newShowLine(obj);\n else if (obj instanceof Rectangle) return lively.morphic.newShowRect(obj);\n else if (obj.isMorph) return lively.morphic.newShowMorph(obj);\n else if (obj instanceof HTMLElement) return lively.morphic.newShowElement(obj);\n return null;\n },alertDbg: function (msg) {\n if (Global.lively.morphic.World) alert(msg)\n },alert: function (msg, delay) {\n var world = Global.lively && lively.morphic && lively.morphic.World.current();\n if (world) world.alert(String(msg), delay);\n else console.log('ALERT: ' + msg);\n },alertOK: function (msg, delay) {\n var world = Global.lively && lively.morphic && lively.morphic.World.current();\n if (world) world.setStatusMessage(String(msg), Color.green, delay || 5);\n else console.log(msg);\n },inspect: function (obj) {\n if (Global.lively && lively.morphic && lively.morphic.World.current())\n return lively.morphic.World.current().openInspectorFor(obj);\n },edit: function (obj) {\n if (Global.lively && lively.morphic && lively.morphic.World.current())\n return lively.morphic.World.current().openObjectEditorFor(obj);\n },log: function (/*msg, args*/) {\n var args = Array.from(arguments),\n msg = Strings.format.apply(Strings, args);\n if (Config.verboseLogging) {\n $world.setStatusMessage(msg, Config.get('textColor'), 3);\n } else {\n console.log(msg);\n }\n },AnotherSourceDatabase: function AnotherSourceDatabase(){ Class.initializer.apply(this, arguments) },IgnoreRenderContextTablePlugin: function IgnoreRenderContextTablePlugin(){ Class.initializer.apply(this, arguments) },anonymous_module_0: module(Global.anonymous_module_0),$morph: function getMorphNamedShortcut(name) {\n return lively.morphic.World.current().getMorphNamed(name);\n },$world: ,$m: function getMorphWrappedObject(name){\n\n var morph = $morph(name)\n if(!morph || !morph.wrappedObject) return undefined\n return morph.wrappedObject()\n },$part: function getPartItem(partName, partSpaceName) {\n return $world.loadPartItem(partName, partSpaceName);\n },anonymous_module_1: module(Global.anonymous_module_1),ConnectorLayer: ConnectorLayer,NoMagnetsLayer: NoMagnetsLayer,PartCachingLayer: PartCachingLayer,EventExperimentLayer: EventExperimentLayer,SyntaxHighlightLayer: SyntaxHighlightLayer,SyntaxHighlighter: function SyntaxHighlighter(){ Class.initializer.apply(this, arguments) },foundClass: function Object() { [native code] },AtomicDiff: function AtomicDiff(){ Class.initializer.apply(this, arguments) },Diff: function Diff(){ Class.initializer.apply(this, arguments) },DiffList: function DiffList(){ Class.initializer.apply(this, arguments) },anonymous_module_2: module(Global.anonymous_module_2),anonymous_module_3: module(Global.anonymous_module_3),anonymous_module_4: module(Global.anonymous_module_4),anonymous_module_5: module(Global.anonymous_module_5),projects: module(Global.projects),AdvancedSyntaxHighlighting: AdvancedSyntaxHighlighting,Preloader: Preloader,anonymous_module_6: module(Global.anonymous_module_6),WorldSearchLayer: WorldSearchLayer,HighlightSearchLayer: HighlightSearchLayer,TracerStackNode: function TracerStackNode(){ Class.initializer.apply(this, arguments) },TracerTreeNode: function TracerTreeNode(){ Class.initializer.apply(this, arguments) },DebugScriptsLayer: DebugScriptsLayer,DebugMethodsLayer: DebugMethodsLayer,DebugGlobalErrorHandlerLayer: DebugGlobalErrorHandlerLayer,DeepInterpretationLayer: DeepInterpretationLayer,LiveInterpreterLayer: LiveInterpreterLayer,MaximumStepsLiveInterpreterLayer: MaximumStepsLiveInterpreterLayer,IntelligentSlider: IntelligentSlider,LastEvent: [object KeyboardEvent],LastEventWasHandled: false,anonymous_module_7: module(Global.anonymous_module_7),worldRequirementsChange: DoitChange named local requirements -- subelems: 0,worldRequirements: [lively.morphic.CompatLayer],removeRequirement: function (name) {\n changeSet.removeWorldRequirement(name);\n alertOK(name + ' is not loaded at startup anymore');\n },menuItems: [[lively.morphic.CompatLayer, [[Remove, function curried() {\n return __method.apply(this, args.concat(Array.from(arguments)));\n }]]]],lastMenuBounds: lively.rect(1236,120,100,230),anonymous_module_8: module(Global.anonymous_module_8),anonymous_module_9: module(Global.anonymous_module_9),anonymous_module_10: module(Global.anonymous_module_10),anonymous_module_11: module(Global.anonymous_module_11),anonymous_module_12: module(Global.anonymous_module_12),anonymous_module_13: module(Global.anonymous_module_13),CSSCharsetRule: function CSSCharsetRule() { [native code] },HTMLLIElement: function HTMLLIElement() { [native code] },WebKitCSSTransformValue: function WebKitCSSTransformValue() { [native code] },SVGFEConvolveMatrixElement: function SVGFEConvolveMatrixElement() { [native code] },NamedNodeMap: function NamedNodeMap() { [native code] },FileReader: function FileReader() { [native code] },SVGMissingGlyphElement: function SVGMissingGlyphElement() { [native code] },FileError: function FileError() { [native code] },CompositionEvent: function CompositionEvent() { [native code] },SVGCircleElement: function SVGCircleElement() { [native code] },SVGFontFaceSrcElement: function SVGFontFaceSrcElement() { [native code] },SVGSetElement: function SVGSetElement() { [native code] },HTMLHeadingElement: function HTMLHeadingElement() { [native code] },SVGAnimatedBoolean: function SVGAnimatedBoolean() { [native code] },HTMLAnchorElement: function HTMLAnchorElement() { [native code] },HTMLHtmlElement: function HTMLHtmlElement() { [native code] },SVGImageElement: function SVGImageElement() { [native code] },OverflowEvent: function OverflowEvent() { [native code] },Int8Array: function Int8Array() { [native code] },SpeechInputEvent: function SpeechInputEvent() { [native code] },SVGFEOffsetElement: function SVGFEOffsetElement() { [native code] },HTMLFrameElement: function HTMLFrameElement() { [native code] },webkitAudioContext: function AudioContext() { [native code] },HTMLLegendElement: function HTMLLegendElement() { [native code] },TouchEvent: function TouchEvent() { [native code] },DOMStringMap: function DOMStringMap() { [native code] },RangeException: function RangeException() { [native code] },parent: [object Window],event: [object KeyboardEvent],webkitIDBRequest: function IDBRequest() { [native code] },SVGFEBlendElement: function SVGFEBlendElement() { [native code] },SVGAltGlyphItemElement: function SVGAltGlyphItemElement() { [native code] },Notation: function Notation() { [native code] },HTMLPreElement: function HTMLPreElement() { [native code] },Selection: function Selection() { [native code] },SVGFEMorphologyElement: function SVGFEMorphologyElement() { [native code] },Text: function Text() { [native code] },SVGFESpotLightElement: function SVGFESpotLightElement() { [native code] },SVGGlyphElement: function SVGGlyphElement() { [native code] },HTMLBaseFontElement: function HTMLBaseFontElement() { [native code] },SVGPolygonElement: function SVGPolygonElement() { [native code] },File: function File() { [native code] },SVGLinearGradientElement: function SVGLinearGradientElement() { [native code] },HTMLMenuElement: function HTMLMenuElement() { [native code] },scrollbars: [object BarInfo],pageXOffset: 1019,screen: [object Screen],Attr: function Attr() { [native code] },DOMStringList: function DOMStringList() { [native code] },HTMLTitleElement: function HTMLTitleElement() { [native code] },webkitIDBTransaction: function IDBTransaction() { [native code] },performance: [object Performance],frameElement: null,SVGTitleElement: function SVGTitleElement() { [native code] },defaultStatus: ,Node: function Node() { [native code] },StyleSheet: function StyleSheet() { [native code] },SVGPathSegCurvetoCubicSmoothRel: function SVGPathSegCurvetoCubicSmoothRel() { [native code] },WebKitCSSKeyframesRule: function WebKitCSSKeyframesRule() { [native code] },webkitURL: function URL() { [native code] },XPathEvaluator: function XPathEvaluator() { [native code] },SVGLength: function SVGLength() { [native code] },Option: [object Function],WebKitCSSMatrix: function WebKitCSSMatrix() { [native code] },statusbar: [object BarInfo],Rect: function Rect() { [native code] },SVGMatrix: function SVGMatrix() { [native code] },AudioProcessingEvent: function AudioProcessingEvent() { [native code] },WebKitCSSRegionRule: function WebKitCSSRegionRule() { [native code] },SVGStringList: function SVGStringList() { [native code] },EventException: function EventException() { [native code] },WebGLBuffer: function WebGLBuffer() { [native code] },HTMLMapElement: function HTMLMapElement() { [native code] },SVGPolylineElement: function SVGPolylineElement() { [native code] },crypto: [object Crypto],SVGAnimatedLengthList: function SVGAnimatedLengthList() { [native code] },SVGStopElement: function SVGStopElement() { [native code] },CSSStyleSheet: function CSSStyleSheet() { [native code] },webkitIDBKeyRange: function IDBKeyRange() { [native code] },SVGPreserveAspectRatio: function SVGPreserveAspectRatio() { [native code] },CanvasGradient: function CanvasGradient() { [native code] },SVGAnimatedLength: function SVGAnimatedLength() { [native code] },SVGPathSegCurvetoCubicSmoothAbs: function SVGPathSegCurvetoCubicSmoothAbs() { [native code] },WebSocket: function WebSocket() { [native code] },length: 0,offscreenBuffering: true,HTMLTableSectionElement: function HTMLTableSectionElement() { [native code] },SVGPathSegCurvetoQuadraticAbs: function SVGPathSegCurvetoQuadraticAbs() { [native code] },SVGPathSegLinetoHorizontalAbs: function SVGPathSegLinetoHorizontalAbs() { [native code] },HTMLFieldSetElement: function HTMLFieldSetElement() { [native code] },HTMLAudioElement: function HTMLAudioElement() { [native code] },HTMLCollection: function HTMLCollection() { [native code] },SVGFEFuncRElement: function SVGFEFuncRElement() { [native code] },screenTop: 24,personalbar: [object BarInfo],SVGSwitchElement: function SVGSwitchElement() { [native code] },SVGAnimatedString: function SVGAnimatedString() { [native code] },PopStateEvent: function PopStateEvent() { [native code] },SVGAnimatedPreserveAspectRatio: function SVGAnimatedPreserveAspectRatio() { [native code] },HTMLImageElement: function HTMLImageElement() { [native code] },SVGLineElement: function SVGLineElement() { [native code] },WebKitPoint: function WebKitPoint() { [native code] },SVGLengthList: function SVGLengthList() { [native code] },DOMSettableTokenList: function DOMSettableTokenList() { [native code] },MediaError: function MediaError() { [native code] },SVGPathSegCurvetoQuadraticSmoothRel: function SVGPathSegCurvetoQuadraticSmoothRel() { [native code] },UIEvent: function UIEvent() { [native code] },HTMLMarqueeElement: function HTMLMarqueeElement() { [native code] },Counter: function Counter() { [native code] },HTMLDivElement: function HTMLDivElement() { [native code] },SVGRectElement: function SVGRectElement() { [native code] },SVGPoint: function SVGPoint() { [native code] },SVGAnimatedTransformList: function SVGAnimatedTransformList() { [native code] },HTMLBRElement: function HTMLBRElement() { [native code] },pageYOffset: 0,SVGElement: function SVGElement() { [native code] },HTMLElement: function HTMLElement() { [native code] },HTMLLabelElement: function HTMLLabelElement() { [native code] },HTMLOptGroupElement: function HTMLOptGroupElement() { [native code] },SVGAnimatedEnumeration: function SVGAnimatedEnumeration() { [native code] },closed: false,HTMLEmbedElement: function HTMLEmbedElement() { [native code] },HTMLDataListElement: function HTMLDataListElement() { [native code] },SVGPathSeg: function SVGPathSeg() { [native code] },WebKitIntent: function Intent() { [native code] },CSSValue: function CSSValue() { [native code] },SVGScriptElement: function SVGScriptElement() { [native code] },SVGPathSegCurvetoCubicRel: function SVGPathSegCurvetoCubicRel() { [native code] },HTMLProgressElement: function HTMLProgressElement() { [native code] },SVGAnimatedInteger: function SVGAnimatedInteger() { [native code] },MessageEvent: function MessageEvent() { [native code] },HTMLIFrameElement: function HTMLIFrameElement() { [native code] },HTMLDListElement: function HTMLDListElement() { [native code] },SVGFEDisplacementMapElement: function SVGFEDisplacementMapElement() { [native code] },DocumentFragment: function DocumentFragment() { [native code] },menubar: [object BarInfo],SVGPathSegLinetoRel: function SVGPathSegLinetoRel() { [native code] },HTMLTableCaptionElement: function HTMLTableCaptionElement() { [native code] },SVGForeignObjectElement: function SVGForeignObjectElement() { [native code] },SVGHKernElement: function SVGHKernElement() { [native code] },SVGPathSegList: function SVGPathSegList() { [native code] },SVGMaskElement: function SVGMaskElement() { [native code] },WebKitCSSKeyframeRule: function WebKitCSSKeyframeRule() { [native code] },defaultstatus: ,SVGVKernElement: function SVGVKernElement() { [native code] },styleMedia: [object StyleMedia],SVGRect: function SVGRect() { [native code] },WheelEvent: function WheelEvent() { [native code] },SVGTransformList: function SVGTransformList() { [native code] },SVGViewElement: function SVGViewElement() { [native code] },HTMLCanvasElement: function HTMLCanvasElement() { [native code] },SVGMarkerElement: function SVGMarkerElement() { [native code] },XSLTProcessor: function XSLTProcessor() { [native code] },webkitIDBFactory: function IDBFactory() { [native code] },CSSRule: function CSSRule() { [native code] },SVGPathSegCurvetoQuadraticRel: function SVGPathSegCurvetoQuadraticRel() { [native code] },SVGUseElement: function SVGUseElement() { [native code] },HTMLAreaElement: function HTMLAreaElement() { [native code] },FileList: function FileList() { [native code] },SVGSVGElement: function SVGSVGElement() { [native code] },SVGPathSegClosePath: function SVGPathSegClosePath() { [native code] },SVGFEDiffuseLightingElement: function SVGFEDiffuseLightingElement() { [native code] },HTMLDirectoryElement: function HTMLDirectoryElement() { [native code] },CustomEvent: function CustomEvent() { [native code] },Range: function Range() { [native code] },SVGAElement: function SVGAElement() { [native code] },SVGFilterElement: function SVGFilterElement() { [native code] },SVGGlyphRefElement: function SVGGlyphRefElement() { [native code] },MouseEvent: function MouseEvent() { [native code] },HTMLAppletElement: function HTMLAppletElement() { [native code] },SVGFEFloodElement: function SVGFEFloodElement() { [native code] },WebGLActiveInfo: function WebGLActiveInfo() { [native code] },WebKitBlobBuilder: function WebKitBlobBuilder() { [native code] },HTMLParagraphElement: function HTMLParagraphElement() { [native code] },Comment: function Comment() { [native code] },StyleSheetList: function StyleSheetList() { [native code] },KeyboardEvent: function KeyboardEvent() { [native code] },SVGAnimatedNumber: function SVGAnimatedNumber() { [native code] },HTMLScriptElement: function HTMLScriptElement() { [native code] },webkitNotifications: [object NotificationCenter],WebGLFramebuffer: function WebGLFramebuffer() { [native code] },webkitIDBDatabaseException: function IDBDatabaseException() { [native code] },WebKitAnimationEvent: function WebKitAnimationEvent() { [native code] },outerHeight: 744,status: ,self: [object Window],PluginArray: function PluginArray() { [native code] },name: unserialize,ErrorEvent: function ErrorEvent() { [native code] },SharedWorker: function SharedWorker() { [native code] },DOMTokenList: function DOMTokenList() { [native code] },SQLException: function SQLException() { [native code] },innerWidth: 1366,webkitStorageInfo: [object StorageInfo],SVGAnimatedRect: function SVGAnimatedRect() { [native code] },FormData: function FormData() { [native code] },SVGPaint: function SVGPaint() { [native code] },history: [object History],SVGFESpecularLightingElement: function SVGFESpecularLightingElement() { [native code] },SVGPatternElement: function SVGPatternElement() { [native code] },HTMLFormElement: function HTMLFormElement() { [native code] },HTMLTextAreaElement: function HTMLTextAreaElement() { [native code] },CloseEvent: function CloseEvent() { [native code] },Plugin: function Plugin() { [native code] },SVGClipPathElement: function SVGClipPathElement() { [native code] },CSSValueList: function CSSValueList() { [native code] },SVGAnimatedNumberList: function SVGAnimatedNumberList() { [native code] },Document: function Document() { [native code] },locationbar: [object BarInfo],webkitAudioPannerNode: function AudioPannerNode() { [native code] },SVGAnimateMotionElement: function SVGAnimateMotionElement() { [native code] },WebGLShader: function WebGLShader() { [native code] },SVGTransform: function SVGTransform() { [native code] },MimeTypeArray: function MimeTypeArray() { [native code] },SVGFEColorMatrixElement: function SVGFEColorMatrixElement() { [native code] },webkitIDBCursor: function IDBCursor() { [native code] },PageTransitionEvent: function PageTransitionEvent() { [native code] },clientInformation: [object Navigator],SessionDescription: function SessionDescription() { [native code] },WebGLProgram: function WebGLProgram() { [native code] },WebKitMutationObserver: function WebKitMutationObserver() { [native code] },ClientRectList: function ClientRectList() { [native code] },HTMLButtonElement: function HTMLButtonElement() { [native code] },OfflineAudioCompletionEvent: function OfflineAudioCompletionEvent() { [native code] },Int32Array: function Int32Array() { [native code] },Uint8Array: function Uint8Array() { [native code] },HTMLStyleElement: function HTMLStyleElement() { [native code] },XMLSerializer: function XMLSerializer() { [native code] },IceCandidate: function IceCandidate() { [native code] },HTMLTableColElement: function HTMLTableColElement() { [native code] },Event: function Event() { [native code] },SVGDocument: function SVGDocument() { [native code] },XMLHttpRequestProgressEvent: function XMLHttpRequestProgressEvent() { [native code] },SVGFEDistantLightElement: function SVGFEDistantLightElement() { [native code] },TextMetrics: function TextMetrics() { [native code] },SVGTextPathElement: function SVGTextPathElement() { [native code] },Worker: function Worker() { [native code] },WebGLRenderingContext: function WebGLRenderingContext() { [native code] },scrollX: 1019,XMLDocument: function Document() { [native code] },webkitIDBDatabase: function IDBDatabase() { [native code] },SVGDescElement: function SVGDescElement() { [native code] },XMLHttpRequestUpload: function XMLHttpRequestUpload() { [native code] },SVGFEFuncBElement: function SVGFEFuncBElement() { [native code] },SVGFEDropShadowElement: function SVGFEDropShadowElement() { [native code] },SVGAltGlyphElement: function SVGAltGlyphElement() { [native code] },SVGPathSegArcAbs: function SVGPathSegArcAbs() { [native code] },SVGPathSegCurvetoCubicAbs: function SVGPathSegCurvetoCubicAbs() { [native code] },sessionStorage: [object Storage],SVGPathSegArcRel: function SVGPathSegArcRel() { [native code] },HTMLUListElement: function HTMLUListElement() { [native code] },navigator: [object Navigator],SVGAltGlyphDefElement: function SVGAltGlyphDefElement() { [native code] },SVGTSpanElement: function SVGTSpanElement() { [native code] },SVGMPathElement: function SVGMPathElement() { [native code] },HTMLTableElement: function HTMLTableElement() { [native code] },WebGLRenderbuffer: function WebGLRenderbuffer() { [native code] },Image: [object Function],HTMLObjectElement: function HTMLObjectElement() { [native code] },SVGElementInstanceList: function SVGElementInstanceList() { [native code] },EventSource: function EventSource() { [native code] },TextEvent: function TextEvent() { [native code] },Window: function Window() { [native code] },ImageData: function ImageData() { [native code] },SVGZoomEvent: function SVGZoomEvent() { [native code] },HTMLModElement: function HTMLModElement() { [native code] },SVGFontFaceElement: function SVGFontFaceElement() { [native code] },Entity: function Entity() { [native code] },CSSMediaRule: function CSSMediaRule() { [native code] },MutationEvent: function MutationEvent() { [native code] },XPathResult: function XPathResult() { [native code] },CSSFontFaceRule: function CSSFontFaceRule() { [native code] },SVGAnimatedAngle: function SVGAnimatedAngle() { [native code] },HTMLBaseElement: function HTMLBaseElement() { [native code] },HTMLMeterElement: function HTMLMeterElement() { [native code] },DataView: function DataView() { [native code] },SVGGradientElement: function SVGGradientElement() { [native code] },WebKitTransitionEvent: function WebKitTransitionEvent() { [native code] },SVGAnimateElement: function SVGAnimateElement() { [native code] },SVGPathSegMovetoAbs: function SVGPathSegMovetoAbs() { [native code] },CSSPageRule: function CSSPageRule() { [native code] },Element: function Element() { [native code] },screenY: 24,SVGAnimateTransformElement: function SVGAnimateTransformElement() { [native code] },Blob: function Blob() { [native code] },HTMLVideoElement: function HTMLVideoElement() { [native code] },SVGFontFaceNameElement: function SVGFontFaceNameElement() { [native code] },EntityReference: function EntityReference() { [native code] },SVGPathSegCurvetoQuadraticSmoothAbs: function SVGPathSegCurvetoQuadraticSmoothAbs() { [native code] },XMLHttpRequestException: function XMLHttpRequestException() { [native code] },MessagePort: function MessagePort() { [native code] },toolbar: [object BarInfo],ClientRect: function ClientRect() { [native code] },HTMLSourceElement: function HTMLSourceElement() { [native code] },SVGException: function SVGException() { [native code] },SVGPathSegLinetoAbs: function SVGPathSegLinetoAbs() { [native code] },HTMLQuoteElement: function HTMLQuoteElement() { [native code] },HTMLBodyElement: function HTMLBodyElement() { [native code] },CSSStyleRule: function CSSStyleRule() { [native code] },SVGFEImageElement: function SVGFEImageElement() { [native code] },NodeFilter: function NodeFilter() { [native code] },webkitIDBObjectStore: function IDBObjectStore() { [native code] },SVGFEMergeNodeElement: function SVGFEMergeNodeElement() { [native code] },SVGFEGaussianBlurElement: function SVGFEGaussianBlurElement() { [native code] },HTMLDocument: function HTMLDocument() { [native code] },HTMLMediaElement: function HTMLMediaElement() { [native code] },SVGSymbolElement: function SVGSymbolElement() { [native code] },WebGLContextEvent: function WebGLContextEvent() { [native code] },SVGMetadataElement: function SVGMetadataElement() { [native code] },SVGTextElement: function SVGTextElement() { [native code] },applicationCache: [object DOMApplicationCache],localStorage: [object Storage],HTMLOListElement: function HTMLOListElement() { [native code] },HTMLOutputElement: function HTMLOutputElement() { [native code] },SVGFEMergeElement: function SVGFEMergeElement() { [native code] },WebKitCSSFilterValue: function WebKitCSSFilterValue() { [native code] },HTMLOptionElement: function HTMLOptionElement() { [native code] },SVGGElement: function SVGGElement() { [native code] },BeforeLoadEvent: function BeforeLoadEvent() { [native code] },SVGPathSegLinetoVerticalRel: function SVGPathSegLinetoVerticalRel() { [native code] },SVGTextContentElement: function SVGTextContentElement() { [native code] },TimeRanges: function TimeRanges() { [native code] },SVGPathElement: function SVGPathElement() { [native code] },XMLHttpRequest: function XMLHttpRequest() { [native code] },SVGFEPointLightElement: function SVGFEPointLightElement() { [native code] },HTMLUnknownElement: function HTMLUnknownElement() { [native code] },SVGEllipseElement: function SVGEllipseElement() { [native code] },innerHeight: 682,CSSImportRule: function CSSImportRule() { [native code] },Clipboard: function Clipboard() { [native code] },CSSRuleList: function CSSRuleList() { [native code] },SVGFEComponentTransferElement: function SVGFEComponentTransferElement() { [native code] },SVGFETileElement: function SVGFETileElement() { [native code] },SVGFEFuncGElement: function SVGFEFuncGElement() { [native code] },MediaList: function MediaList() { [native code] },SVGDefsElement: function SVGDefsElement() { [native code] },MediaController: function MediaController() { [native code] },SVGTRefElement: function SVGTRefElement() { [native code] },RGBColor: function RGBColor() { [native code] },SVGNumberList: function SVGNumberList() { [native code] },SVGRadialGradientElement: function SVGRadialGradientElement() { [native code] },HTMLMetaElement: function HTMLMetaElement() { [native code] },SVGAngle: function SVGAngle() { [native code] },DOMImplementation: function DOMImplementation() { [native code] },StorageEvent: function StorageEvent() { [native code] },SVGComponentTransferFunctionElement: function SVGComponentTransferFunctionElement() { [native code] },HTMLLinkElement: function HTMLLinkElement() { [native code] },DeviceOrientationEvent: function DeviceOrientationEvent() { [native code] },SVGPathSegLinetoVerticalAbs: function SVGPathSegLinetoVerticalAbs() { [native code] },Uint16Array: function Uint16Array() { [native code] },WebGLUniformLocation: function WebGLUniformLocation() { [native code] },webkitIDBIndex: function IDBIndex() { [native code] },ProcessingInstruction: function ProcessingInstruction() { [native code] },SVGPointList: function SVGPointList() { [native code] },HTMLKeygenElement: function HTMLKeygenElement() { [native code] },HTMLHRElement: function HTMLHRElement() { [native code] },scrollY: 0,screenLeft: 0,SVGPathSegMovetoRel: function SVGPathSegMovetoRel() { [native code] },XPathException: function XPathException() { [native code] },DOMParser: function DOMParser() { [native code] },CSSStyleDeclaration: function CSSStyleDeclaration() { [native code] },HTMLTableCellElement: function HTMLTableCellElement() { [native code] },SVGFEFuncAElement: function SVGFEFuncAElement() { [native code] },devicePixelRatio: 1,CSSPrimitiveValue: function CSSPrimitiveValue() { [native code] },SVGTextPositioningElement: function SVGTextPositioningElement() { [native code] },HTMLAllCollection: function HTMLAllCollection() { [native code] },HashChangeEvent: function HashChangeEvent() { [native code] },WebGLTexture: function WebGLTexture() { [native code] },HTMLInputElement: function HTMLInputElement() { [native code] },CDATASection: function CDATASection() { [native code] },ArrayBuffer: function ArrayBuffer() { [native code] },HTMLSelectElement: function HTMLSelectElement() { [native code] },SVGUnitTypes: function SVGUnitTypes() { [native code] },DocumentType: function DocumentType() { [native code] },SVGFECompositeElement: function SVGFECompositeElement() { [native code] },MessageChannel: function MessageChannel() { [native code] },SVGStyleElement: function SVGStyleElement() { [native code] },Uint32Array: function Uint32Array() { [native code] },MediaStreamEvent: function MediaStreamEvent() { [native code] },WebGLShaderPrecisionFormat: function WebGLShaderPrecisionFormat() { [native code] },HTMLHeadElement: function HTMLHeadElement() { [native code] },ProgressEvent: function ProgressEvent() { [native code] },SVGAnimateColorElement: function SVGAnimateColorElement() { [native code] },SVGFontFaceUriElement: function SVGFontFaceUriElement() { [native code] },screenX: 0,frames: [object Window],MimeType: function MimeType() { [native code] },Float64Array: function Float64Array() { [native code] },NodeList: function NodeList() { [native code] },SVGColor: function SVGColor() { [native code] },SVGFETurbulenceElement: function SVGFETurbulenceElement() { [native code] },SVGCursorElement: function SVGCursorElement() { [native code] },SVGPathSegLinetoHorizontalRel: function SVGPathSegLinetoHorizontalRel() { [native code] },SVGElementInstance: function SVGElementInstance() { [native code] },CharacterData: function CharacterData() { [native code] },webkitIndexedDB: [object IDBFactory],HTMLFrameSetElement: function HTMLFrameSetElement() { [native code] },Notification: function Notification() { [native code] },Storage: function Storage() { [native code] },Float32Array: function Float32Array() { [native code] },HTMLSpanElement: function HTMLSpanElement() { [native code] },Int16Array: function Int16Array() { [native code] },Audio: [object Function],SVGFontElement: function SVGFontElement() { [native code] },CanvasRenderingContext2D: function CanvasRenderingContext2D() { [native code] },opener: null,HTMLFontElement: function HTMLFontElement() { [native code] },Uint8ClampedArray: function Uint8ClampedArray() { [native code] },CanvasPattern: function CanvasPattern() { [native code] },outerWidth: 1366,SVGFontFaceFormatElement: function SVGFontFaceFormatElement() { [native code] },HTMLParamElement: function HTMLParamElement() { [native code] },HTMLTableRowElement: function HTMLTableRowElement() { [native code] },SVGRenderingIntent: function SVGRenderingIntent() { [native code] },SVGNumber: function SVGNumber() { [native code] },DOMException: function DOMException() { [native code] }})[mapping]\n path:[\"submorphs\"][\"4\"][\"submorphs\"][\"0\"][\"submorphs\"][\"0\"][\"itemList\"][\"0\"][\"value\"][\"containingScope\"]","prevScroll":[0,48],"showsHalos":false,"_ClipMode":"visible","loadingMorph":{"__isSmartRef__":true,"id":6506},"savedWorldAsURL":{"__isSmartRef__":true,"id":6632},"attributeConnections":[{"__isSmartRef__":true,"id":6633}],"doNotSerialize":["$$savedWorldAsURL","$$baseThemeStyleSheet"],"doNotCopyProperties":["$$savedWorldAsURL"],"_Scroll":[0,48],"publishPartDialog":{"__isSmartRef__":true,"id":6635},"lastModified":{"__isSmartRef__":true,"id":7037},"__LivelyClassName__":"lively.morphic.World","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(-2.0,0.0)"},"1":{"submorphs":[],"scripts":[],"id":"601399F6-36BC-4D42-AAEF-8C40583493C4","shape":{"__isSmartRef__":true,"id":2},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","textColor","_Padding","distanceToDragEvent"],"_MaxTextWidth":742.695652,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":23,"name":"Text","partsBinMetaInfo":{"__isSmartRef__":true,"id":3},"textChunks":[{"__isSmartRef__":true,"id":14}],"charsReplaced":"From Stepping to a Debugger to Bret Victor?","lastFindLoc":43,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":16},"_ClipMode":"visible","derivationIds":[355,"1EB1674F-8BF2-419B-B054-86129ED70335","63698904-DC05-4341-A9B6-5CC4A219CD04","F6A714BA-4735-41ED-8A2A-45CB153FBDF8"],"_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":742.695652,"_MinTextHeight":null,"isBeingDragged":false,"moved":true,"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(8.0,14.0)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)","distanceToDragEvent":"lively.pt(523.0,-12.0)"},"2":{"fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(750.7,40.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(4,2,0,0)"},"3":{"partsSpaceName":"PartsBin/Basic","migrationLevel":4,"comment":"a simple text morph","partName":"Text","changes":[{"__isSmartRef__":true,"id":4},{"__isSmartRef__":true,"id":6},{"__isSmartRef__":true,"id":8},{"__isSmartRef__":true,"id":10},{"__isSmartRef__":true,"id":12}],"revisionOnLoad":160159,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4":{"date":{"__isSmartRef__":true,"id":5},"author":"robertkrahn","message":"text click was broken?","id":"9D065E14-9653-4B2A-9A2E-3AD84EBBC3E0"},"5":{"isSerializedDate":true,"string":"Sat Apr 21 2012 16:30:30 GMT+0200 (CEST)"},"6":{"date":{"__isSmartRef__":true,"id":7},"author":"undefined","message":"Set the inset as: this.setPadding(Rectangle.inset(4,2)). This gives it a more pleasing appearance with a border, and also makes it easier to select near the bounds.","id":"BD5B0E4C-4830-4863-A013-35BB66D5AD6F"},"7":{"isSerializedDate":true,"string":"Mon Feb 27 2012 06:20:38 GMT+0100 (CET)"},"8":{"date":{"__isSmartRef__":true,"id":9},"author":"tessi","message":"TextBubble calls its disappear() function after showBubbleTime() milliseconds now","id":"0F4DE333-A551-4961-B29D-70270977EBEF"},"9":{"isSerializedDate":true,"string":"Sat Apr 21 2012 07:31:43 GMT+0200 (CEST)"},"10":{"date":{"__isSmartRef__":true,"id":11},"author":"tessi","message":"TextBubble calls its disappear() function after showBubbleTime() milliseconds now","id":"785D95BD-7858-43EB-90E6-A1C085E2F2B9"},"11":{"isSerializedDate":true,"string":"Sat Apr 21 2012 07:32:09 GMT+0200 (CEST)"},"12":{"date":{"__isSmartRef__":true,"id":13},"author":"timfelgentreff","message":"better text","id":"B904F9AC-6EA0-4A8A-83C9-AFC85AADC194"},"13":{"isSerializedDate":true,"string":"Tue May 08 2012 14:18:18 GMT+0200 (CEST)"},"14":{"style":{"__isSmartRef__":true,"id":15},"morph":{"__isSmartRef__":true,"id":1},"chunkOwner":{"__isSmartRef__":true,"id":1},"storedString":"Interpreter Experiments","_id":"_2625","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"15":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,79,152)"},"16":{"morph":{"__isSmartRef__":true,"id":1},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17":{"submorphs":[{"__isSmartRef__":true,"id":18},{"__isSmartRef__":true,"id":2098},{"__isSmartRef__":true,"id":2174}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2202},"derivationIds":[null,"CD7BCB08-EB4A-48CD-952B-53A1EAEB23D0","581E5168-D9B0-4133-8DDD-C2A067EE91FD","5BDC76F6-9933-4A8D-A8D7-7A53D1313D5A","DC8E6D9C-D7A4-4C3D-8100-3E1546871B63","955E7F07-39AE-450D-8EE8-29E429842845","1C9D44BC-517C-4A89-B751-45C9076B8A48","231B606C-D216-476D-BD06-1E97C2F166E9","56440E75-AABF-40EE-BADE-EF6DE957BED1","83527CBE-511C-4D2C-BADC-53AA4E951B4C","CF9928AD-677A-417F-9067-73633E132979","AD34B2C8-22BE-4C8A-8E34-7B3A0AAFCA5A","4809EAF2-ACD4-4607-8911-3BAA5711C74F","69E5575E-8364-41D8-8809-31BFA13B658F","467E9CE0-4C43-465A-AE66-70F8E94FF818","43427F0A-798B-4B43-A2A5-6783E3A4FBEC","C32B806A-02C8-4A60-B1EF-A7DD42C68BB7","440B2525-75D8-4DA2-A2B0-F365EAE45A99","8172411B-9EE0-4CC3-8467-6E9B83645928","AB2C8B18-4386-407F-B100-C4011CCB060A","E7E5E0FB-4D6C-4232-AE3E-F29216473B50","3F84D56A-C67B-46DE-8FAA-5F8B0FA0E0CD","33729558-E9D3-46B1-AEC0-7B1814FFFECD","F139243C-8B20-4832-9041-78BB3BD36BB6","E2AD5203-521C-4A07-A471-843E7E073F5B","744CB741-A236-4AEB-8030-B0BDF723E4F5","57C9662A-FCEA-4242-B2F4-59A86310C5EF","9DAEA7B4-F388-424A-81D8-40B6BE949ABB","798285BC-057B-438E-A7BA-C7DF54B312F1","DBBBA1DD-26C2-4E7F-99DD-ED5A528F02BD","3FB96E49-AF89-4738-BC76-B5421F55B22A","44A8D779-153C-4835-A346-21E7AD1F7870"],"id":"05F9E3C9-1F8F-4847-8000-FB2F818F279D","eventHandler":{"__isSmartRef__":true,"id":2203},"_ClipMode":"visible","droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":2204},"LK2":true,"__serializedExpressions__":["_Position","contentOffset","prevDragPos"],"targetMorph":{"__isSmartRef__":true,"id":18},"reframeHandle":{"__isSmartRef__":true,"id":2174},"titleBar":{"__isSmartRef__":true,"id":2098},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":2205},"name":"ObjectInspector","highlighted":false,"isBeingDragged":false,"#startLetters":"get","moved":true,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"showsHalos":false,"prevScroll":[0,0],"_Rotation":0,"_Scale":1.02,"owner":{"__isSmartRef__":true,"id":0},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2272},"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withoutLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(581.2,119.6)","contentOffset":"lively.pt(0.0,21.0)","prevDragPos":"lively.pt(1024.0,52.0)"},"18":{"submorphs":[{"__isSmartRef__":true,"id":19},{"__isSmartRef__":true,"id":374},{"__isSmartRef__":true,"id":2003}],"scripts":[{"__isSmartRef__":true,"id":2024}],"id":"79E37030-8621-4164-8238-7B8A17FC9D1D","shape":{"__isSmartRef__":true,"id":2025},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position"],"showsHalos":false,"name":"ObjectInspector","partsBinMetaInfo":{"__isSmartRef__":true,"id":2026},"eventHandler":{"__isSmartRef__":true,"id":2041},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","5276E050-462B-4ED7-8645-FC4C5F60FE2C","88F0CB6D-932E-4927-AC3F-E132C18AB5E3","A386B89D-9A23-4177-B9BA-8B962FF236C4","D352E8A5-29FA-41D9-9B35-73FF3564157E","4BDE366B-9002-45D8-B200-9892CE8E1C96","9FA6F23B-5584-4720-A460-81C48DCF514B","AD23A5BA-025F-4197-962F-6D64F6AEA3AD","4E00CA05-F3C7-4A1F-8769-5831DDD64874","CB599F3F-9886-43EC-AA8B-1EE9A162031B","91015D82-71FF-471E-A78C-9A2498BAA4FE","B19B84BB-582D-4F5D-B0BA-7097BD7E553C","D9F3227D-E20B-457B-BF85-47DD91F74598","9F00820B-ABA8-4E70-B63F-293A8159A36A","A9654D03-2824-4671-BD26-10F342EC4C9B","080739E4-92B2-4E4D-A17C-A45D08A1A473","9D21C3F5-01B1-4FE6-864B-F3C51A7860B5","027EA526-9F60-4B4D-9B7B-73EA324D1463","CE1A5A57-A548-4F2D-90A0-DE5B1FD7F0E6","EE86A04F-F125-4D31-9E3D-48761A0486CB","20C274CF-FBD0-45AD-BD1E-9EC348102EB4","C83BF7B2-FF72-463F-8189-642A8969D9CF","B3755676-4902-47C7-A23C-2539F9BCC9FA","07346937-19F7-4644-8389-BF59DE2F203A","49808445-DC14-4391-BF1E-701710D8D9B8","AD2918D7-97E8-42C9-A681-18EAA129EB55","3CC1874B-4ADB-4A90-A12A-55B7ADF9392D","9AFC4676-5280-4B72-82E2-55B51441AF1E","482F476C-5C4E-4F4D-B56A-1989175C1352","DBC2AA37-BA52-4681-AC86-11642F0FFEC6","7BA71570-579E-4CD9-AA02-804CDA1CA3A1","5DAF7A95-CDD6-4EFD-A0A5-95011D71FDF9"],"partTests":{"__isSmartRef__":true,"id":2042},"_ClipMode":"visible","moved":true,"owner":{"__isSmartRef__":true,"id":17},"layout":{"__isSmartRef__":true,"id":2047},"isInLayoutCycle":false,"isBeingDragged":false,"isCopyMorphRef":true,"morphRefId":2,"tree":{"__isSmartRef__":true,"id":375},"prevScroll":[0,0],"updateFilter":"standard","showInherited":false,"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2049},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,21.0)"},"19":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":20},"derivationIds":[null,"4E5E2B48-0B47-4B2D-BC78-14E1BDBE0B57","EA4FE185-C289-4D95-B8AF-461C2E8219E6","7F3E4F8B-3F32-4809-91A5-5DEA3A3FD09E","7571A08C-937B-467A-9D49-68F3AAAD1140","85283104-ADA2-4C53-A73D-C5487B62C829","5E0941AD-4504-4F9D-B650-B018490C56B0","EAD81395-1252-4B07-8FB3-2F4253CB798F","7696C2D4-B858-4212-80CB-84803CAAD87E","4C0819CC-FCCD-4A8B-A1FF-1603EFE5EE49","FB7EF974-A95D-4A3A-95F4-498936A61AB1","060FCB63-2D3A-4FE6-AB19-B40854B0BB78","5ABD6D73-9D28-45A3-AE27-3035D892467D","19CC5587-3BCE-4293-B785-F659497CDD76","440643CA-166F-44AE-A8FF-D3B1E457D081","BA20821C-578F-4256-8870-B86E3AFEE3FC","7C1E3822-1018-45B9-AE6C-6E2BD39DF2F8","312B6786-7F93-4E97-AF06-CC08B9BEF91B","B6142DF2-38A9-41DD-B7C0-60D315537301","7DE27692-A1E7-4B48-8126-2939656AE639","1CA5EB71-650C-48BB-B5F0-4B1FDA2B0FCE","E1B8DC34-B6A5-4CB2-857B-597844C49DF0","0BB210B2-5CAC-4548-A650-A8FB85814B89","3493E4F4-5A4F-41F9-8FB4-6DD2781CE33F","3E9289C4-8439-4FF4-8533-20CCC231E86C","1007D257-74BA-41E4-9426-43503840A328","AB02F6ED-6541-4C2B-BE33-9E30E2D4E8CB","86414643-3214-48C0-A848-A1AD0622F4F3","64D914CC-285D-46F9-9DDD-F6898F714D0C","08B1186F-89EF-4676-9F58-FC0F720D76B7","BF198FB5-667C-4EE5-B3F0-E9CE73124C6E","86626633-CE46-4CAD-A256-3D3CE0D0EE2C","B89A22AA-626A-4C4F-A719-55F8BA6C3266"],"id":"4B28D064-DA60-4BB8-B96D-79DDCC251BA0","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":21},{"__isSmartRef__":true,"id":23},{"__isSmartRef__":true,"id":25},{"__isSmartRef__":true,"id":27}],"eventHandler":{"__isSmartRef__":true,"id":29},"_ClipMode":"auto","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":true,"allowInput":true,"_FontFamily":"Monaco,monospace","_FontSize":10,"evalEnabled":false,"__serializedExpressions__":["_Position"],"_MaxTextWidth":286.8712591602084,"_MinTextWidth":286.8712591602084,"_MaxTextHeight":null,"_MinTextHeight":null,"layout":{"__isSmartRef__":true,"id":30},"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":31}],"doNotSerialize":["$$textString","parseErrors","parseErrors"],"doNotCopyProperties":["$$textString"],"lastSyntaxHighlightTime":1,"accessibleInInactiveWindow":true,"charsReplaced":"this.bla","lastFindLoc":8,"isBeingDragged":false,"showsHalos":false,"#startLetters":"getDo","name":"ObjectInspectorText","owner":{"__isSmartRef__":true,"id":18},"doItContext":null,"doitContext":{"__isSmartRef__":true,"id":32},"_syntaxHighlightTimeout":null,"previousSelection":[3,3],"_Rotation":0,"_Scale":1,"_lastSyntaxHighlightTime":20,"savedTextString":"this.setTextString(\"asdf\");","textString":"this.setTextString(\"asdf\");","_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(8.1,319.4)"},"20":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(296.9,69.8)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(95,94,95)","_Fill":"Color.rgb(243,243,243)"},"21":{"style":{"__isSmartRef__":true,"id":22},"chunkOwner":{"__isSmartRef__":true,"id":19},"_id":"_6","storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"22":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"23":{"_id":"_12","style":{"__isSmartRef__":true,"id":24},"chunkOwner":{"__isSmartRef__":true,"id":19},"storedString":".setTextString(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"24":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"25":{"_id":"_13","style":{"__isSmartRef__":true,"id":26},"chunkOwner":{"__isSmartRef__":true,"id":19},"storedString":"\"asdf\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"26":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"27":{"_id":"_14","style":{"__isSmartRef__":true,"id":28},"chunkOwner":{"__isSmartRef__":true,"id":19},"storedString":");","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"28":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"29":{"morph":{"__isSmartRef__":true,"id":19},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"30":{"resizeWidth":true,"resizeHeight":false},"31":{"sourceObj":{"__isSmartRef__":true,"id":19},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":19},"targetMethodName":"highlightJavaScriptSyntax","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"32":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":33},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":34}],"eventHandler":{"__isSmartRef__":true,"id":36},"_ClipMode":"auto","derivationIds":["BF9226CC-4A7A-4731-A56A-E55E4652B912"],"id":"113D67EA-1363-4606-AE3A-127FBB8F336D","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":true,"allowInput":true,"_FontFamily":"Monaco,monospace","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position","distanceToDragEvent"],"evalEnabled":false,"_MaxTextWidth":499,"_MinTextWidth":499,"_MaxTextHeight":null,"_MinTextHeight":null,"layout":{"__isSmartRef__":true,"id":37},"syntaxHighlightingWhileTyping":false,"doNotSerialize":["parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors"],"accessibleInInactiveWindow":true,"_lastSyntaxHighlightTime":9,"showsHalos":false,"charsReplaced":"","lastFindLoc":99,"isBeingDragged":false,"name":"Introspection","savedTextString":"\nfor(var i = 0; i< 30; i++) {\n var m = Morph.makeRectangle(0,0, 10,50)\n \n this.addMorph(m)\n m.moveBy(pt(70,70))\n m.rotateBy(i * 3)\n m.setFill(Color.rgb(i * 10,0,0))\n}\n\nthis.submorphs.invoke('remove')\n\n","owner":{"__isSmartRef__":true,"id":38},"elements":[{"__isSmartRef__":true,"id":358},{"__isSmartRef__":true,"id":359},{"__isSmartRef__":true,"id":360},{"__isSmartRef__":true,"id":364}],"_Rotation":0,"_Scale":1,"_WordBreak":"break-all","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":365},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(180.0,276.0)","distanceToDragEvent":"lively.pt(342.0,-14.0)"},"33":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"_BorderRadius":8.52,"_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(509.0,219.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(188,173,188)","_Fill":"Color.rgb(243,243,243)"},"34":{"style":{"__isSmartRef__":true,"id":35},"chunkOwner":{"__isSmartRef__":true,"id":32},"_id":"_121235","storedString":"[[object Object]]","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"35":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"36":{"morph":{"__isSmartRef__":true,"id":32},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"37":{"resizeWidth":true,"resizeHeight":true},"38":{"submorphs":[{"__isSmartRef__":true,"id":39},{"__isSmartRef__":true,"id":54},{"__isSmartRef__":true,"id":211},{"__isSmartRef__":true,"id":252},{"__isSmartRef__":true,"id":282},{"__isSmartRef__":true,"id":32}],"scripts":[],"id":"5F7F12D5-1492-4CA2-BA16-DD5C04E20B8B","shape":{"__isSmartRef__":true,"id":298},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"showsHalos":false,"name":"InterpreterExperiments","partsBinMetaInfo":{"__isSmartRef__":true,"id":185},"eventHandler":{"__isSmartRef__":true,"id":299},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C"],"partTests":{"__isSmartRef__":true,"id":300},"_ClipMode":"visible","moved":true,"owner":{"__isSmartRef__":true,"id":0},"isBeingDragged":false,"prevScroll":[0,0],"doNotSerialize":["lastFrame","$$stepCounter"],"runScript":{"__isSmartRef__":true,"id":305},"attributeConnections":[{"__isSmartRef__":true,"id":306},{"__isSmartRef__":true,"id":307}],"doNotCopyProperties":["$$stepCounter"],"stepCounter":0,"livingElements":{"__isSmartRef__":true,"id":308},"maximumSteps":0,"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":309},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(129.0,88.0)","distanceToDragEvent":"lively.pt(762.0,-13.0)"},"39":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":40},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":41}],"eventHandler":{"__isSmartRef__":true,"id":43},"_ClipMode":"auto","derivationIds":[],"id":"BF9226CC-4A7A-4731-A56A-E55E4652B912","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":true,"allowInput":true,"_FontFamily":"Monaco,monospace","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position","distanceToDragEvent"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":38},"_MaxTextWidth":499,"_MinTextWidth":499,"_MaxTextHeight":null,"_MinTextHeight":null,"layout":{"__isSmartRef__":true,"id":44},"syntaxHighlightingWhileTyping":false,"doNotSerialize":["parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors"],"accessibleInInactiveWindow":true,"_lastSyntaxHighlightTime":9,"showsHalos":false,"charsReplaced":"","lastFindLoc":26,"isBeingDragged":false,"name":"Source","savedTextString":" var j = 1;\n var z = 3;\nfor(var i = 0; i< 30; i++) {\n var m = Morph.makeRectangle(0,0, 10,50) \n m.moveBy(pt(70,70))\n m.rotateBy(i * 0.1)\n m.setFill(Color.rgb(i * 10,0,0))\n this.addMorph(m)\n}\n\nthis.submorphs.invoke('remove')\n\n","_Rotation":0,"_Scale":1,"priorSelectionRange":[162,162],"_WordBreak":"break-all","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":45},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(13.0,52.0)","distanceToDragEvent":"lively.pt(342.0,-14.0)"},"40":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"_BorderRadius":8.52,"_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(509.0,219.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(188,173,188)","_Fill":"Color.rgb(243,243,243)"},"41":{"style":{"__isSmartRef__":true,"id":42},"chunkOwner":{"__isSmartRef__":true,"id":39},"_id":"_6664","storedString":" var j = 1;\n var z = 3;\nfor(var i = 0; i< 30; i++) {\n var m = Morph.makeRectangle(0,0, 10,50) \n m.moveBy(pt(70,70))\n m.rotateBy(i * 0.1)\n m.setFill(Color.rgb(i * 10,0,0))\n this.addMorph(m)\n}\n\nthis.submorphs.invoke('remove')\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"42":{"color":"rgb(64,64,64)","fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","backgroundColor":"rgb(243,243,243)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"43":{"morph":{"__isSmartRef__":true,"id":39},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"44":{"resizeWidth":true,"resizeHeight":true},"45":{"getDoitContext":{"__isSmartRef__":true,"id":46}},"46":{"varMapping":{"__isSmartRef__":true,"id":47},"source":"function getDoitContext() {\n return this.get('Playground')\n}","funcProperties":{"__isSmartRef__":true,"id":52},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"47":{"this":{"__isSmartRef__":true,"id":39},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":48}},"48":{"$super":{"__isSmartRef__":true,"id":49}},"49":{"varMapping":{"__isSmartRef__":true,"id":50},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":51},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"50":{"obj":{"__isSmartRef__":true,"id":39},"name":"getDoitContext"},"51":{},"52":{"timestamp":{"__isSmartRef__":true,"id":53},"user":"jenslincke","tags":[]},"53":{"isSerializedDate":true,"string":"Thu Oct 18 2012 17:30:12 GMT+0200 (CEST)"},"54":{"submorphs":[{"__isSmartRef__":true,"id":55},{"__isSmartRef__":true,"id":58},{"__isSmartRef__":true,"id":61},{"__isSmartRef__":true,"id":64},{"__isSmartRef__":true,"id":67},{"__isSmartRef__":true,"id":70},{"__isSmartRef__":true,"id":73},{"__isSmartRef__":true,"id":76},{"__isSmartRef__":true,"id":79},{"__isSmartRef__":true,"id":82},{"__isSmartRef__":true,"id":85},{"__isSmartRef__":true,"id":88},{"__isSmartRef__":true,"id":91},{"__isSmartRef__":true,"id":94},{"__isSmartRef__":true,"id":97},{"__isSmartRef__":true,"id":100},{"__isSmartRef__":true,"id":103},{"__isSmartRef__":true,"id":106},{"__isSmartRef__":true,"id":109},{"__isSmartRef__":true,"id":112},{"__isSmartRef__":true,"id":115},{"__isSmartRef__":true,"id":118},{"__isSmartRef__":true,"id":121},{"__isSmartRef__":true,"id":124},{"__isSmartRef__":true,"id":127},{"__isSmartRef__":true,"id":130},{"__isSmartRef__":true,"id":133},{"__isSmartRef__":true,"id":136},{"__isSmartRef__":true,"id":139},{"__isSmartRef__":true,"id":142},{"__isSmartRef__":true,"id":145},{"__isSmartRef__":true,"id":148},{"__isSmartRef__":true,"id":151},{"__isSmartRef__":true,"id":154},{"__isSmartRef__":true,"id":157},{"__isSmartRef__":true,"id":160},{"__isSmartRef__":true,"id":163},{"__isSmartRef__":true,"id":166},{"__isSmartRef__":true,"id":169},{"__isSmartRef__":true,"id":172},{"__isSmartRef__":true,"id":175},{"__isSmartRef__":true,"id":178},{"__isSmartRef__":true,"id":181}],"scripts":[],"id":"3EE80836-22F9-4722-BD53-4035D9AEC1F9","shape":{"__isSmartRef__":true,"id":184},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position"],"showsHalos":false,"name":"Playground","partsBinMetaInfo":{"__isSmartRef__":true,"id":185},"eventHandler":{"__isSmartRef__":true,"id":202},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C"],"partTests":{"__isSmartRef__":true,"id":203},"_ClipMode":"visible","moved":true,"owner":{"__isSmartRef__":true,"id":38},"isBeingDragged":false,"m":{"__isSmartRef__":true,"id":208},"prevScroll":[0,0],"_Rotation":0,"_Scale":1.5,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(536.0,48.0)"},"55":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":56},"eventHandler":{"__isSmartRef__":true,"id":57},"_ClipMode":"visible","derivationIds":[],"id":"F6CB951C-AF58-4FA7-9D08-96F2BEB19781","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"56":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"57":{"morph":{"__isSmartRef__":true,"id":55},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"58":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":59},"eventHandler":{"__isSmartRef__":true,"id":60},"_ClipMode":"visible","derivationIds":[],"id":"04837B6E-DD3B-4503-950F-617157D191D7","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"59":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"60":{"morph":{"__isSmartRef__":true,"id":58},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"61":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":62},"eventHandler":{"__isSmartRef__":true,"id":63},"_ClipMode":"visible","derivationIds":[],"id":"F6A2C132-6CFF-4A65-9D10-7FC91D2EFD80","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"62":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"63":{"morph":{"__isSmartRef__":true,"id":61},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"64":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":65},"eventHandler":{"__isSmartRef__":true,"id":66},"_ClipMode":"visible","derivationIds":[],"id":"29B11051-89D4-45AE-8CDB-750E1CEDAC2F","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"65":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"66":{"morph":{"__isSmartRef__":true,"id":64},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"67":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":68},"eventHandler":{"__isSmartRef__":true,"id":69},"_ClipMode":"visible","derivationIds":[],"id":"01F68750-1214-40D3-96D2-31D26AEF23CE","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"68":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"69":{"morph":{"__isSmartRef__":true,"id":67},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"70":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":71},"eventHandler":{"__isSmartRef__":true,"id":72},"_ClipMode":"visible","derivationIds":[],"id":"54230A28-729F-4625-8886-E5A24A82C967","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"71":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"72":{"morph":{"__isSmartRef__":true,"id":70},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"73":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":74},"eventHandler":{"__isSmartRef__":true,"id":75},"_ClipMode":"visible","derivationIds":[],"id":"17C3D9C2-39AE-4754-B630-C4DA253C9A46","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"74":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"75":{"morph":{"__isSmartRef__":true,"id":73},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"76":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":77},"eventHandler":{"__isSmartRef__":true,"id":78},"_ClipMode":"visible","derivationIds":[],"id":"B4FFD28A-5902-4775-826B-FDAF3ABA8A2E","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"77":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"78":{"morph":{"__isSmartRef__":true,"id":76},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"79":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":80},"eventHandler":{"__isSmartRef__":true,"id":81},"_ClipMode":"visible","derivationIds":[],"id":"127E5783-6066-431E-929D-CDE55BFDCFFC","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"80":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"81":{"morph":{"__isSmartRef__":true,"id":79},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"82":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":83},"eventHandler":{"__isSmartRef__":true,"id":84},"_ClipMode":"visible","derivationIds":[],"id":"22DE7F10-0F44-4931-B90B-A201BD9D19AB","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"83":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"84":{"morph":{"__isSmartRef__":true,"id":82},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"85":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":86},"eventHandler":{"__isSmartRef__":true,"id":87},"_ClipMode":"visible","derivationIds":[],"id":"0BB8EF6A-D114-47FB-947C-DDCBB8014FB9","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"86":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"87":{"morph":{"__isSmartRef__":true,"id":85},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"88":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":89},"eventHandler":{"__isSmartRef__":true,"id":90},"_ClipMode":"visible","derivationIds":[],"id":"AA7A2824-B1A8-4EB4-A8A8-28B78D167DFB","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"89":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"90":{"morph":{"__isSmartRef__":true,"id":88},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"91":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":92},"eventHandler":{"__isSmartRef__":true,"id":93},"_ClipMode":"visible","derivationIds":[],"id":"FA09B907-E0C4-4253-BC16-0B72BCC78C2C","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"92":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"93":{"morph":{"__isSmartRef__":true,"id":91},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"94":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":95},"eventHandler":{"__isSmartRef__":true,"id":96},"_ClipMode":"visible","derivationIds":[],"id":"75F9768D-8679-47F7-9538-E0ADB705908B","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"95":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"96":{"morph":{"__isSmartRef__":true,"id":94},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"97":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":98},"eventHandler":{"__isSmartRef__":true,"id":99},"_ClipMode":"visible","derivationIds":[],"id":"071222DD-1642-4F6F-8BFC-19B22AA744F2","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"98":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"99":{"morph":{"__isSmartRef__":true,"id":97},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"100":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":101},"eventHandler":{"__isSmartRef__":true,"id":102},"_ClipMode":"visible","derivationIds":[],"id":"D63168D6-A761-40CC-9CCF-78FB66678ACA","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"101":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"102":{"morph":{"__isSmartRef__":true,"id":100},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"103":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":104},"eventHandler":{"__isSmartRef__":true,"id":105},"_ClipMode":"visible","derivationIds":[],"id":"B836896A-EE49-490E-9185-6517F265DAE6","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"104":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"105":{"morph":{"__isSmartRef__":true,"id":103},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"106":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":107},"eventHandler":{"__isSmartRef__":true,"id":108},"_ClipMode":"visible","derivationIds":[],"id":"C24EA794-4520-489B-B197-DAD4AACD9A1F","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"107":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"108":{"morph":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"109":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":110},"eventHandler":{"__isSmartRef__":true,"id":111},"_ClipMode":"visible","derivationIds":[],"id":"9152717B-9DE9-4901-9FBA-CF4078933199","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"110":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"111":{"morph":{"__isSmartRef__":true,"id":109},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"112":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":113},"eventHandler":{"__isSmartRef__":true,"id":114},"_ClipMode":"visible","derivationIds":[],"id":"C878E0D6-5BF6-483E-9E35-D0E8EF18CCE4","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"113":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"114":{"morph":{"__isSmartRef__":true,"id":112},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"115":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":116},"eventHandler":{"__isSmartRef__":true,"id":117},"_ClipMode":"visible","derivationIds":[],"id":"D91E38EC-7803-4A78-B6C7-DF3554FF47E9","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"116":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"117":{"morph":{"__isSmartRef__":true,"id":115},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"118":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":119},"eventHandler":{"__isSmartRef__":true,"id":120},"_ClipMode":"visible","derivationIds":[],"id":"30D97847-A97E-48F7-A95E-787CC9AD60F3","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"119":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"120":{"morph":{"__isSmartRef__":true,"id":118},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"121":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":122},"eventHandler":{"__isSmartRef__":true,"id":123},"_ClipMode":"visible","derivationIds":[],"id":"3C67FB15-5C12-459A-991B-4C7C53916BCE","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"122":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"123":{"morph":{"__isSmartRef__":true,"id":121},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"124":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":125},"eventHandler":{"__isSmartRef__":true,"id":126},"_ClipMode":"visible","derivationIds":[],"id":"B93D3545-9669-4884-B49D-DCF92854CD11","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"125":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"126":{"morph":{"__isSmartRef__":true,"id":124},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"127":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":128},"eventHandler":{"__isSmartRef__":true,"id":129},"_ClipMode":"visible","derivationIds":[],"id":"3CA3E61A-63BA-4F01-9AB7-E939F9E71B86","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"128":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"129":{"morph":{"__isSmartRef__":true,"id":127},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"130":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":131},"eventHandler":{"__isSmartRef__":true,"id":132},"_ClipMode":"visible","derivationIds":[],"id":"0A68F3F6-EF8D-432F-B933-1AAF00A02C21","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"131":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"132":{"morph":{"__isSmartRef__":true,"id":130},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"133":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":134},"eventHandler":{"__isSmartRef__":true,"id":135},"_ClipMode":"visible","derivationIds":[],"id":"415FE62C-ACC5-4D7B-8B3D-F2621CFDE851","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"134":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"135":{"morph":{"__isSmartRef__":true,"id":133},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"136":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":137},"eventHandler":{"__isSmartRef__":true,"id":138},"_ClipMode":"visible","derivationIds":[],"id":"B5ED3884-7E1B-4E8F-AD7F-303E97E062CE","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"137":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"138":{"morph":{"__isSmartRef__":true,"id":136},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"139":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":140},"eventHandler":{"__isSmartRef__":true,"id":141},"_ClipMode":"visible","derivationIds":[],"id":"11DCFA28-4E25-4A1B-A51A-F460C74A2F11","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"140":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"141":{"morph":{"__isSmartRef__":true,"id":139},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"142":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":143},"eventHandler":{"__isSmartRef__":true,"id":144},"_ClipMode":"visible","derivationIds":[],"id":"FA90F3D3-A8D0-455C-B4AC-90ACDB0C5534","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"143":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"144":{"morph":{"__isSmartRef__":true,"id":142},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"145":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":146},"eventHandler":{"__isSmartRef__":true,"id":147},"_ClipMode":"visible","derivationIds":[],"id":"5B8018AB-0AE2-4324-8DAC-40F76B42FE07","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"146":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"147":{"morph":{"__isSmartRef__":true,"id":145},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"148":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":149},"eventHandler":{"__isSmartRef__":true,"id":150},"_ClipMode":"visible","derivationIds":[],"id":"A8355226-8EE9-4481-AE6F-A1CE69DC7454","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"149":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"150":{"morph":{"__isSmartRef__":true,"id":148},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"151":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":152},"eventHandler":{"__isSmartRef__":true,"id":153},"_ClipMode":"visible","derivationIds":[],"id":"B7A95165-E0D9-49CD-83A5-3200D4C1965A","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"152":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"153":{"morph":{"__isSmartRef__":true,"id":151},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"154":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":155},"eventHandler":{"__isSmartRef__":true,"id":156},"_ClipMode":"visible","derivationIds":[],"id":"893D8E6D-B6F5-445B-B5D0-E3A466B226F3","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"155":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"156":{"morph":{"__isSmartRef__":true,"id":154},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"157":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":158},"eventHandler":{"__isSmartRef__":true,"id":159},"_ClipMode":"visible","derivationIds":[],"id":"2411BD74-BC9B-4748-8904-D3BDCCF03D75","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"158":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"159":{"morph":{"__isSmartRef__":true,"id":157},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"160":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":161},"eventHandler":{"__isSmartRef__":true,"id":162},"_ClipMode":"visible","derivationIds":[],"id":"FC5C092B-0637-488B-8623-E2E70C6175DB","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"161":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"162":{"morph":{"__isSmartRef__":true,"id":160},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"163":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":164},"eventHandler":{"__isSmartRef__":true,"id":165},"_ClipMode":"visible","derivationIds":[],"id":"0CAA92EA-5A87-4D58-B07A-08B53D1A568D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"164":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"165":{"morph":{"__isSmartRef__":true,"id":163},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"166":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":167},"eventHandler":{"__isSmartRef__":true,"id":168},"_ClipMode":"visible","derivationIds":[],"id":"93EC7221-BF7A-4F64-A89C-BA38272FCAEF","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"167":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"168":{"morph":{"__isSmartRef__":true,"id":166},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"169":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":170},"eventHandler":{"__isSmartRef__":true,"id":171},"_ClipMode":"visible","derivationIds":[],"id":"B2F3ED8A-835A-4456-A0EE-EF4688601D4D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.9000000000000001,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"170":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"171":{"morph":{"__isSmartRef__":true,"id":169},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"172":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":173},"eventHandler":{"__isSmartRef__":true,"id":174},"_ClipMode":"visible","derivationIds":[],"id":"1F43C17B-6A31-4FB7-BAFA-0BC847A9BE7E","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"173":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"174":{"morph":{"__isSmartRef__":true,"id":172},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"175":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":176},"eventHandler":{"__isSmartRef__":true,"id":177},"_ClipMode":"visible","derivationIds":[],"id":"22A7036D-7537-458F-B765-4533E6F730BC","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.1,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"176":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"177":{"morph":{"__isSmartRef__":true,"id":175},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"178":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":179},"eventHandler":{"__isSmartRef__":true,"id":180},"_ClipMode":"visible","derivationIds":[],"id":"8EC3B743-A54B-460E-825A-C2A314F2AD04","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.2,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"179":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"180":{"morph":{"__isSmartRef__":true,"id":178},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"181":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":182},"eventHandler":{"__isSmartRef__":true,"id":183},"_ClipMode":"visible","derivationIds":[],"id":"DAA1758C-ED73-47E7-B061-15ED836AD670","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.3000000000000003,"owner":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"182":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"183":{"morph":{"__isSmartRef__":true,"id":181},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"184":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":3.8200000000000003,"_ClipMode":"visible","_BorderRadius":7.7700000000000005,"_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(218.5,148.7)","_BorderColor":"Color.rgb(196,194,194)","_Fill":"Color.rgb(234,250,232)","_Padding":"lively.rect(0,0,0,0)"},"185":{"partsSpaceName":"PartsBin/Jens","comment":"experimenting with the debugger","migrationLevel":4,"partName":"DebuggerExample","changes":[{"__isSmartRef__":true,"id":186},{"__isSmartRef__":true,"id":188},{"__isSmartRef__":true,"id":190},{"__isSmartRef__":true,"id":192},{"__isSmartRef__":true,"id":194},{"__isSmartRef__":true,"id":196},{"__isSmartRef__":true,"id":198},{"__isSmartRef__":true,"id":200}],"revisionOnLoad":182512,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"186":{"date":{"__isSmartRef__":true,"id":187},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"187":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"188":{"date":{"__isSmartRef__":true,"id":189},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"189":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"190":{"date":{"__isSmartRef__":true,"id":191},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"191":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"192":{"date":{"__isSmartRef__":true,"id":193},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"193":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"194":{"date":{"__isSmartRef__":true,"id":195},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"195":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"196":{"date":{"__isSmartRef__":true,"id":197},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"197":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"198":{"date":{"__isSmartRef__":true,"id":199},"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8"},"199":{"isSerializedDate":true,"string":"Mon Jun 18 2012 19:35:08 GMT+0200 (CEST)"},"200":{"date":{"__isSmartRef__":true,"id":201},"author":"jenslincke","message":"no comment","id":"34EAD84A-4849-4B51-9D1C-9202D5322FD1"},"201":{"isSerializedDate":true,"string":"Thu Oct 18 2012 17:07:04 GMT+0200 (CEST)"},"202":{"morph":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"203":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":204}},"204":{"test01IsMorph":{"__isSmartRef__":true,"id":205}},"205":{"varMapping":{"__isSmartRef__":true,"id":206},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":207},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"206":{"this":{"__isSmartRef__":true,"id":203}},"207":{},"208":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":209},"eventHandler":{"__isSmartRef__":true,"id":210},"_ClipMode":"visible","derivationIds":[],"id":"1F2FC550-27D3-489B-8517-9E7E988DB61F","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"owner":null,"isBeingDragged":false,"_Rotation":-2.2831853071795867,"_Scale":0.9999999999999999,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(110.0,132.0)"},"209":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(50.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,200,0)"},"210":{"morph":{"__isSmartRef__":true,"id":208},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"211":{"submorphs":[{"__isSmartRef__":true,"id":212}],"scripts":[],"id":"E0DDD471-EB76-4BAB-90DD-C41EC5AEE9EB","shape":{"__isSmartRef__":true,"id":217},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":223},"lighterFill":{"__isSmartRef__":true,"id":228},"label":{"__isSmartRef__":true,"id":212},"name":"Button2","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":233},"attributeConnections":[{"__isSmartRef__":true,"id":244},{"__isSmartRef__":true,"id":245}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":246},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F"],"_ClipMode":"visible","isPressed":false,"owner":{"__isSmartRef__":true,"id":38},"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":247},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(20.0,20.0)","distanceToDragEvent":"lively.pt(33.0,-13.0)"},"212":{"submorphs":[],"scripts":[],"id":"AA7B3E51-9145-4370-B63F-B82D43604014","shape":{"__isSmartRef__":true,"id":213},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"_MaxTextWidth":50,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":211},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":214}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":216},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A"],"_MinTextWidth":50,"_MinTextHeight":null,"_FontSize":10,"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"213":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(50.0,20.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"214":{"style":{"__isSmartRef__":true,"id":215},"chunkOwner":{"__isSmartRef__":true,"id":212},"_id":"_1334","storedString":"run","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"215":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"216":{"morph":{"__isSmartRef__":true,"id":212},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"217":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":218},"_BorderRadius":5.2,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(50.0,20.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"218":{"stops":[{"__isSmartRef__":true,"id":219},{"__isSmartRef__":true,"id":220},{"__isSmartRef__":true,"id":221},{"__isSmartRef__":true,"id":222}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"219":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"220":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"221":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"222":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"223":{"stops":[{"__isSmartRef__":true,"id":224},{"__isSmartRef__":true,"id":225},{"__isSmartRef__":true,"id":226},{"__isSmartRef__":true,"id":227}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"224":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"225":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"226":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"227":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"228":{"stops":[{"__isSmartRef__":true,"id":229},{"__isSmartRef__":true,"id":230},{"__isSmartRef__":true,"id":231},{"__isSmartRef__":true,"id":232}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"229":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"230":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"231":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"232":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"233":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":234},{"__isSmartRef__":true,"id":236},{"__isSmartRef__":true,"id":238},{"__isSmartRef__":true,"id":240},{"__isSmartRef__":true,"id":242}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"234":{"date":{"__isSmartRef__":true,"id":235},"author":"undefined","message":"","id":"7074B413-6CF0-4892-9D18-52009A2A2E03"},"235":{"isSerializedDate":true,"string":"Fri Apr 13 2012 21:04:01 GMT+0200 (CEST)"},"236":{"date":{"__isSmartRef__":true,"id":237},"author":"sstamm","message":"reverted button","id":"9B7AA90A-42FC-4DE8-A4DE-51AB903A740E"},"237":{"isSerializedDate":true,"string":"Mon Apr 16 2012 10:36:21 GMT+0200 (CEST)"},"238":{"date":{"__isSmartRef__":true,"id":239},"author":"robertkrahn","message":"no comment","id":"97D17254-EAC6-4494-8330-A347909590D6"},"239":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:08:58 GMT+0200 (CEST)"},"240":{"date":{"__isSmartRef__":true,"id":241},"author":"robertkrahn","message":"no comment","id":"DDE22D44-9A6D-4485-80F3-262D5DA0CC07"},"241":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:03:19 GMT+0200 (CEST)"},"242":{"date":{"__isSmartRef__":true,"id":243},"author":"bgnauk","message":"no comment","id":"FA43C1A3-19A9-4ED6-A014-82C74689A5C3"},"243":{"isSerializedDate":true,"string":"Tue Jun 19 2012 23:39:23 GMT+0200 (CEST)"},"244":{"sourceObj":{"__isSmartRef__":true,"id":211},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":211},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"245":{"sourceObj":{"__isSmartRef__":true,"id":211},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":38},"targetMethodName":"onRun","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"246":{"morph":{"__isSmartRef__":true,"id":211},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"247":{"doAction":{"__isSmartRef__":true,"id":248}},"248":{"varMapping":{"__isSmartRef__":true,"id":249},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":250},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"249":{"this":{"__isSmartRef__":true,"id":211}},"250":{"timestamp":{"__isSmartRef__":true,"id":251},"user":"robertkrahn","tags":[]},"251":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"252":{"submorphs":[{"__isSmartRef__":true,"id":253}],"scripts":[],"id":"9B991B44-496E-4EB9-A8B5-93840800B956","shape":{"__isSmartRef__":true,"id":258},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":264},"lighterFill":{"__isSmartRef__":true,"id":269},"label":{"__isSmartRef__":true,"id":253},"name":"Button1","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":233},"attributeConnections":[{"__isSmartRef__":true,"id":274},{"__isSmartRef__":true,"id":275}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":276},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F"],"_ClipMode":"visible","isPressed":false,"owner":{"__isSmartRef__":true,"id":38},"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":277},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(80.0,20.0)","distanceToDragEvent":"lively.pt(34.0,-12.0)"},"253":{"submorphs":[],"scripts":[],"id":"860F9D9B-1345-4069-989E-4077C11C0A67","shape":{"__isSmartRef__":true,"id":254},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"_MaxTextWidth":46,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":252},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":255}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":257},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A"],"_MinTextWidth":46,"_MinTextHeight":null,"_FontSize":10,"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"254":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(46.0,20.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"255":{"style":{"__isSmartRef__":true,"id":256},"chunkOwner":{"__isSmartRef__":true,"id":253},"_id":"_14783","storedString":"stop","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"256":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"257":{"morph":{"__isSmartRef__":true,"id":253},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"258":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":259},"_BorderRadius":5.2,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(46.0,20.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"259":{"stops":[{"__isSmartRef__":true,"id":260},{"__isSmartRef__":true,"id":261},{"__isSmartRef__":true,"id":262},{"__isSmartRef__":true,"id":263}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"260":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"261":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"262":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"263":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"264":{"stops":[{"__isSmartRef__":true,"id":265},{"__isSmartRef__":true,"id":266},{"__isSmartRef__":true,"id":267},{"__isSmartRef__":true,"id":268}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"265":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"266":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"267":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"268":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"269":{"stops":[{"__isSmartRef__":true,"id":270},{"__isSmartRef__":true,"id":271},{"__isSmartRef__":true,"id":272},{"__isSmartRef__":true,"id":273}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"270":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"271":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"272":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"273":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"274":{"sourceObj":{"__isSmartRef__":true,"id":252},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":252},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"275":{"sourceObj":{"__isSmartRef__":true,"id":252},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":38},"targetMethodName":"onStop","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"276":{"morph":{"__isSmartRef__":true,"id":252},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"277":{"doAction":{"__isSmartRef__":true,"id":278}},"278":{"varMapping":{"__isSmartRef__":true,"id":279},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":280},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"279":{"this":{"__isSmartRef__":true,"id":252}},"280":{"timestamp":{"__isSmartRef__":true,"id":281},"user":"robertkrahn","tags":[]},"281":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"282":{"submorphs":[],"scripts":[],"id":"6123FF2A-88F6-4E07-9BE4-D77463B67D69","shape":{"__isSmartRef__":true,"id":283},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","textColor","_Padding","distanceToDragEvent"],"_MaxTextWidth":28.695651999999995,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":8,"name":"StepCounter","partsBinMetaInfo":{"__isSmartRef__":true,"id":284},"textChunks":[{"__isSmartRef__":true,"id":295}],"charsReplaced":"foo!?","lastFindLoc":5,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":297},"_ClipMode":"visible","derivationIds":[355,"1EB1674F-8BF2-419B-B054-86129ED70335","63698904-DC05-4341-A9B6-5CC4A219CD04","F6A714BA-4735-41ED-8A2A-45CB153FBDF8"],"_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":28.695651999999995,"_MinTextHeight":null,"isBeingDragged":false,"moved":true,"owner":{"__isSmartRef__":true,"id":38},"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(829.0,27.0)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)","distanceToDragEvent":"lively.pt(34.0,-10.0)"},"283":{"fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(36.7,18.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(4,2,0,0)"},"284":{"partsSpaceName":"PartsBin/Basic","migrationLevel":4,"comment":"a simple text morph","partName":"Text","changes":[{"__isSmartRef__":true,"id":285},{"__isSmartRef__":true,"id":287},{"__isSmartRef__":true,"id":289},{"__isSmartRef__":true,"id":291},{"__isSmartRef__":true,"id":293}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"285":{"date":{"__isSmartRef__":true,"id":286},"author":"robertkrahn","message":"text click was broken?","id":"9D065E14-9653-4B2A-9A2E-3AD84EBBC3E0"},"286":{"isSerializedDate":true,"string":"Sat Apr 21 2012 16:30:30 GMT+0200 (CEST)"},"287":{"date":{"__isSmartRef__":true,"id":288},"author":"undefined","message":"Set the inset as: this.setPadding(Rectangle.inset(4,2)). This gives it a more pleasing appearance with a border, and also makes it easier to select near the bounds.","id":"BD5B0E4C-4830-4863-A013-35BB66D5AD6F"},"288":{"isSerializedDate":true,"string":"Mon Feb 27 2012 06:20:38 GMT+0100 (CET)"},"289":{"date":{"__isSmartRef__":true,"id":290},"author":"tessi","message":"TextBubble calls its disappear() function after showBubbleTime() milliseconds now","id":"0F4DE333-A551-4961-B29D-70270977EBEF"},"290":{"isSerializedDate":true,"string":"Sat Apr 21 2012 07:31:43 GMT+0200 (CEST)"},"291":{"date":{"__isSmartRef__":true,"id":292},"author":"tessi","message":"TextBubble calls its disappear() function after showBubbleTime() milliseconds now","id":"785D95BD-7858-43EB-90E6-A1C085E2F2B9"},"292":{"isSerializedDate":true,"string":"Sat Apr 21 2012 07:32:09 GMT+0200 (CEST)"},"293":{"date":{"__isSmartRef__":true,"id":294},"author":"timfelgentreff","message":"better text","id":"B904F9AC-6EA0-4A8A-83C9-AFC85AADC194"},"294":{"isSerializedDate":true,"string":"Tue May 08 2012 14:18:18 GMT+0200 (CEST)"},"295":{"style":{"__isSmartRef__":true,"id":296},"chunkOwner":{"__isSmartRef__":true,"id":282},"_id":"_309","storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"296":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"297":{"morph":{"__isSmartRef__":true,"id":282},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"298":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":13.695000000000002,"_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(880.0,503.0)","_BorderColor":"Color.rgb(167,167,167)","_Fill":"Color.rgb(246,244,241)","_Padding":"lively.rect(0,0,0,0)"},"299":{"morph":{"__isSmartRef__":true,"id":38},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"300":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":301}},"301":{"test01IsMorph":{"__isSmartRef__":true,"id":302}},"302":{"varMapping":{"__isSmartRef__":true,"id":303},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":304},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"303":{"this":{"__isSmartRef__":true,"id":300}},"304":{},"305":{"target":{"__isSmartRef__":true,"id":38},"selector":"runStep","args":[],"stopped":true,"tickTime":50,"suspended":true,"__LivelyClassName__":"lively.morphic.TargetScript","__SourceModuleName__":"Global.lively.morphic.Core"},"306":{"sourceObj":{"__isSmartRef__":true,"id":38},"sourceAttrName":"stepCounter","targetObj":null,"targetMethodName":"textString","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"307":{"sourceObj":{"__isSmartRef__":true,"id":38},"sourceAttrName":"stepCounter","targetObj":{"__isSmartRef__":true,"id":282},"targetMethodName":"textString","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"308":{"[object Object]":true},"309":{"onrestore":{"__isSmartRef__":true,"id":310},"instrumentAST":{"__isSmartRef__":true,"id":318},"onRun":{"__isSmartRef__":true,"id":322},"setFrame":{"__isSmartRef__":true,"id":326},"reset":{"__isSmartRef__":true,"id":330},"runStep":{"__isSmartRef__":true,"id":334},"onStop":{"__isSmartRef__":true,"id":338},"determineMaximumSteps":{"__isSmartRef__":true,"id":342},"setFrameMaximum":{"__isSmartRef__":true,"id":346},"exploreMaximumSteps":{"__isSmartRef__":true,"id":350},"startExecution":{"__isSmartRef__":true,"id":354}},"310":{"varMapping":{"__isSmartRef__":true,"id":311},"source":"function onrestore() {\n module('lively.ast.Morphic').load(true)\n this.instrumentAST()\n}","funcProperties":{"__isSmartRef__":true,"id":316},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"311":{"this":{"__isSmartRef__":true,"id":38},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":312}},"312":{"$super":{"__isSmartRef__":true,"id":313}},"313":{"varMapping":{"__isSmartRef__":true,"id":314},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":315},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"314":{"obj":{"__isSmartRef__":true,"id":38},"name":"onrestore"},"315":{},"316":{"timestamp":{"__isSmartRef__":true,"id":317},"user":"erp","tags":[]},"317":{"isSerializedDate":true,"string":"Fri Oct 19 2012 17:38:45 GMT+0200 (CEST)"},"318":{"varMapping":{"__isSmartRef__":true,"id":319},"source":"function instrumentAST() {\n cop.createLayer('LiveInterpreterLayer').refineObject(Global.lively.ast, {\n halt: function(frame) {\n $morph('InterpreterExperiments').setFrame(frame);\n return true\n }\n });\n\n cop.createLayer('MaximumStepsLiveInterpreterLayer').refineObject(Global.lively.ast, {\n halt: function(frame) {\n $morph('InterpreterExperiments').setFrameMaximum(frame);\n return true\n }\n });\n\n // LiveInterpreterLayer.beNotGlobal();\n\n}","funcProperties":{"__isSmartRef__":true,"id":320},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"319":{"this":{"__isSmartRef__":true,"id":38}},"320":{"timestamp":{"__isSmartRef__":true,"id":321},"user":"erp","tags":[]},"321":{"isSerializedDate":true,"string":"Tue Oct 30 2012 10:46:20 GMT+0100 (CET)"},"322":{"varMapping":{"__isSmartRef__":true,"id":323},"source":"function onRun() {\n\n this.determineMaximumSteps();\n \n}","funcProperties":{"__isSmartRef__":true,"id":324},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"323":{"this":{"__isSmartRef__":true,"id":38}},"324":{"timestamp":{"__isSmartRef__":true,"id":325},"user":"erp","tags":[]},"325":{"isSerializedDate":true,"string":"Tue Oct 30 2012 12:52:52 GMT+0100 (CET)"},"326":{"varMapping":{"__isSmartRef__":true,"id":327},"source":"function setFrame(frame) {\n this.lastFrame = frame;\n}","funcProperties":{"__isSmartRef__":true,"id":328},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"327":{"this":{"__isSmartRef__":true,"id":38}},"328":{"timestamp":{"__isSmartRef__":true,"id":329},"user":"erp","tags":[]},"329":{"isSerializedDate":true,"string":"Tue Oct 30 2012 12:53:11 GMT+0100 (CET)"},"330":{"varMapping":{"__isSmartRef__":true,"id":331},"source":"function reset() {\n\n this.doNotSerialize = ['lastFrame'];\n \n connect(this, 'stepCounter', this.get('StepCounter'), 'textString')\n}","funcProperties":{"__isSmartRef__":true,"id":332},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"331":{"this":{"__isSmartRef__":true,"id":38}},"332":{"timestamp":{"__isSmartRef__":true,"id":333},"user":"jenslincke","tags":[]},"333":{"isSerializedDate":true,"string":"Fri Oct 19 2012 15:10:37 GMT+0200 (CEST)"},"334":{"varMapping":{"__isSmartRef__":true,"id":335},"source":"function runStep() {\n var self = this;\n var textMorh = this.get('Source');\n var analysisMorph = this.get('Introspection');\n this.stepCounter++;\n var i = 0;\n self.lastFrame.listItemsForIntrospection().each(function(element) {\n self.livingElements[element] = true;\n i++;\n });\n\n var introspection = Object.keys(self.livingElements).collect(function(element) {\n return \"0\";\n });\n analysisMorph.setTextString(Object.keys(self.livingElements));\n\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.lastFrame.stepToNextStatement();\n } catch(e) {\n if (!e.isUnwindException) {\n textMorph.showError(e);\n }\n }\n })\n}","funcProperties":{"__isSmartRef__":true,"id":336},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"335":{"this":{"__isSmartRef__":true,"id":38}},"336":{"timestamp":{"__isSmartRef__":true,"id":337},"user":"erp","tags":[]},"337":{"isSerializedDate":true,"string":"Tue Oct 30 2012 09:54:16 GMT+0100 (CET)"},"338":{"varMapping":{"__isSmartRef__":true,"id":339},"source":"function onStop() {\n this.stopStepping()\n this.stepCounter = 0;\n this.maximumSteps = 0;\n}","funcProperties":{"__isSmartRef__":true,"id":340},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"339":{"this":{"__isSmartRef__":true,"id":38}},"340":{"timestamp":{"__isSmartRef__":true,"id":341},"user":"erp","tags":[]},"341":{"isSerializedDate":true,"string":"Tue Oct 30 2012 12:44:32 GMT+0100 (CET)"},"342":{"varMapping":{"__isSmartRef__":true,"id":343},"source":"function determineMaximumSteps() {\n\n this.onStop();\n var self = this;\n\n var textMorph = this.get('Source');\n var str = \"function(){\\n\" + textMorph.textString + \"\\n}\";\n var fun = Function.fromString(str).forInterpretation();\n var ctx = new lively.morphic.Text(pt(0,0).extent(pt(200,100)),\"\");\n\n this.maximumSteps = 0;\n\n try {\n cop.withLayers([MaximumStepsLiveInterpreterLayer], function() {\n fun.startHalted().apply(ctx, []);\n })\n } catch(e) {\n if (!e.isUnwindException) {\n textMorph.showError(e);\n }\n };\n \n cop.withLayers([MaximumStepsLiveInterpreterLayer], function() {\n self.lastFrame.stepToNextStatement();\n })\n\n}","funcProperties":{"__isSmartRef__":true,"id":344},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"343":{"this":{"__isSmartRef__":true,"id":38}},"344":{"timestamp":{"__isSmartRef__":true,"id":345},"user":"erp","tags":[]},"345":{"isSerializedDate":true,"string":"Tue Oct 30 2012 12:59:12 GMT+0100 (CET)"},"346":{"varMapping":{"__isSmartRef__":true,"id":347},"source":"function setFrameMaximum(frame) {\n this.lastFrame = frame;\n this.maximumSteps += 1;\n if(this.lastFrame.hasNextStatement()) {\n this.exploreMaximumSteps(); \n } else {\n this.startExecution();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":348},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"347":{"this":{"__isSmartRef__":true,"id":38}},"348":{"timestamp":{"__isSmartRef__":true,"id":349},"user":"erp","tags":[]},"349":{"isSerializedDate":true,"string":"Tue Oct 30 2012 12:52:21 GMT+0100 (CET)"},"350":{"varMapping":{"__isSmartRef__":true,"id":351},"source":"function exploreMaximumSteps() {\n var self = this;\n cop.withLayers([MaximumStepsLiveInterpreterLayer], function() {\n self.lastFrame.stepToNextStatement();\n })\n}","funcProperties":{"__isSmartRef__":true,"id":352},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"351":{"this":{"__isSmartRef__":true,"id":38}},"352":{"timestamp":{"__isSmartRef__":true,"id":353},"user":"erp","tags":[]},"353":{"isSerializedDate":true,"string":"Tue Oct 30 2012 12:47:03 GMT+0100 (CET)"},"354":{"varMapping":{"__isSmartRef__":true,"id":355},"source":"function startExecution() {\n \n this.onStop();\n var self = this;\n\n var textMorph = this.get('Source');\n var str = \"function(){\\n\" + textMorph.textString + \"\\n}\";\n var fun = Function.fromString(str).forInterpretation();\n var ctx = textMorph.getDoitContext() || textMorph;\n this.livingElements = {};\n\n try {\n cop.withLayers([LiveInterpreterLayer], function() {\n fun.startHalted().apply(ctx, []);\n })\n } catch(e) {\n if (!e.isUnwindException) {\n textMorph.showError(e);\n }\n }\n\n this.runScript = this.startStepping(50, 'runStep')\n}","funcProperties":{"__isSmartRef__":true,"id":356},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"355":{"this":{"__isSmartRef__":true,"id":38}},"356":{"timestamp":{"__isSmartRef__":true,"id":357},"user":"erp","tags":[]},"357":{"isSerializedDate":true,"string":"Tue Oct 30 2012 12:59:03 GMT+0100 (CET)"},"358":{"isListItem":true,"string":"this: ","value":{"__isSmartRef__":true,"id":54}},"359":{"isListItem":true,"string":"i: 30","value":30},"360":{"isListItem":true,"string":"m: ","value":{"__isSmartRef__":true,"id":361}},"361":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":362},"eventHandler":{"__isSmartRef__":true,"id":363},"_ClipMode":"visible","derivationIds":[],"id":"B67DD272-CE61-4B92-A5BE-EA6CB75F9131","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.9000000000000004,"owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"362":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(291,0,0)"},"363":{"morph":{"__isSmartRef__":true,"id":361},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"364":{"isListItem":true,"string":"[[containing scope]]"},"365":{"getDoitContext":{"__isSmartRef__":true,"id":366}},"366":{"varMapping":{"__isSmartRef__":true,"id":367},"source":"function getDoitContext() {\n return this.get('Playground')\n}","funcProperties":{"__isSmartRef__":true,"id":372},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"367":{"this":{"__isSmartRef__":true,"id":32},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":368}},"368":{"$super":{"__isSmartRef__":true,"id":369}},"369":{"varMapping":{"__isSmartRef__":true,"id":370},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":371},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"370":{"obj":{"__isSmartRef__":true,"id":32},"name":"getDoitContext"},"371":{},"372":{"timestamp":{"__isSmartRef__":true,"id":373},"user":"jenslincke","tags":[]},"373":{"isSerializedDate":true,"string":"Thu Oct 18 2012 17:30:12 GMT+0200 (CEST)"},"374":{"submorphs":[{"__isSmartRef__":true,"id":375}],"scripts":[],"id":"6B54D19C-BB2A-47B0-A2FA-BB48A23092E9","shape":{"__isSmartRef__":true,"id":1982},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position"],"showsHalos":false,"name":"Rectangle","partsBinMetaInfo":{"__isSmartRef__":true,"id":1983},"eventHandler":{"__isSmartRef__":true,"id":1996},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","C284F4DE-14F1-43C2-A4D0-1BAE909D98DA","9EEF20FD-27E3-4A31-8DBC-36073E64666F","283BD2F7-EFEE-4D83-876B-A8F2BD099B93","50245F69-C51D-40B5-BFD8-EE4870A65AF5","410821C9-3A7A-4ACB-8AEF-6B82AAB72D55","EFEAD1DE-A920-4272-BB24-C0361CBF2906","A5D165E3-E5BD-43E3-B6B0-9C23B5CC1964","6CC2F1A6-9C53-4980-80E4-0167A10F9942","95406291-4689-49C6-ADE6-C2C642AC0B5C","33084DB2-FE6B-44DA-AF4A-5C017450FC97","46D25FF6-F6EA-49A2-B643-59628686B2DC","9648CC00-8E9E-4911-A41B-46CED518B0D3","E1275348-0270-4F01-BE65-8C80AC5A5588","734AED0F-F7BE-44E8-92CE-86F1AE7F6D55","42AD8A44-C2B7-462F-89AE-4AE94C29A9D5","9548995B-025B-42CC-9DC4-44999A80E52F","0AA45256-249A-420C-A183-0A3BE69F95C6","3FF6DBA9-F3C1-4D0D-999B-981406660635","5BDFFDB8-16A6-4122-8CF6-2EC7C7CFA0DE","F73CBC23-DED8-4667-B4C4-4842BBD64AF5","F4E6EC9B-F4BE-4249-AB50-3EE510BF3ACD","5E0F549D-154A-4598-972D-7FB5D7EB2597","4EFF8DE7-D20D-4C65-B931-9AE67A17ABAD","81382340-4F55-428F-8FA9-23679D643920","12AEE6D1-BD69-4690-84DC-EBFC54F436CF","C434C7E8-49F2-4EDF-AA66-363EDB6AA0F8","EE756834-F5B4-47EB-993C-83C2B8B448FB","3DAC0D13-C416-4EF8-9BA1-62A438291A79","34E85AE0-DDA3-4AA1-B38C-895F46CE103C","4166C41F-80E0-4ABF-B227-790BA8E282AB","D6333D2B-EC4C-477A-8510-2F6A8697533E"],"partTests":{"__isSmartRef__":true,"id":1997},"_ClipMode":"auto","moved":true,"owner":{"__isSmartRef__":true,"id":18},"layout":{"__isSmartRef__":true,"id":2002},"isBeingDragged":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(8.1,41.2)"},"375":{"item":{"__isSmartRef__":true,"id":376},"parent":null,"depth":0,"submorphs":[{"__isSmartRef__":true,"id":380},{"__isSmartRef__":true,"id":428},{"__isSmartRef__":true,"id":476},{"__isSmartRef__":true,"id":522},{"__isSmartRef__":true,"id":568},{"__isSmartRef__":true,"id":622},{"__isSmartRef__":true,"id":676},{"__isSmartRef__":true,"id":730},{"__isSmartRef__":true,"id":832},{"__isSmartRef__":true,"id":880},{"__isSmartRef__":true,"id":934},{"__isSmartRef__":true,"id":982},{"__isSmartRef__":true,"id":1030},{"__isSmartRef__":true,"id":1078},{"__isSmartRef__":true,"id":1126},{"__isSmartRef__":true,"id":1174},{"__isSmartRef__":true,"id":1222},{"__isSmartRef__":true,"id":1270},{"__isSmartRef__":true,"id":1324},{"__isSmartRef__":true,"id":1372},{"__isSmartRef__":true,"id":1426},{"__isSmartRef__":true,"id":1481},{"__isSmartRef__":true,"id":1535},{"__isSmartRef__":true,"id":1583},{"__isSmartRef__":true,"id":1637},{"__isSmartRef__":true,"id":1691},{"__isSmartRef__":true,"id":1739},{"__isSmartRef__":true,"id":1793},{"__isSmartRef__":true,"id":1841},{"__isSmartRef__":true,"id":778},{"__isSmartRef__":true,"id":1895}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1957},"derivationIds":[null,"01A6356E-C15D-4F8D-BBB6-8680B231177D","8C1A96D3-6843-4386-9FC2-67909491ADEA","B85242E4-52C0-4A2B-9704-D5973B5BE1FE","8674A527-60C2-400B-82C8-B9209A0E288F","A851FE58-8397-4F98-BAE6-339C4926C930","2F1F744A-AA0E-4AB5-9D27-2EF1599780DD","98C0C210-DC70-452B-B05C-3B97B6CC4501","2D252C30-0809-4CDD-85A6-224D3B4186DC","5D83B1E4-35D8-403E-BABC-68E6E581B41C","48C1E58B-63D5-4C4B-A618-49EC747D4D2A","18F7D7DD-933D-4F14-AD42-27D4E5007E90","C7B88DEE-33BC-4C19-A8CA-C875519F03FB","B9610924-8476-414F-AF8C-4B18464386B1","3CBB6CB7-B377-4C0F-8906-7D0EBB8C1EB9","4EB0E124-3A4F-4BAB-ADCC-90E994E6F063","2248AE83-905F-4289-9C28-C08A0CE81D44","6722763D-AF2A-4186-AC25-1BCFCDD5D86F","3CC06143-943E-49E6-BBEF-094170056209","81130FBB-61ED-4567-BF03-7DA1DF84A8B8","445967DD-B3DE-4549-925F-75F5850757D7","FB1B17A2-78E6-46AD-B956-557B044AFE3F","BC5F0D9A-7059-4A21-B6D5-FD24FD58EB94","B57AF529-0187-4F02-8B37-5C01BCE44F88","D8021CB8-17EB-4641-A33A-60581D80E90A","48211CBE-B665-47DE-8B09-EA18C5A80082","0963EBD4-CBC3-47DD-AAFD-1329BF14A381","A5F36FD3-A2CC-4060-9A35-17A942EE2967","CB01C699-0407-4F5A-8D3C-2CDE89925CAB","04B7E806-6576-41C5-AEB1-1815818472C1","A5350C62-3BC3-4C49-B830-E903AC65A5FA","53F7D5D3-C850-46ED-B54F-3C64A6AE9D53"],"id":"788E341D-3ADA-40ED-A41B-59CCCA2C9C52","eventHandler":{"__isSmartRef__":true,"id":1958},"_ClipMode":"visible","droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":1959},"isInLayoutCycle":true,"draggingEnabled":false,"dragAndDrop":true,"childNodes":[{"__isSmartRef__":true,"id":380},{"__isSmartRef__":true,"id":428},{"__isSmartRef__":true,"id":476},{"__isSmartRef__":true,"id":522},{"__isSmartRef__":true,"id":568},{"__isSmartRef__":true,"id":622},{"__isSmartRef__":true,"id":676},{"__isSmartRef__":true,"id":730},{"__isSmartRef__":true,"id":778},{"__isSmartRef__":true,"id":832},{"__isSmartRef__":true,"id":880},{"__isSmartRef__":true,"id":934},{"__isSmartRef__":true,"id":982},{"__isSmartRef__":true,"id":1030},{"__isSmartRef__":true,"id":1078},{"__isSmartRef__":true,"id":1126},{"__isSmartRef__":true,"id":1174},{"__isSmartRef__":true,"id":1222},{"__isSmartRef__":true,"id":1270},{"__isSmartRef__":true,"id":1324},{"__isSmartRef__":true,"id":1372},{"__isSmartRef__":true,"id":1426},{"__isSmartRef__":true,"id":1481},{"__isSmartRef__":true,"id":1535},{"__isSmartRef__":true,"id":1583},{"__isSmartRef__":true,"id":1637},{"__isSmartRef__":true,"id":1691},{"__isSmartRef__":true,"id":1739},{"__isSmartRef__":true,"id":1793},{"__isSmartRef__":true,"id":1841},{"__isSmartRef__":true,"id":1895}],"icon":{"__isSmartRef__":true,"id":1962},"label":{"__isSmartRef__":true,"id":1968},"owner":{"__isSmartRef__":true,"id":374},"__serializedExpressions__":["_Position"],"isBeingDragged":false,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"showsHalos":false,"name":"ObjectInspectorTree","node":null,"showMoreNode":null,"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1977},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(-2.0,-0.0)"},"376":{"data":{"__isSmartRef__":true,"id":32},"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":377},"description":"Introspection","children":[{"__isSmartRef__":true,"id":378},{"__isSmartRef__":true,"id":426},{"__isSmartRef__":true,"id":474},{"__isSmartRef__":true,"id":520},{"__isSmartRef__":true,"id":566},{"__isSmartRef__":true,"id":620},{"__isSmartRef__":true,"id":674},{"__isSmartRef__":true,"id":728},{"__isSmartRef__":true,"id":776},{"__isSmartRef__":true,"id":830},{"__isSmartRef__":true,"id":878},{"__isSmartRef__":true,"id":932},{"__isSmartRef__":true,"id":980},{"__isSmartRef__":true,"id":1028},{"__isSmartRef__":true,"id":1076},{"__isSmartRef__":true,"id":1124},{"__isSmartRef__":true,"id":1172},{"__isSmartRef__":true,"id":1220},{"__isSmartRef__":true,"id":1268},{"__isSmartRef__":true,"id":1322},{"__isSmartRef__":true,"id":1370},{"__isSmartRef__":true,"id":1424},{"__isSmartRef__":true,"id":1478},{"__isSmartRef__":true,"id":1533},{"__isSmartRef__":true,"id":1581},{"__isSmartRef__":true,"id":1635},{"__isSmartRef__":true,"id":1689},{"__isSmartRef__":true,"id":1737},{"__isSmartRef__":true,"id":1791},{"__isSmartRef__":true,"id":1839},{"__isSmartRef__":true,"id":1893}],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1944}},"377":{"":{"__isSmartRef__":true,"id":32}},"378":{"data":true,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"accessibleInInactiveWindow","description":"true","attributeConnections":[{"__isSmartRef__":true,"id":379}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":419}},"379":{"sourceObj":{"__isSmartRef__":true,"id":378},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":380},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"380":{"item":{"__isSmartRef__":true,"id":378},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":381}],"scripts":[],"shape":{"__isSmartRef__":true,"id":414},"eventHandler":{"__isSmartRef__":true,"id":415},"_ClipMode":"visible","derivationIds":[],"id":"739C9709-EDDB-44AD-9F40-70AA077EEA05","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":416},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":382},"label":{"__isSmartRef__":true,"id":395},"node":{"__isSmartRef__":true,"id":381},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"381":{"submorphs":[{"__isSmartRef__":true,"id":382},{"__isSmartRef__":true,"id":395}],"scripts":[],"shape":{"__isSmartRef__":true,"id":410},"eventHandler":{"__isSmartRef__":true,"id":411},"_ClipMode":"visible","derivationIds":[],"id":"8802C861-12C6-4FC0-AED6-0E8422DE056A","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":412},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":380},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"382":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":383},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":384}],"eventHandler":{"__isSmartRef__":true,"id":386},"_ClipMode":"visible","derivationIds":[],"id":"517BC740-B781-4D86-8E4C-5B7694E45D51","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":381},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":387},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"383":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"384":{"style":{"__isSmartRef__":true,"id":385},"chunkOwner":{"__isSmartRef__":true,"id":382},"_id":"_5929","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"385":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"386":{"morph":{"__isSmartRef__":true,"id":382},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"387":{"onMouseDown":{"__isSmartRef__":true,"id":388}},"388":{"varMapping":{"__isSmartRef__":true,"id":389},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":394},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"389":{"this":{"__isSmartRef__":true,"id":382},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":390}},"390":{"$super":{"__isSmartRef__":true,"id":391}},"391":{"varMapping":{"__isSmartRef__":true,"id":392},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":393},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"392":{"obj":{"__isSmartRef__":true,"id":382},"name":"onMouseDown"},"393":{},"394":{},"395":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":396},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":397},{"__isSmartRef__":true,"id":399}],"eventHandler":{"__isSmartRef__":true,"id":401},"_ClipMode":"visible","derivationIds":[],"id":"21DF2CD6-EA3E-478A-A051-C324A9A7B0D0","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":381},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":402},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"396":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(204.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"397":{"style":{"__isSmartRef__":true,"id":398},"chunkOwner":{"__isSmartRef__":true,"id":395},"_id":"_5931","storedString":"accessibleInInactiveWindow ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"398":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"399":{"style":{"__isSmartRef__":true,"id":400},"chunkOwner":{"__isSmartRef__":true,"id":395},"_id":"_5932","storedString":"true","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"400":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"401":{"morph":{"__isSmartRef__":true,"id":395},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"402":{"onMouseDown":{"__isSmartRef__":true,"id":403}},"403":{"varMapping":{"__isSmartRef__":true,"id":404},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":409},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"404":{"this":{"__isSmartRef__":true,"id":395},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":405}},"405":{"$super":{"__isSmartRef__":true,"id":406}},"406":{"varMapping":{"__isSmartRef__":true,"id":407},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":408},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"407":{"obj":{"__isSmartRef__":true,"id":395},"name":"onMouseDown"},"408":{},"409":{},"410":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"411":{"morph":{"__isSmartRef__":true,"id":381},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"412":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":413}},"413":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":381},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"414":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"415":{"morph":{"__isSmartRef__":true,"id":380},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"416":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":417}},"417":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":418},"spacing":0,"container":{"__isSmartRef__":true,"id":380},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"418":{"top":0,"right":0,"bottom":0,"left":0},"419":{"onSelect":{"__isSmartRef__":true,"id":420},"onUpdate":{"__isSmartRef__":true,"id":423}},"420":{"varMapping":{"__isSmartRef__":true,"id":421},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":422},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"421":{"this":{"__isSmartRef__":true,"id":378}},"422":{},"423":{"varMapping":{"__isSmartRef__":true,"id":424},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":425},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"424":{"this":{"__isSmartRef__":true,"id":378}},"425":{},"426":{"data":true,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"allowInput","description":"true","attributeConnections":[{"__isSmartRef__":true,"id":427}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":467}},"427":{"sourceObj":{"__isSmartRef__":true,"id":426},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":428},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"428":{"item":{"__isSmartRef__":true,"id":426},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":429}],"scripts":[],"shape":{"__isSmartRef__":true,"id":462},"eventHandler":{"__isSmartRef__":true,"id":463},"_ClipMode":"visible","derivationIds":[],"id":"230D21D8-B158-4DD9-BAB8-3B782F10054E","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":464},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":430},"label":{"__isSmartRef__":true,"id":443},"node":{"__isSmartRef__":true,"id":429},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,20.0)"},"429":{"submorphs":[{"__isSmartRef__":true,"id":430},{"__isSmartRef__":true,"id":443}],"scripts":[],"shape":{"__isSmartRef__":true,"id":458},"eventHandler":{"__isSmartRef__":true,"id":459},"_ClipMode":"visible","derivationIds":[],"id":"53E707E2-8EB9-4B7E-AADF-90D435ECBC6C","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":460},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":428},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"430":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":431},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":432}],"eventHandler":{"__isSmartRef__":true,"id":434},"_ClipMode":"visible","derivationIds":[],"id":"D2ECDA62-5E53-4545-9568-F24A5D936227","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":429},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":435},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"431":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"432":{"style":{"__isSmartRef__":true,"id":433},"chunkOwner":{"__isSmartRef__":true,"id":430},"_id":"_5934","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"433":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"434":{"morph":{"__isSmartRef__":true,"id":430},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"435":{"onMouseDown":{"__isSmartRef__":true,"id":436}},"436":{"varMapping":{"__isSmartRef__":true,"id":437},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":442},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"437":{"this":{"__isSmartRef__":true,"id":430},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":438}},"438":{"$super":{"__isSmartRef__":true,"id":439}},"439":{"varMapping":{"__isSmartRef__":true,"id":440},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":441},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"440":{"obj":{"__isSmartRef__":true,"id":430},"name":"onMouseDown"},"441":{},"442":{},"443":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":444},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":445},{"__isSmartRef__":true,"id":447}],"eventHandler":{"__isSmartRef__":true,"id":449},"_ClipMode":"visible","derivationIds":[],"id":"436CD5EB-9B76-4187-BE79-95BED78D17AC","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":429},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":450},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"444":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(97.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"445":{"style":{"__isSmartRef__":true,"id":446},"chunkOwner":{"__isSmartRef__":true,"id":443},"_id":"_5936","storedString":"allowInput ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"446":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"447":{"style":{"__isSmartRef__":true,"id":448},"chunkOwner":{"__isSmartRef__":true,"id":443},"_id":"_5937","storedString":"true","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"448":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"449":{"morph":{"__isSmartRef__":true,"id":443},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"450":{"onMouseDown":{"__isSmartRef__":true,"id":451}},"451":{"varMapping":{"__isSmartRef__":true,"id":452},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":457},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"452":{"this":{"__isSmartRef__":true,"id":443},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":453}},"453":{"$super":{"__isSmartRef__":true,"id":454}},"454":{"varMapping":{"__isSmartRef__":true,"id":455},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":456},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"455":{"obj":{"__isSmartRef__":true,"id":443},"name":"onMouseDown"},"456":{},"457":{},"458":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"459":{"morph":{"__isSmartRef__":true,"id":429},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"460":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":461}},"461":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":429},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"462":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"463":{"morph":{"__isSmartRef__":true,"id":428},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"464":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":465}},"465":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":466},"spacing":0,"container":{"__isSmartRef__":true,"id":428},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"466":{"top":0,"right":0,"bottom":0,"left":0},"467":{"onSelect":{"__isSmartRef__":true,"id":468},"onUpdate":{"__isSmartRef__":true,"id":471}},"468":{"varMapping":{"__isSmartRef__":true,"id":469},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":470},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"469":{"this":{"__isSmartRef__":true,"id":426}},"470":{},"471":{"varMapping":{"__isSmartRef__":true,"id":472},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":473},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"472":{"this":{"__isSmartRef__":true,"id":426}},"473":{},"474":{"data":"","inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"charsReplaced","description":"","attributeConnections":[{"__isSmartRef__":true,"id":475}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":513}},"475":{"sourceObj":{"__isSmartRef__":true,"id":474},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":476},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"476":{"item":{"__isSmartRef__":true,"id":474},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":477}],"scripts":[],"shape":{"__isSmartRef__":true,"id":508},"eventHandler":{"__isSmartRef__":true,"id":509},"_ClipMode":"visible","derivationIds":[],"id":"C76C0099-309C-46A6-BA3E-6EBA44221B58","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":510},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":478},"label":{"__isSmartRef__":true,"id":491},"node":{"__isSmartRef__":true,"id":477},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,40.0)"},"477":{"submorphs":[{"__isSmartRef__":true,"id":478},{"__isSmartRef__":true,"id":491}],"scripts":[],"shape":{"__isSmartRef__":true,"id":504},"eventHandler":{"__isSmartRef__":true,"id":505},"_ClipMode":"visible","derivationIds":[],"id":"D71CAA57-33A0-4E35-B6DE-A489AAA5AA59","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":506},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":476},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"478":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":479},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":480}],"eventHandler":{"__isSmartRef__":true,"id":482},"_ClipMode":"visible","derivationIds":[],"id":"9FE8D7A2-CE5A-4420-A053-996084483C25","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":477},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":483},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"479":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"480":{"style":{"__isSmartRef__":true,"id":481},"chunkOwner":{"__isSmartRef__":true,"id":478},"_id":"_5944","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"481":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"482":{"morph":{"__isSmartRef__":true,"id":478},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"483":{"onMouseDown":{"__isSmartRef__":true,"id":484}},"484":{"varMapping":{"__isSmartRef__":true,"id":485},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":490},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"485":{"this":{"__isSmartRef__":true,"id":478},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":486}},"486":{"$super":{"__isSmartRef__":true,"id":487}},"487":{"varMapping":{"__isSmartRef__":true,"id":488},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":489},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"488":{"obj":{"__isSmartRef__":true,"id":478},"name":"onMouseDown"},"489":{},"490":{},"491":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":492},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":493}],"eventHandler":{"__isSmartRef__":true,"id":495},"_ClipMode":"visible","derivationIds":[],"id":"28A7E3E7-77B1-4E1E-9945-FA1BFEDDCA8F","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":477},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":496},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"492":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(95.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"493":{"style":{"__isSmartRef__":true,"id":494},"chunkOwner":{"__isSmartRef__":true,"id":491},"_id":"_5946","storedString":"charsReplaced","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"494":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"495":{"morph":{"__isSmartRef__":true,"id":491},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"496":{"onMouseDown":{"__isSmartRef__":true,"id":497}},"497":{"varMapping":{"__isSmartRef__":true,"id":498},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":503},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"498":{"this":{"__isSmartRef__":true,"id":491},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":499}},"499":{"$super":{"__isSmartRef__":true,"id":500}},"500":{"varMapping":{"__isSmartRef__":true,"id":501},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":502},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"501":{"obj":{"__isSmartRef__":true,"id":491},"name":"onMouseDown"},"502":{},"503":{},"504":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"505":{"morph":{"__isSmartRef__":true,"id":477},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"506":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":507}},"507":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":477},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"508":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"509":{"morph":{"__isSmartRef__":true,"id":476},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"510":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":511}},"511":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":512},"spacing":0,"container":{"__isSmartRef__":true,"id":476},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"512":{"top":0,"right":0,"bottom":0,"left":0},"513":{"onSelect":{"__isSmartRef__":true,"id":514},"onUpdate":{"__isSmartRef__":true,"id":517}},"514":{"varMapping":{"__isSmartRef__":true,"id":515},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":516},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"515":{"this":{"__isSmartRef__":true,"id":474}},"516":{},"517":{"varMapping":{"__isSmartRef__":true,"id":518},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":519},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"518":{"this":{"__isSmartRef__":true,"id":474}},"519":{},"520":{"data":"","inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"charsTyped","description":"","attributeConnections":[{"__isSmartRef__":true,"id":521}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":559}},"521":{"sourceObj":{"__isSmartRef__":true,"id":520},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":522},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"522":{"item":{"__isSmartRef__":true,"id":520},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":523}],"scripts":[],"shape":{"__isSmartRef__":true,"id":554},"eventHandler":{"__isSmartRef__":true,"id":555},"_ClipMode":"visible","derivationIds":[],"id":"22C6158B-858F-46D6-99E1-55205C494B43","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":556},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":524},"label":{"__isSmartRef__":true,"id":537},"node":{"__isSmartRef__":true,"id":523},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,60.0)"},"523":{"submorphs":[{"__isSmartRef__":true,"id":524},{"__isSmartRef__":true,"id":537}],"scripts":[],"shape":{"__isSmartRef__":true,"id":550},"eventHandler":{"__isSmartRef__":true,"id":551},"_ClipMode":"visible","derivationIds":[],"id":"E1EAA7FB-E50C-4879-B037-5EBCBDF964A6","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":552},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":522},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"524":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":525},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":526}],"eventHandler":{"__isSmartRef__":true,"id":528},"_ClipMode":"visible","derivationIds":[],"id":"A40616E8-3D2A-4C8F-AAFE-CA9EDBC4C723","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":523},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":529},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"525":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"526":{"style":{"__isSmartRef__":true,"id":527},"chunkOwner":{"__isSmartRef__":true,"id":524},"_id":"_5948","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"527":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"528":{"morph":{"__isSmartRef__":true,"id":524},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"529":{"onMouseDown":{"__isSmartRef__":true,"id":530}},"530":{"varMapping":{"__isSmartRef__":true,"id":531},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":536},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"531":{"this":{"__isSmartRef__":true,"id":524},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":532}},"532":{"$super":{"__isSmartRef__":true,"id":533}},"533":{"varMapping":{"__isSmartRef__":true,"id":534},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":535},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"534":{"obj":{"__isSmartRef__":true,"id":524},"name":"onMouseDown"},"535":{},"536":{},"537":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":538},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":539}],"eventHandler":{"__isSmartRef__":true,"id":541},"_ClipMode":"visible","derivationIds":[],"id":"6D6BDBE4-1F1C-41F3-A226-7D5241C575D7","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":523},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":542},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"538":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(76.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"539":{"style":{"__isSmartRef__":true,"id":540},"chunkOwner":{"__isSmartRef__":true,"id":537},"_id":"_5950","storedString":"charsTyped","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"540":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"541":{"morph":{"__isSmartRef__":true,"id":537},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"542":{"onMouseDown":{"__isSmartRef__":true,"id":543}},"543":{"varMapping":{"__isSmartRef__":true,"id":544},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":549},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"544":{"this":{"__isSmartRef__":true,"id":537},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":545}},"545":{"$super":{"__isSmartRef__":true,"id":546}},"546":{"varMapping":{"__isSmartRef__":true,"id":547},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":548},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"547":{"obj":{"__isSmartRef__":true,"id":537},"name":"onMouseDown"},"548":{},"549":{},"550":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"551":{"morph":{"__isSmartRef__":true,"id":523},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"552":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":553}},"553":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":523},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"554":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"555":{"morph":{"__isSmartRef__":true,"id":522},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"556":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":557}},"557":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":558},"spacing":0,"container":{"__isSmartRef__":true,"id":522},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"558":{"top":0,"right":0,"bottom":0,"left":0},"559":{"onSelect":{"__isSmartRef__":true,"id":560},"onUpdate":{"__isSmartRef__":true,"id":563}},"560":{"varMapping":{"__isSmartRef__":true,"id":561},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":562},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"561":{"this":{"__isSmartRef__":true,"id":520}},"562":{},"563":{"varMapping":{"__isSmartRef__":true,"id":564},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":565},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"564":{"this":{"__isSmartRef__":true,"id":520}},"565":{},"566":{"data":["BF9226CC-4A7A-4731-A56A-E55E4652B912"],"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"derivationIds","description":"[...]","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":567}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":607}},"567":{"sourceObj":{"__isSmartRef__":true,"id":566},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":568},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"568":{"item":{"__isSmartRef__":true,"id":566},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":569}],"scripts":[],"shape":{"__isSmartRef__":true,"id":602},"eventHandler":{"__isSmartRef__":true,"id":603},"_ClipMode":"visible","derivationIds":[],"id":"CFC5976A-A749-4E78-938B-8E439B5901ED","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":604},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":570},"label":{"__isSmartRef__":true,"id":583},"node":{"__isSmartRef__":true,"id":569},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,80.0)"},"569":{"submorphs":[{"__isSmartRef__":true,"id":570},{"__isSmartRef__":true,"id":583}],"scripts":[],"shape":{"__isSmartRef__":true,"id":598},"eventHandler":{"__isSmartRef__":true,"id":599},"_ClipMode":"visible","derivationIds":[],"id":"05A7FDBA-0376-4406-A97A-B4B5D9AEC63D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":600},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":568},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"570":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":571},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":572}],"eventHandler":{"__isSmartRef__":true,"id":574},"_ClipMode":"visible","derivationIds":[],"id":"67BB4EB8-5812-4CC7-9125-0A9CDF1F09EC","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":569},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":575},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"571":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"572":{"style":{"__isSmartRef__":true,"id":573},"chunkOwner":{"__isSmartRef__":true,"id":570},"_id":"_5952","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"573":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"574":{"morph":{"__isSmartRef__":true,"id":570},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"575":{"onMouseDown":{"__isSmartRef__":true,"id":576}},"576":{"varMapping":{"__isSmartRef__":true,"id":577},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":582},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"577":{"this":{"__isSmartRef__":true,"id":570},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":578}},"578":{"$super":{"__isSmartRef__":true,"id":579}},"579":{"varMapping":{"__isSmartRef__":true,"id":580},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":581},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"580":{"obj":{"__isSmartRef__":true,"id":570},"name":"onMouseDown"},"581":{},"582":{},"583":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":584},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":585},{"__isSmartRef__":true,"id":587}],"eventHandler":{"__isSmartRef__":true,"id":589},"_ClipMode":"visible","derivationIds":[],"id":"2BAA793E-CF59-458E-A12A-2D0CB36D7DA3","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":569},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":590},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"584":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(110.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"585":{"style":{"__isSmartRef__":true,"id":586},"chunkOwner":{"__isSmartRef__":true,"id":583},"_id":"_5954","storedString":"derivationIds ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"586":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"587":{"style":{"__isSmartRef__":true,"id":588},"chunkOwner":{"__isSmartRef__":true,"id":583},"_id":"_5955","storedString":"[...]","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"588":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"589":{"morph":{"__isSmartRef__":true,"id":583},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"590":{"onMouseDown":{"__isSmartRef__":true,"id":591}},"591":{"varMapping":{"__isSmartRef__":true,"id":592},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":597},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"592":{"this":{"__isSmartRef__":true,"id":583},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":593}},"593":{"$super":{"__isSmartRef__":true,"id":594}},"594":{"varMapping":{"__isSmartRef__":true,"id":595},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":596},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"595":{"obj":{"__isSmartRef__":true,"id":583},"name":"onMouseDown"},"596":{},"597":{},"598":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"599":{"morph":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"600":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":601}},"601":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":569},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"602":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"603":{"morph":{"__isSmartRef__":true,"id":568},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"604":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":605}},"605":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":606},"spacing":0,"container":{"__isSmartRef__":true,"id":568},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"606":{"top":0,"right":0,"bottom":0,"left":0},"607":{"onSelect":{"__isSmartRef__":true,"id":608},"onExpand":{"__isSmartRef__":true,"id":611},"onUpdateChildren":{"__isSmartRef__":true,"id":614},"onUpdate":{"__isSmartRef__":true,"id":617}},"608":{"varMapping":{"__isSmartRef__":true,"id":609},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":610},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"609":{"this":{"__isSmartRef__":true,"id":566}},"610":{},"611":{"varMapping":{"__isSmartRef__":true,"id":612},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":613},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"612":{"this":{"__isSmartRef__":true,"id":566}},"613":{},"614":{"varMapping":{"__isSmartRef__":true,"id":615},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":616},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"615":{"this":{"__isSmartRef__":true,"id":566}},"616":{},"617":{"varMapping":{"__isSmartRef__":true,"id":618},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":619},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"618":{"this":{"__isSmartRef__":true,"id":566}},"619":{},"620":{"__serializedExpressions__":["data"],"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"distanceToDragEvent","description":"Point","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":621}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":661},"data":"lively.pt(342.0,-14.0)"},"621":{"sourceObj":{"__isSmartRef__":true,"id":620},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":622},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"622":{"item":{"__isSmartRef__":true,"id":620},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":623}],"scripts":[],"shape":{"__isSmartRef__":true,"id":656},"eventHandler":{"__isSmartRef__":true,"id":657},"_ClipMode":"visible","derivationIds":[],"id":"509373A0-B664-4620-8452-BCFF4A3F3A39","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":658},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":624},"label":{"__isSmartRef__":true,"id":637},"node":{"__isSmartRef__":true,"id":623},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,100.0)"},"623":{"submorphs":[{"__isSmartRef__":true,"id":624},{"__isSmartRef__":true,"id":637}],"scripts":[],"shape":{"__isSmartRef__":true,"id":652},"eventHandler":{"__isSmartRef__":true,"id":653},"_ClipMode":"visible","derivationIds":[],"id":"107A0D11-48DB-4B4D-A9D9-4D816BBF1CA1","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":654},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":622},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"624":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":625},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":626}],"eventHandler":{"__isSmartRef__":true,"id":628},"_ClipMode":"visible","derivationIds":[],"id":"998A1C43-8BBC-43F8-B421-8AA200CD4AD3","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":623},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":629},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"625":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"626":{"style":{"__isSmartRef__":true,"id":627},"chunkOwner":{"__isSmartRef__":true,"id":624},"_id":"_5957","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"627":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"628":{"morph":{"__isSmartRef__":true,"id":624},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"629":{"onMouseDown":{"__isSmartRef__":true,"id":630}},"630":{"varMapping":{"__isSmartRef__":true,"id":631},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":636},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"631":{"this":{"__isSmartRef__":true,"id":624},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":632}},"632":{"$super":{"__isSmartRef__":true,"id":633}},"633":{"varMapping":{"__isSmartRef__":true,"id":634},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":635},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"634":{"obj":{"__isSmartRef__":true,"id":624},"name":"onMouseDown"},"635":{},"636":{},"637":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":638},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":639},{"__isSmartRef__":true,"id":641}],"eventHandler":{"__isSmartRef__":true,"id":643},"_ClipMode":"visible","derivationIds":[],"id":"336FB88B-4DE3-4AA4-8A08-C1081220C1CC","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":623},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":644},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"638":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(172.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"639":{"style":{"__isSmartRef__":true,"id":640},"chunkOwner":{"__isSmartRef__":true,"id":637},"_id":"_5959","storedString":"distanceToDragEvent ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"640":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"641":{"style":{"__isSmartRef__":true,"id":642},"chunkOwner":{"__isSmartRef__":true,"id":637},"_id":"_5960","storedString":"Point","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"642":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"643":{"morph":{"__isSmartRef__":true,"id":637},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"644":{"onMouseDown":{"__isSmartRef__":true,"id":645}},"645":{"varMapping":{"__isSmartRef__":true,"id":646},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":651},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"646":{"this":{"__isSmartRef__":true,"id":637},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":647}},"647":{"$super":{"__isSmartRef__":true,"id":648}},"648":{"varMapping":{"__isSmartRef__":true,"id":649},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":650},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"649":{"obj":{"__isSmartRef__":true,"id":637},"name":"onMouseDown"},"650":{},"651":{},"652":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"653":{"morph":{"__isSmartRef__":true,"id":623},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"654":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":655}},"655":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":623},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"656":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"657":{"morph":{"__isSmartRef__":true,"id":622},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"658":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":659}},"659":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":660},"spacing":0,"container":{"__isSmartRef__":true,"id":622},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"660":{"top":0,"right":0,"bottom":0,"left":0},"661":{"onSelect":{"__isSmartRef__":true,"id":662},"onExpand":{"__isSmartRef__":true,"id":665},"onUpdateChildren":{"__isSmartRef__":true,"id":668},"onUpdate":{"__isSmartRef__":true,"id":671}},"662":{"varMapping":{"__isSmartRef__":true,"id":663},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":664},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"663":{"this":{"__isSmartRef__":true,"id":620}},"664":{},"665":{"varMapping":{"__isSmartRef__":true,"id":666},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":667},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"666":{"this":{"__isSmartRef__":true,"id":620}},"667":{},"668":{"varMapping":{"__isSmartRef__":true,"id":669},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":670},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"669":{"this":{"__isSmartRef__":true,"id":620}},"670":{},"671":{"varMapping":{"__isSmartRef__":true,"id":672},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":673},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"672":{"this":{"__isSmartRef__":true,"id":620}},"673":{},"674":{"data":["parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors"],"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"doNotSerialize","description":"[...]","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":675}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":715}},"675":{"sourceObj":{"__isSmartRef__":true,"id":674},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":676},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"676":{"item":{"__isSmartRef__":true,"id":674},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":677}],"scripts":[],"shape":{"__isSmartRef__":true,"id":710},"eventHandler":{"__isSmartRef__":true,"id":711},"_ClipMode":"visible","derivationIds":[],"id":"387094C0-A7E6-445A-A8A6-996E730DAC3A","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":712},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":678},"label":{"__isSmartRef__":true,"id":691},"node":{"__isSmartRef__":true,"id":677},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,120.0)"},"677":{"submorphs":[{"__isSmartRef__":true,"id":678},{"__isSmartRef__":true,"id":691}],"scripts":[],"shape":{"__isSmartRef__":true,"id":706},"eventHandler":{"__isSmartRef__":true,"id":707},"_ClipMode":"visible","derivationIds":[],"id":"AF07663F-8877-4A10-8EE0-80FD257AB275","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":708},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":676},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"678":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":679},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":680}],"eventHandler":{"__isSmartRef__":true,"id":682},"_ClipMode":"visible","derivationIds":[],"id":"A752968A-24C6-43A6-860F-4446C2BFD535","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":677},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":683},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"679":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"680":{"style":{"__isSmartRef__":true,"id":681},"chunkOwner":{"__isSmartRef__":true,"id":678},"_id":"_5962","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"681":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"682":{"morph":{"__isSmartRef__":true,"id":678},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"683":{"onMouseDown":{"__isSmartRef__":true,"id":684}},"684":{"varMapping":{"__isSmartRef__":true,"id":685},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":690},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"685":{"this":{"__isSmartRef__":true,"id":678},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":686}},"686":{"$super":{"__isSmartRef__":true,"id":687}},"687":{"varMapping":{"__isSmartRef__":true,"id":688},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":689},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"688":{"obj":{"__isSmartRef__":true,"id":678},"name":"onMouseDown"},"689":{},"690":{},"691":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":692},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":693},{"__isSmartRef__":true,"id":695}],"eventHandler":{"__isSmartRef__":true,"id":697},"_ClipMode":"visible","derivationIds":[],"id":"5C74D1B9-E70F-4DC6-98E1-D5B792342D08","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":677},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":698},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"692":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(121.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"693":{"style":{"__isSmartRef__":true,"id":694},"chunkOwner":{"__isSmartRef__":true,"id":691},"_id":"_5964","storedString":"doNotSerialize ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"694":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"695":{"style":{"__isSmartRef__":true,"id":696},"chunkOwner":{"__isSmartRef__":true,"id":691},"_id":"_5965","storedString":"[...]","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"696":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"697":{"morph":{"__isSmartRef__":true,"id":691},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"698":{"onMouseDown":{"__isSmartRef__":true,"id":699}},"699":{"varMapping":{"__isSmartRef__":true,"id":700},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":705},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"700":{"this":{"__isSmartRef__":true,"id":691},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":701}},"701":{"$super":{"__isSmartRef__":true,"id":702}},"702":{"varMapping":{"__isSmartRef__":true,"id":703},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":704},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"703":{"obj":{"__isSmartRef__":true,"id":691},"name":"onMouseDown"},"704":{},"705":{},"706":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"707":{"morph":{"__isSmartRef__":true,"id":677},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"708":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":709}},"709":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":677},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"710":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"711":{"morph":{"__isSmartRef__":true,"id":676},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"712":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":713}},"713":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":714},"spacing":0,"container":{"__isSmartRef__":true,"id":676},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"714":{"top":0,"right":0,"bottom":0,"left":0},"715":{"onSelect":{"__isSmartRef__":true,"id":716},"onExpand":{"__isSmartRef__":true,"id":719},"onUpdateChildren":{"__isSmartRef__":true,"id":722},"onUpdate":{"__isSmartRef__":true,"id":725}},"716":{"varMapping":{"__isSmartRef__":true,"id":717},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":718},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"717":{"this":{"__isSmartRef__":true,"id":674}},"718":{},"719":{"varMapping":{"__isSmartRef__":true,"id":720},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":721},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"720":{"this":{"__isSmartRef__":true,"id":674}},"721":{},"722":{"varMapping":{"__isSmartRef__":true,"id":723},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":724},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"723":{"this":{"__isSmartRef__":true,"id":674}},"724":{},"725":{"varMapping":{"__isSmartRef__":true,"id":726},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":727},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"726":{"this":{"__isSmartRef__":true,"id":674}},"727":{},"728":{"data":false,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"droppingEnabled","description":"false","attributeConnections":[{"__isSmartRef__":true,"id":729}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":769}},"729":{"sourceObj":{"__isSmartRef__":true,"id":728},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":730},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"730":{"item":{"__isSmartRef__":true,"id":728},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":731}],"scripts":[],"shape":{"__isSmartRef__":true,"id":764},"eventHandler":{"__isSmartRef__":true,"id":765},"_ClipMode":"visible","derivationIds":[],"id":"4A7DA16E-F7FD-4451-8860-DDF266E0D650","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":766},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":732},"label":{"__isSmartRef__":true,"id":745},"node":{"__isSmartRef__":true,"id":731},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,140.0)"},"731":{"submorphs":[{"__isSmartRef__":true,"id":732},{"__isSmartRef__":true,"id":745}],"scripts":[],"shape":{"__isSmartRef__":true,"id":760},"eventHandler":{"__isSmartRef__":true,"id":761},"_ClipMode":"visible","derivationIds":[],"id":"56F8933B-EB57-4E64-89D5-B80D23EC1C8E","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":762},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":730},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"732":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":733},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":734}],"eventHandler":{"__isSmartRef__":true,"id":736},"_ClipMode":"visible","derivationIds":[],"id":"AFDD16AA-FBF5-49B5-BC59-797CC1E77ACB","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":731},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":737},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"733":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"734":{"style":{"__isSmartRef__":true,"id":735},"chunkOwner":{"__isSmartRef__":true,"id":732},"_id":"_5967","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"735":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"736":{"morph":{"__isSmartRef__":true,"id":732},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"737":{"onMouseDown":{"__isSmartRef__":true,"id":738}},"738":{"varMapping":{"__isSmartRef__":true,"id":739},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":744},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"739":{"this":{"__isSmartRef__":true,"id":732},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":740}},"740":{"$super":{"__isSmartRef__":true,"id":741}},"741":{"varMapping":{"__isSmartRef__":true,"id":742},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":743},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"742":{"obj":{"__isSmartRef__":true,"id":732},"name":"onMouseDown"},"743":{},"744":{},"745":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":746},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":747},{"__isSmartRef__":true,"id":749}],"eventHandler":{"__isSmartRef__":true,"id":751},"_ClipMode":"visible","derivationIds":[],"id":"DB264F6C-79C4-4AA0-B701-5F6D42035C50","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":731},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":752},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"746":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(140.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"747":{"style":{"__isSmartRef__":true,"id":748},"chunkOwner":{"__isSmartRef__":true,"id":745},"_id":"_5969","storedString":"droppingEnabled ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"748":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"749":{"style":{"__isSmartRef__":true,"id":750},"chunkOwner":{"__isSmartRef__":true,"id":745},"_id":"_5970","storedString":"false","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"750":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"751":{"morph":{"__isSmartRef__":true,"id":745},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"752":{"onMouseDown":{"__isSmartRef__":true,"id":753}},"753":{"varMapping":{"__isSmartRef__":true,"id":754},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":759},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"754":{"this":{"__isSmartRef__":true,"id":745},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":755}},"755":{"$super":{"__isSmartRef__":true,"id":756}},"756":{"varMapping":{"__isSmartRef__":true,"id":757},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":758},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"757":{"obj":{"__isSmartRef__":true,"id":745},"name":"onMouseDown"},"758":{},"759":{},"760":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"761":{"morph":{"__isSmartRef__":true,"id":731},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"762":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":763}},"763":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":731},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"764":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"765":{"morph":{"__isSmartRef__":true,"id":730},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"766":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":767}},"767":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":768},"spacing":0,"container":{"__isSmartRef__":true,"id":730},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"768":{"top":0,"right":0,"bottom":0,"left":0},"769":{"onSelect":{"__isSmartRef__":true,"id":770},"onUpdate":{"__isSmartRef__":true,"id":773}},"770":{"varMapping":{"__isSmartRef__":true,"id":771},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":772},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"771":{"this":{"__isSmartRef__":true,"id":728}},"772":{},"773":{"varMapping":{"__isSmartRef__":true,"id":774},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":775},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"774":{"this":{"__isSmartRef__":true,"id":728}},"775":{},"776":{"data":[{"__isSmartRef__":true,"id":358},{"__isSmartRef__":true,"id":359},{"__isSmartRef__":true,"id":360},{"__isSmartRef__":true,"id":364}],"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"elements","description":"[...]","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":777}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":817}},"777":{"sourceObj":{"__isSmartRef__":true,"id":776},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":778},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"778":{"item":{"__isSmartRef__":true,"id":776},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":779}],"scripts":[],"shape":{"__isSmartRef__":true,"id":812},"eventHandler":{"__isSmartRef__":true,"id":813},"_ClipMode":"visible","derivationIds":[],"id":"C8531DEA-E079-4214-ADDC-77A65F3DB940","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":814},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":780},"label":{"__isSmartRef__":true,"id":793},"node":{"__isSmartRef__":true,"id":779},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,160.0)"},"779":{"submorphs":[{"__isSmartRef__":true,"id":780},{"__isSmartRef__":true,"id":793}],"scripts":[],"shape":{"__isSmartRef__":true,"id":808},"eventHandler":{"__isSmartRef__":true,"id":809},"_ClipMode":"visible","derivationIds":[],"id":"5F57EA20-F9BA-45DD-A0E0-4E287198CCE9","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":810},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":778},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"780":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":781},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":782}],"eventHandler":{"__isSmartRef__":true,"id":784},"_ClipMode":"visible","derivationIds":[],"id":"C3E96F67-2C8F-4174-B763-C7963A98025F","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":779},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":785},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"781":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"782":{"style":{"__isSmartRef__":true,"id":783},"chunkOwner":{"__isSmartRef__":true,"id":780},"_id":"_12155","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"783":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"784":{"morph":{"__isSmartRef__":true,"id":780},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"785":{"onMouseDown":{"__isSmartRef__":true,"id":786}},"786":{"varMapping":{"__isSmartRef__":true,"id":787},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":792},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"787":{"this":{"__isSmartRef__":true,"id":780},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":788}},"788":{"$super":{"__isSmartRef__":true,"id":789}},"789":{"varMapping":{"__isSmartRef__":true,"id":790},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":791},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"790":{"obj":{"__isSmartRef__":true,"id":780},"name":"onMouseDown"},"791":{},"792":{},"793":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":794},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":795},{"__isSmartRef__":true,"id":797}],"eventHandler":{"__isSmartRef__":true,"id":799},"_ClipMode":"visible","derivationIds":[],"id":"0C4165AE-96A8-4597-B66B-871422EA1A57","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":779},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":800},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"794":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(89.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"795":{"style":{"__isSmartRef__":true,"id":796},"chunkOwner":{"__isSmartRef__":true,"id":793},"_id":"_12157","storedString":"elements ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"796":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"797":{"style":{"__isSmartRef__":true,"id":798},"chunkOwner":{"__isSmartRef__":true,"id":793},"_id":"_12158","storedString":"[...]","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"798":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"799":{"morph":{"__isSmartRef__":true,"id":793},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"800":{"onMouseDown":{"__isSmartRef__":true,"id":801}},"801":{"varMapping":{"__isSmartRef__":true,"id":802},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":807},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"802":{"this":{"__isSmartRef__":true,"id":793},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":803}},"803":{"$super":{"__isSmartRef__":true,"id":804}},"804":{"varMapping":{"__isSmartRef__":true,"id":805},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":806},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"805":{"obj":{"__isSmartRef__":true,"id":793},"name":"onMouseDown"},"806":{},"807":{},"808":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"809":{"morph":{"__isSmartRef__":true,"id":779},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"810":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":811}},"811":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":779},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"812":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"813":{"morph":{"__isSmartRef__":true,"id":778},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"814":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":815}},"815":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":816},"spacing":0,"container":{"__isSmartRef__":true,"id":778},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"816":{"top":0,"right":0,"bottom":0,"left":0},"817":{"onSelect":{"__isSmartRef__":true,"id":818},"onExpand":{"__isSmartRef__":true,"id":821},"onUpdateChildren":{"__isSmartRef__":true,"id":824},"onUpdate":{"__isSmartRef__":true,"id":827}},"818":{"varMapping":{"__isSmartRef__":true,"id":819},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":820},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"819":{"this":{"__isSmartRef__":true,"id":776}},"820":{},"821":{"varMapping":{"__isSmartRef__":true,"id":822},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":823},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"822":{"this":{"__isSmartRef__":true,"id":776}},"823":{},"824":{"varMapping":{"__isSmartRef__":true,"id":825},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":826},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"825":{"this":{"__isSmartRef__":true,"id":776}},"826":{},"827":{"varMapping":{"__isSmartRef__":true,"id":828},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":829},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"828":{"this":{"__isSmartRef__":true,"id":776}},"829":{},"830":{"data":false,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"evalEnabled","description":"false","attributeConnections":[{"__isSmartRef__":true,"id":831}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":871}},"831":{"sourceObj":{"__isSmartRef__":true,"id":830},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":832},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"832":{"item":{"__isSmartRef__":true,"id":830},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":833}],"scripts":[],"shape":{"__isSmartRef__":true,"id":866},"eventHandler":{"__isSmartRef__":true,"id":867},"_ClipMode":"visible","derivationIds":[],"id":"0DEFD243-2A70-4123-9DB1-9A6220CBC1C4","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":868},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":834},"label":{"__isSmartRef__":true,"id":847},"node":{"__isSmartRef__":true,"id":833},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,180.0)"},"833":{"submorphs":[{"__isSmartRef__":true,"id":834},{"__isSmartRef__":true,"id":847}],"scripts":[],"shape":{"__isSmartRef__":true,"id":862},"eventHandler":{"__isSmartRef__":true,"id":863},"_ClipMode":"visible","derivationIds":[],"id":"F26A09CF-EBF7-4005-BD3F-F1A6D561EF55","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":864},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":832},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"834":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":835},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":836}],"eventHandler":{"__isSmartRef__":true,"id":838},"_ClipMode":"visible","derivationIds":[],"id":"10C955C6-415B-49C4-B097-9AFDED295430","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":833},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":839},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"835":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"836":{"style":{"__isSmartRef__":true,"id":837},"chunkOwner":{"__isSmartRef__":true,"id":834},"_id":"_5972","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"837":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"838":{"morph":{"__isSmartRef__":true,"id":834},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"839":{"onMouseDown":{"__isSmartRef__":true,"id":840}},"840":{"varMapping":{"__isSmartRef__":true,"id":841},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":846},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"841":{"this":{"__isSmartRef__":true,"id":834},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":842}},"842":{"$super":{"__isSmartRef__":true,"id":843}},"843":{"varMapping":{"__isSmartRef__":true,"id":844},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":845},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"844":{"obj":{"__isSmartRef__":true,"id":834},"name":"onMouseDown"},"845":{},"846":{},"847":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":848},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":849},{"__isSmartRef__":true,"id":851}],"eventHandler":{"__isSmartRef__":true,"id":853},"_ClipMode":"visible","derivationIds":[],"id":"FCDEBEF2-ACA4-4172-ACC2-99DD134B9FAF","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":833},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":854},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"848":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(115.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"849":{"style":{"__isSmartRef__":true,"id":850},"chunkOwner":{"__isSmartRef__":true,"id":847},"_id":"_5974","storedString":"evalEnabled ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"850":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"851":{"style":{"__isSmartRef__":true,"id":852},"chunkOwner":{"__isSmartRef__":true,"id":847},"_id":"_5975","storedString":"false","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"852":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"853":{"morph":{"__isSmartRef__":true,"id":847},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"854":{"onMouseDown":{"__isSmartRef__":true,"id":855}},"855":{"varMapping":{"__isSmartRef__":true,"id":856},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":861},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"856":{"this":{"__isSmartRef__":true,"id":847},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":857}},"857":{"$super":{"__isSmartRef__":true,"id":858}},"858":{"varMapping":{"__isSmartRef__":true,"id":859},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":860},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"859":{"obj":{"__isSmartRef__":true,"id":847},"name":"onMouseDown"},"860":{},"861":{},"862":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"863":{"morph":{"__isSmartRef__":true,"id":833},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"864":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":865}},"865":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":833},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"866":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"867":{"morph":{"__isSmartRef__":true,"id":832},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"868":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":869}},"869":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":870},"spacing":0,"container":{"__isSmartRef__":true,"id":832},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"870":{"top":0,"right":0,"bottom":0,"left":0},"871":{"onSelect":{"__isSmartRef__":true,"id":872},"onUpdate":{"__isSmartRef__":true,"id":875}},"872":{"varMapping":{"__isSmartRef__":true,"id":873},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":874},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"873":{"this":{"__isSmartRef__":true,"id":830}},"874":{},"875":{"varMapping":{"__isSmartRef__":true,"id":876},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":877},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"876":{"this":{"__isSmartRef__":true,"id":830}},"877":{},"878":{"data":{"__isSmartRef__":true,"id":36},"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"eventHandler","description":"EventHandler","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":879}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":919}},"879":{"sourceObj":{"__isSmartRef__":true,"id":878},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":880},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"880":{"item":{"__isSmartRef__":true,"id":878},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":881}],"scripts":[],"shape":{"__isSmartRef__":true,"id":914},"eventHandler":{"__isSmartRef__":true,"id":915},"_ClipMode":"visible","derivationIds":[],"id":"7A5EA10A-3614-443D-80E5-47737AA18EA2","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":916},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":882},"label":{"__isSmartRef__":true,"id":895},"node":{"__isSmartRef__":true,"id":881},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,200.0)"},"881":{"submorphs":[{"__isSmartRef__":true,"id":882},{"__isSmartRef__":true,"id":895}],"scripts":[],"shape":{"__isSmartRef__":true,"id":910},"eventHandler":{"__isSmartRef__":true,"id":911},"_ClipMode":"visible","derivationIds":[],"id":"B716F30C-7554-42DC-A07D-4262EFB6CF8B","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":912},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":880},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"882":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":883},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":884}],"eventHandler":{"__isSmartRef__":true,"id":886},"_ClipMode":"visible","derivationIds":[],"id":"65DD3DF9-A39C-47C4-B98E-7557125CC80F","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":881},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":887},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"883":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"884":{"style":{"__isSmartRef__":true,"id":885},"chunkOwner":{"__isSmartRef__":true,"id":882},"_id":"_5977","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"885":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"886":{"morph":{"__isSmartRef__":true,"id":882},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"887":{"onMouseDown":{"__isSmartRef__":true,"id":888}},"888":{"varMapping":{"__isSmartRef__":true,"id":889},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":894},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"889":{"this":{"__isSmartRef__":true,"id":882},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":890}},"890":{"$super":{"__isSmartRef__":true,"id":891}},"891":{"varMapping":{"__isSmartRef__":true,"id":892},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":893},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"892":{"obj":{"__isSmartRef__":true,"id":882},"name":"onMouseDown"},"893":{},"894":{},"895":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":896},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":897},{"__isSmartRef__":true,"id":899}],"eventHandler":{"__isSmartRef__":true,"id":901},"_ClipMode":"visible","derivationIds":[],"id":"FDC94379-FA4A-4745-AB39-FD14B948C830","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":881},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":902},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"896":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(172.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"897":{"style":{"__isSmartRef__":true,"id":898},"chunkOwner":{"__isSmartRef__":true,"id":895},"_id":"_5979","storedString":"eventHandler ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"898":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"899":{"style":{"__isSmartRef__":true,"id":900},"chunkOwner":{"__isSmartRef__":true,"id":895},"_id":"_5980","storedString":"EventHandler","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"900":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"901":{"morph":{"__isSmartRef__":true,"id":895},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"902":{"onMouseDown":{"__isSmartRef__":true,"id":903}},"903":{"varMapping":{"__isSmartRef__":true,"id":904},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":909},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"904":{"this":{"__isSmartRef__":true,"id":895},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":905}},"905":{"$super":{"__isSmartRef__":true,"id":906}},"906":{"varMapping":{"__isSmartRef__":true,"id":907},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":908},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"907":{"obj":{"__isSmartRef__":true,"id":895},"name":"onMouseDown"},"908":{},"909":{},"910":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"911":{"morph":{"__isSmartRef__":true,"id":881},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"912":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":913}},"913":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":881},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"914":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"915":{"morph":{"__isSmartRef__":true,"id":880},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"916":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":917}},"917":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":918},"spacing":0,"container":{"__isSmartRef__":true,"id":880},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"918":{"top":0,"right":0,"bottom":0,"left":0},"919":{"onSelect":{"__isSmartRef__":true,"id":920},"onExpand":{"__isSmartRef__":true,"id":923},"onUpdateChildren":{"__isSmartRef__":true,"id":926},"onUpdate":{"__isSmartRef__":true,"id":929}},"920":{"varMapping":{"__isSmartRef__":true,"id":921},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":922},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"921":{"this":{"__isSmartRef__":true,"id":878}},"922":{},"923":{"varMapping":{"__isSmartRef__":true,"id":924},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":925},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"924":{"this":{"__isSmartRef__":true,"id":878}},"925":{},"926":{"varMapping":{"__isSmartRef__":true,"id":927},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":928},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"927":{"this":{"__isSmartRef__":true,"id":878}},"928":{},"929":{"varMapping":{"__isSmartRef__":true,"id":930},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":931},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"930":{"this":{"__isSmartRef__":true,"id":878}},"931":{},"932":{"data":true,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"fixedHeight","description":"true","attributeConnections":[{"__isSmartRef__":true,"id":933}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":973}},"933":{"sourceObj":{"__isSmartRef__":true,"id":932},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":934},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"934":{"item":{"__isSmartRef__":true,"id":932},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":935}],"scripts":[],"shape":{"__isSmartRef__":true,"id":968},"eventHandler":{"__isSmartRef__":true,"id":969},"_ClipMode":"visible","derivationIds":[],"id":"23695AE5-A490-45E3-980D-E183C926E7CB","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":970},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":936},"label":{"__isSmartRef__":true,"id":949},"node":{"__isSmartRef__":true,"id":935},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,220.0)"},"935":{"submorphs":[{"__isSmartRef__":true,"id":936},{"__isSmartRef__":true,"id":949}],"scripts":[],"shape":{"__isSmartRef__":true,"id":964},"eventHandler":{"__isSmartRef__":true,"id":965},"_ClipMode":"visible","derivationIds":[],"id":"EBFE7E6B-3D0F-46C1-B64E-CC52E751B341","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":966},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":934},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"936":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":937},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":938}],"eventHandler":{"__isSmartRef__":true,"id":940},"_ClipMode":"visible","derivationIds":[],"id":"B11E6CB2-026C-4437-8CEE-7F6EAA232A1D","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":935},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":941},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"937":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"938":{"style":{"__isSmartRef__":true,"id":939},"chunkOwner":{"__isSmartRef__":true,"id":936},"_id":"_5982","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"939":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"940":{"morph":{"__isSmartRef__":true,"id":936},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"941":{"onMouseDown":{"__isSmartRef__":true,"id":942}},"942":{"varMapping":{"__isSmartRef__":true,"id":943},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":948},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"943":{"this":{"__isSmartRef__":true,"id":936},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":944}},"944":{"$super":{"__isSmartRef__":true,"id":945}},"945":{"varMapping":{"__isSmartRef__":true,"id":946},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":947},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"946":{"obj":{"__isSmartRef__":true,"id":936},"name":"onMouseDown"},"947":{},"948":{},"949":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":950},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":951},{"__isSmartRef__":true,"id":953}],"eventHandler":{"__isSmartRef__":true,"id":955},"_ClipMode":"visible","derivationIds":[],"id":"C2564664-4A05-41AC-946D-701A1E5F9E1F","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":935},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":956},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"950":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(104.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"951":{"style":{"__isSmartRef__":true,"id":952},"chunkOwner":{"__isSmartRef__":true,"id":949},"_id":"_5984","storedString":"fixedHeight ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"952":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"953":{"style":{"__isSmartRef__":true,"id":954},"chunkOwner":{"__isSmartRef__":true,"id":949},"_id":"_5985","storedString":"true","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"954":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"955":{"morph":{"__isSmartRef__":true,"id":949},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"956":{"onMouseDown":{"__isSmartRef__":true,"id":957}},"957":{"varMapping":{"__isSmartRef__":true,"id":958},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":963},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"958":{"this":{"__isSmartRef__":true,"id":949},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":959}},"959":{"$super":{"__isSmartRef__":true,"id":960}},"960":{"varMapping":{"__isSmartRef__":true,"id":961},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":962},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"961":{"obj":{"__isSmartRef__":true,"id":949},"name":"onMouseDown"},"962":{},"963":{},"964":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"965":{"morph":{"__isSmartRef__":true,"id":935},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"966":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":967}},"967":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":935},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"968":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"969":{"morph":{"__isSmartRef__":true,"id":934},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"970":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":971}},"971":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":972},"spacing":0,"container":{"__isSmartRef__":true,"id":934},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"972":{"top":0,"right":0,"bottom":0,"left":0},"973":{"onSelect":{"__isSmartRef__":true,"id":974},"onUpdate":{"__isSmartRef__":true,"id":977}},"974":{"varMapping":{"__isSmartRef__":true,"id":975},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":976},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"975":{"this":{"__isSmartRef__":true,"id":932}},"976":{},"977":{"varMapping":{"__isSmartRef__":true,"id":978},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":979},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"978":{"this":{"__isSmartRef__":true,"id":932}},"979":{},"980":{"data":true,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"fixedWidth","description":"true","attributeConnections":[{"__isSmartRef__":true,"id":981}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1021}},"981":{"sourceObj":{"__isSmartRef__":true,"id":980},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":982},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"982":{"item":{"__isSmartRef__":true,"id":980},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":983}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1016},"eventHandler":{"__isSmartRef__":true,"id":1017},"_ClipMode":"visible","derivationIds":[],"id":"1E9C0710-6583-4437-9602-CCCB3FF952C6","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1018},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":984},"label":{"__isSmartRef__":true,"id":997},"node":{"__isSmartRef__":true,"id":983},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,240.0)"},"983":{"submorphs":[{"__isSmartRef__":true,"id":984},{"__isSmartRef__":true,"id":997}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1012},"eventHandler":{"__isSmartRef__":true,"id":1013},"_ClipMode":"visible","derivationIds":[],"id":"CFFE52D1-B66E-4356-82E3-F1F8079CE4BC","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1014},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":982},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"984":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":985},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":986}],"eventHandler":{"__isSmartRef__":true,"id":988},"_ClipMode":"visible","derivationIds":[],"id":"6E036905-24DD-4214-8251-A7635D5F9152","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":983},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":989},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"985":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"986":{"style":{"__isSmartRef__":true,"id":987},"chunkOwner":{"__isSmartRef__":true,"id":984},"_id":"_5987","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"987":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"988":{"morph":{"__isSmartRef__":true,"id":984},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"989":{"onMouseDown":{"__isSmartRef__":true,"id":990}},"990":{"varMapping":{"__isSmartRef__":true,"id":991},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":996},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"991":{"this":{"__isSmartRef__":true,"id":984},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":992}},"992":{"$super":{"__isSmartRef__":true,"id":993}},"993":{"varMapping":{"__isSmartRef__":true,"id":994},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":995},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"994":{"obj":{"__isSmartRef__":true,"id":984},"name":"onMouseDown"},"995":{},"996":{},"997":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":998},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":999},{"__isSmartRef__":true,"id":1001}],"eventHandler":{"__isSmartRef__":true,"id":1003},"_ClipMode":"visible","derivationIds":[],"id":"3E7C0851-4AD9-44D0-9E37-D0B0E3684349","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":983},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1004},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"998":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"999":{"style":{"__isSmartRef__":true,"id":1000},"chunkOwner":{"__isSmartRef__":true,"id":997},"_id":"_5989","storedString":"fixedWidth ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1000":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1001":{"style":{"__isSmartRef__":true,"id":1002},"chunkOwner":{"__isSmartRef__":true,"id":997},"_id":"_5990","storedString":"true","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1002":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1003":{"morph":{"__isSmartRef__":true,"id":997},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1004":{"onMouseDown":{"__isSmartRef__":true,"id":1005}},"1005":{"varMapping":{"__isSmartRef__":true,"id":1006},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1011},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1006":{"this":{"__isSmartRef__":true,"id":997},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1007}},"1007":{"$super":{"__isSmartRef__":true,"id":1008}},"1008":{"varMapping":{"__isSmartRef__":true,"id":1009},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1010},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1009":{"obj":{"__isSmartRef__":true,"id":997},"name":"onMouseDown"},"1010":{},"1011":{},"1012":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1013":{"morph":{"__isSmartRef__":true,"id":983},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1014":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1015}},"1015":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":983},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1016":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1017":{"morph":{"__isSmartRef__":true,"id":982},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1018":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1019}},"1019":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1020},"spacing":0,"container":{"__isSmartRef__":true,"id":982},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1020":{"top":0,"right":0,"bottom":0,"left":0},"1021":{"onSelect":{"__isSmartRef__":true,"id":1022},"onUpdate":{"__isSmartRef__":true,"id":1025}},"1022":{"varMapping":{"__isSmartRef__":true,"id":1023},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1024},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1023":{"this":{"__isSmartRef__":true,"id":980}},"1024":{},"1025":{"varMapping":{"__isSmartRef__":true,"id":1026},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1027},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1026":{"this":{"__isSmartRef__":true,"id":980}},"1027":{},"1028":{"data":false,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"grabbingEnabled","description":"false","attributeConnections":[{"__isSmartRef__":true,"id":1029}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1069}},"1029":{"sourceObj":{"__isSmartRef__":true,"id":1028},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1030},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1030":{"item":{"__isSmartRef__":true,"id":1028},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1031}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1064},"eventHandler":{"__isSmartRef__":true,"id":1065},"_ClipMode":"visible","derivationIds":[],"id":"6A6F29C9-14FA-4C06-9438-89443A4385C0","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1066},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1032},"label":{"__isSmartRef__":true,"id":1045},"node":{"__isSmartRef__":true,"id":1031},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,260.0)"},"1031":{"submorphs":[{"__isSmartRef__":true,"id":1032},{"__isSmartRef__":true,"id":1045}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1060},"eventHandler":{"__isSmartRef__":true,"id":1061},"_ClipMode":"visible","derivationIds":[],"id":"F500E567-DCCD-4001-85AC-10348B006B5F","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1062},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1030},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1032":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1033},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1034}],"eventHandler":{"__isSmartRef__":true,"id":1036},"_ClipMode":"visible","derivationIds":[],"id":"19F99E06-855D-4515-8C30-35321F4E1A2A","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1031},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1037},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1033":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1034":{"style":{"__isSmartRef__":true,"id":1035},"chunkOwner":{"__isSmartRef__":true,"id":1032},"_id":"_5992","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1035":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1036":{"morph":{"__isSmartRef__":true,"id":1032},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1037":{"onMouseDown":{"__isSmartRef__":true,"id":1038}},"1038":{"varMapping":{"__isSmartRef__":true,"id":1039},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1044},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1039":{"this":{"__isSmartRef__":true,"id":1032},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1040}},"1040":{"$super":{"__isSmartRef__":true,"id":1041}},"1041":{"varMapping":{"__isSmartRef__":true,"id":1042},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1043},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1042":{"obj":{"__isSmartRef__":true,"id":1032},"name":"onMouseDown"},"1043":{},"1044":{},"1045":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1046},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1047},{"__isSmartRef__":true,"id":1049}],"eventHandler":{"__isSmartRef__":true,"id":1051},"_ClipMode":"visible","derivationIds":[],"id":"F3CC6C80-4657-40EE-9168-7E17B01913A9","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1031},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1052},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1046":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(140.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1047":{"style":{"__isSmartRef__":true,"id":1048},"chunkOwner":{"__isSmartRef__":true,"id":1045},"_id":"_5994","storedString":"grabbingEnabled ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1048":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1049":{"style":{"__isSmartRef__":true,"id":1050},"chunkOwner":{"__isSmartRef__":true,"id":1045},"_id":"_5995","storedString":"false","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1050":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1051":{"morph":{"__isSmartRef__":true,"id":1045},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1052":{"onMouseDown":{"__isSmartRef__":true,"id":1053}},"1053":{"varMapping":{"__isSmartRef__":true,"id":1054},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1059},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1054":{"this":{"__isSmartRef__":true,"id":1045},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1055}},"1055":{"$super":{"__isSmartRef__":true,"id":1056}},"1056":{"varMapping":{"__isSmartRef__":true,"id":1057},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1058},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1057":{"obj":{"__isSmartRef__":true,"id":1045},"name":"onMouseDown"},"1058":{},"1059":{},"1060":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1061":{"morph":{"__isSmartRef__":true,"id":1031},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1062":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1063}},"1063":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1031},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1064":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1065":{"morph":{"__isSmartRef__":true,"id":1030},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1066":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1067}},"1067":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1068},"spacing":0,"container":{"__isSmartRef__":true,"id":1030},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1068":{"top":0,"right":0,"bottom":0,"left":0},"1069":{"onSelect":{"__isSmartRef__":true,"id":1070},"onUpdate":{"__isSmartRef__":true,"id":1073}},"1070":{"varMapping":{"__isSmartRef__":true,"id":1071},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1072},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1071":{"this":{"__isSmartRef__":true,"id":1028}},"1072":{},"1073":{"varMapping":{"__isSmartRef__":true,"id":1074},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1075},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1074":{"this":{"__isSmartRef__":true,"id":1028}},"1075":{},"1076":{"data":true,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"halosEnabled","description":"true","attributeConnections":[{"__isSmartRef__":true,"id":1077}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1117}},"1077":{"sourceObj":{"__isSmartRef__":true,"id":1076},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1078},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1078":{"item":{"__isSmartRef__":true,"id":1076},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1079}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1112},"eventHandler":{"__isSmartRef__":true,"id":1113},"_ClipMode":"visible","derivationIds":[],"id":"55D78C12-BDB0-431C-BA45-373E195B4573","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1114},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1080},"label":{"__isSmartRef__":true,"id":1093},"node":{"__isSmartRef__":true,"id":1079},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,280.0)"},"1079":{"submorphs":[{"__isSmartRef__":true,"id":1080},{"__isSmartRef__":true,"id":1093}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1108},"eventHandler":{"__isSmartRef__":true,"id":1109},"_ClipMode":"visible","derivationIds":[],"id":"0254FF27-A6DD-4B7F-BEE5-4DA04E3B69C2","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1110},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1078},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1080":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1081},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1082}],"eventHandler":{"__isSmartRef__":true,"id":1084},"_ClipMode":"visible","derivationIds":[],"id":"44D13BE2-8DAC-4A4D-9C30-91A500148895","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1079},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1085},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1081":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1082":{"style":{"__isSmartRef__":true,"id":1083},"chunkOwner":{"__isSmartRef__":true,"id":1080},"_id":"_6002","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1083":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1084":{"morph":{"__isSmartRef__":true,"id":1080},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1085":{"onMouseDown":{"__isSmartRef__":true,"id":1086}},"1086":{"varMapping":{"__isSmartRef__":true,"id":1087},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1092},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1087":{"this":{"__isSmartRef__":true,"id":1080},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1088}},"1088":{"$super":{"__isSmartRef__":true,"id":1089}},"1089":{"varMapping":{"__isSmartRef__":true,"id":1090},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1091},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1090":{"obj":{"__isSmartRef__":true,"id":1080},"name":"onMouseDown"},"1091":{},"1092":{},"1093":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1094},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1095},{"__isSmartRef__":true,"id":1097}],"eventHandler":{"__isSmartRef__":true,"id":1099},"_ClipMode":"visible","derivationIds":[],"id":"DBC7308D-A964-4D03-AF80-C257CE43344B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1079},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1100},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1094":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(116.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1095":{"style":{"__isSmartRef__":true,"id":1096},"chunkOwner":{"__isSmartRef__":true,"id":1093},"_id":"_6004","storedString":"halosEnabled ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1096":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1097":{"style":{"__isSmartRef__":true,"id":1098},"chunkOwner":{"__isSmartRef__":true,"id":1093},"_id":"_6005","storedString":"true","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1098":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1099":{"morph":{"__isSmartRef__":true,"id":1093},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1100":{"onMouseDown":{"__isSmartRef__":true,"id":1101}},"1101":{"varMapping":{"__isSmartRef__":true,"id":1102},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1107},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1102":{"this":{"__isSmartRef__":true,"id":1093},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1103}},"1103":{"$super":{"__isSmartRef__":true,"id":1104}},"1104":{"varMapping":{"__isSmartRef__":true,"id":1105},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1106},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1105":{"obj":{"__isSmartRef__":true,"id":1093},"name":"onMouseDown"},"1106":{},"1107":{},"1108":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1109":{"morph":{"__isSmartRef__":true,"id":1079},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1110":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1111}},"1111":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1079},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1112":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1113":{"morph":{"__isSmartRef__":true,"id":1078},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1114":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1115}},"1115":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1116},"spacing":0,"container":{"__isSmartRef__":true,"id":1078},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1116":{"top":0,"right":0,"bottom":0,"left":0},"1117":{"onSelect":{"__isSmartRef__":true,"id":1118},"onUpdate":{"__isSmartRef__":true,"id":1121}},"1118":{"varMapping":{"__isSmartRef__":true,"id":1119},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1120},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1119":{"this":{"__isSmartRef__":true,"id":1076}},"1120":{},"1121":{"varMapping":{"__isSmartRef__":true,"id":1122},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1123},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1122":{"this":{"__isSmartRef__":true,"id":1076}},"1123":{},"1124":{"data":"113D67EA-1363-4606-AE3A-127FBB8F336D","inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"id","description":"113D67EA-1363-4606-AE3A-127FBB8F336D...","attributeConnections":[{"__isSmartRef__":true,"id":1125}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1165}},"1125":{"sourceObj":{"__isSmartRef__":true,"id":1124},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1126},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1126":{"item":{"__isSmartRef__":true,"id":1124},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1127}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1160},"eventHandler":{"__isSmartRef__":true,"id":1161},"_ClipMode":"visible","derivationIds":[],"id":"BA6CDB94-C4DC-4967-A513-CB29C556972D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1162},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1128},"label":{"__isSmartRef__":true,"id":1141},"node":{"__isSmartRef__":true,"id":1127},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,300.0)"},"1127":{"submorphs":[{"__isSmartRef__":true,"id":1128},{"__isSmartRef__":true,"id":1141}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1156},"eventHandler":{"__isSmartRef__":true,"id":1157},"_ClipMode":"visible","derivationIds":[],"id":"5BF12003-B0ED-4F64-8712-8C9B1EFB0B10","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1158},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1126},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1128":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1129},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1130}],"eventHandler":{"__isSmartRef__":true,"id":1132},"_ClipMode":"visible","derivationIds":[],"id":"25430D34-F747-4593-87DC-020B7513389E","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1127},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1133},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1129":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1130":{"style":{"__isSmartRef__":true,"id":1131},"chunkOwner":{"__isSmartRef__":true,"id":1128},"_id":"_6007","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1131":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1132":{"morph":{"__isSmartRef__":true,"id":1128},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1133":{"onMouseDown":{"__isSmartRef__":true,"id":1134}},"1134":{"varMapping":{"__isSmartRef__":true,"id":1135},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1140},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1135":{"this":{"__isSmartRef__":true,"id":1128},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1136}},"1136":{"$super":{"__isSmartRef__":true,"id":1137}},"1137":{"varMapping":{"__isSmartRef__":true,"id":1138},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1139},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1138":{"obj":{"__isSmartRef__":true,"id":1128},"name":"onMouseDown"},"1139":{},"1140":{},"1141":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1142},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1143},{"__isSmartRef__":true,"id":1145}],"eventHandler":{"__isSmartRef__":true,"id":1147},"_ClipMode":"visible","derivationIds":[],"id":"CC2CE43B-428A-450D-A29E-C048F151E5AB","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1127},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1148},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1142":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(300.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1143":{"style":{"__isSmartRef__":true,"id":1144},"chunkOwner":{"__isSmartRef__":true,"id":1141},"_id":"_6009","storedString":"id ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1144":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1145":{"style":{"__isSmartRef__":true,"id":1146},"chunkOwner":{"__isSmartRef__":true,"id":1141},"_id":"_6010","storedString":"113D67EA-1363-4606-AE3A-127FBB8F336D...","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1146":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1147":{"morph":{"__isSmartRef__":true,"id":1141},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1148":{"onMouseDown":{"__isSmartRef__":true,"id":1149}},"1149":{"varMapping":{"__isSmartRef__":true,"id":1150},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1155},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1150":{"this":{"__isSmartRef__":true,"id":1141},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1151}},"1151":{"$super":{"__isSmartRef__":true,"id":1152}},"1152":{"varMapping":{"__isSmartRef__":true,"id":1153},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1154},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1153":{"obj":{"__isSmartRef__":true,"id":1141},"name":"onMouseDown"},"1154":{},"1155":{},"1156":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1157":{"morph":{"__isSmartRef__":true,"id":1127},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1158":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1159}},"1159":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1127},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1160":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1161":{"morph":{"__isSmartRef__":true,"id":1126},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1162":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1163}},"1163":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1164},"spacing":0,"container":{"__isSmartRef__":true,"id":1126},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1164":{"top":0,"right":0,"bottom":0,"left":0},"1165":{"onSelect":{"__isSmartRef__":true,"id":1166},"onUpdate":{"__isSmartRef__":true,"id":1169}},"1166":{"varMapping":{"__isSmartRef__":true,"id":1167},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1168},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1167":{"this":{"__isSmartRef__":true,"id":1124}},"1168":{},"1169":{"varMapping":{"__isSmartRef__":true,"id":1170},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1171},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1170":{"this":{"__isSmartRef__":true,"id":1124}},"1171":{},"1172":{"data":false,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"isBeingDragged","description":"false","attributeConnections":[{"__isSmartRef__":true,"id":1173}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1213}},"1173":{"sourceObj":{"__isSmartRef__":true,"id":1172},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1174},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1174":{"item":{"__isSmartRef__":true,"id":1172},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1175}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1208},"eventHandler":{"__isSmartRef__":true,"id":1209},"_ClipMode":"visible","derivationIds":[],"id":"B0EDC78C-21C1-4D4D-91C3-26AAAC00D26C","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1210},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1176},"label":{"__isSmartRef__":true,"id":1189},"node":{"__isSmartRef__":true,"id":1175},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,320.0)"},"1175":{"submorphs":[{"__isSmartRef__":true,"id":1176},{"__isSmartRef__":true,"id":1189}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1204},"eventHandler":{"__isSmartRef__":true,"id":1205},"_ClipMode":"visible","derivationIds":[],"id":"CA5FD5FA-5D01-42FB-9FAB-23F4727E33F5","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1206},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1174},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1176":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1177},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1178}],"eventHandler":{"__isSmartRef__":true,"id":1180},"_ClipMode":"visible","derivationIds":[],"id":"7B944587-CA6E-4C18-85CD-EC7C57D68501","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1175},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1181},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1177":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1178":{"style":{"__isSmartRef__":true,"id":1179},"chunkOwner":{"__isSmartRef__":true,"id":1176},"_id":"_6012","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1179":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1180":{"morph":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1181":{"onMouseDown":{"__isSmartRef__":true,"id":1182}},"1182":{"varMapping":{"__isSmartRef__":true,"id":1183},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1188},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1183":{"this":{"__isSmartRef__":true,"id":1176},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1184}},"1184":{"$super":{"__isSmartRef__":true,"id":1185}},"1185":{"varMapping":{"__isSmartRef__":true,"id":1186},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1187},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1186":{"obj":{"__isSmartRef__":true,"id":1176},"name":"onMouseDown"},"1187":{},"1188":{},"1189":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1190},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1191},{"__isSmartRef__":true,"id":1193}],"eventHandler":{"__isSmartRef__":true,"id":1195},"_ClipMode":"visible","derivationIds":[],"id":"24A48BDC-7850-48F1-820E-EA4C44AA6D3D","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1175},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1196},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1190":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(136.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1191":{"style":{"__isSmartRef__":true,"id":1192},"chunkOwner":{"__isSmartRef__":true,"id":1189},"_id":"_6014","storedString":"isBeingDragged ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1192":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1193":{"style":{"__isSmartRef__":true,"id":1194},"chunkOwner":{"__isSmartRef__":true,"id":1189},"_id":"_6015","storedString":"false","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1194":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1195":{"morph":{"__isSmartRef__":true,"id":1189},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1196":{"onMouseDown":{"__isSmartRef__":true,"id":1197}},"1197":{"varMapping":{"__isSmartRef__":true,"id":1198},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1203},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1198":{"this":{"__isSmartRef__":true,"id":1189},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1199}},"1199":{"$super":{"__isSmartRef__":true,"id":1200}},"1200":{"varMapping":{"__isSmartRef__":true,"id":1201},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1202},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1201":{"obj":{"__isSmartRef__":true,"id":1189},"name":"onMouseDown"},"1202":{},"1203":{},"1204":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1205":{"morph":{"__isSmartRef__":true,"id":1175},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1206":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1207}},"1207":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1175},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1208":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1209":{"morph":{"__isSmartRef__":true,"id":1174},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1210":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1211}},"1211":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1212},"spacing":0,"container":{"__isSmartRef__":true,"id":1174},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1212":{"top":0,"right":0,"bottom":0,"left":0},"1213":{"onSelect":{"__isSmartRef__":true,"id":1214},"onUpdate":{"__isSmartRef__":true,"id":1217}},"1214":{"varMapping":{"__isSmartRef__":true,"id":1215},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1216},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1215":{"this":{"__isSmartRef__":true,"id":1172}},"1216":{},"1217":{"varMapping":{"__isSmartRef__":true,"id":1218},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1219},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1218":{"this":{"__isSmartRef__":true,"id":1172}},"1219":{},"1220":{"data":99,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"lastFindLoc","description":"99","attributeConnections":[{"__isSmartRef__":true,"id":1221}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1261}},"1221":{"sourceObj":{"__isSmartRef__":true,"id":1220},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1222},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1222":{"item":{"__isSmartRef__":true,"id":1220},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1223}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1256},"eventHandler":{"__isSmartRef__":true,"id":1257},"_ClipMode":"visible","derivationIds":[],"id":"9B13FF7B-5D82-480A-9F78-A83A804CC0BB","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1258},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1224},"label":{"__isSmartRef__":true,"id":1237},"node":{"__isSmartRef__":true,"id":1223},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,340.0)"},"1223":{"submorphs":[{"__isSmartRef__":true,"id":1224},{"__isSmartRef__":true,"id":1237}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1252},"eventHandler":{"__isSmartRef__":true,"id":1253},"_ClipMode":"visible","derivationIds":[],"id":"E6C97722-C659-45D0-8AA7-674388385BAA","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1254},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1222},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1224":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1225},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1226}],"eventHandler":{"__isSmartRef__":true,"id":1228},"_ClipMode":"visible","derivationIds":[],"id":"38A69E8D-291D-4AEA-80F7-22C4697971A9","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1223},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1229},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1225":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1226":{"style":{"__isSmartRef__":true,"id":1227},"chunkOwner":{"__isSmartRef__":true,"id":1224},"_id":"_6017","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1227":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1228":{"morph":{"__isSmartRef__":true,"id":1224},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1229":{"onMouseDown":{"__isSmartRef__":true,"id":1230}},"1230":{"varMapping":{"__isSmartRef__":true,"id":1231},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1236},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1231":{"this":{"__isSmartRef__":true,"id":1224},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1232}},"1232":{"$super":{"__isSmartRef__":true,"id":1233}},"1233":{"varMapping":{"__isSmartRef__":true,"id":1234},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1235},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1234":{"obj":{"__isSmartRef__":true,"id":1224},"name":"onMouseDown"},"1235":{},"1236":{},"1237":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1238},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1239},{"__isSmartRef__":true,"id":1241}],"eventHandler":{"__isSmartRef__":true,"id":1243},"_ClipMode":"visible","derivationIds":[],"id":"74ADC405-535C-4613-83C5-A62645135CB0","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1223},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1244},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1238":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(97.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1239":{"style":{"__isSmartRef__":true,"id":1240},"chunkOwner":{"__isSmartRef__":true,"id":1237},"_id":"_6019","storedString":"lastFindLoc ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1240":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1241":{"style":{"__isSmartRef__":true,"id":1242},"chunkOwner":{"__isSmartRef__":true,"id":1237},"_id":"_6020","storedString":"99","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1242":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1243":{"morph":{"__isSmartRef__":true,"id":1237},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1244":{"onMouseDown":{"__isSmartRef__":true,"id":1245}},"1245":{"varMapping":{"__isSmartRef__":true,"id":1246},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1251},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1246":{"this":{"__isSmartRef__":true,"id":1237},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1247}},"1247":{"$super":{"__isSmartRef__":true,"id":1248}},"1248":{"varMapping":{"__isSmartRef__":true,"id":1249},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1250},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1249":{"obj":{"__isSmartRef__":true,"id":1237},"name":"onMouseDown"},"1250":{},"1251":{},"1252":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1253":{"morph":{"__isSmartRef__":true,"id":1223},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1254":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1255}},"1255":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1223},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1256":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1257":{"morph":{"__isSmartRef__":true,"id":1222},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1258":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1259}},"1259":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1260},"spacing":0,"container":{"__isSmartRef__":true,"id":1222},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1260":{"top":0,"right":0,"bottom":0,"left":0},"1261":{"onSelect":{"__isSmartRef__":true,"id":1262},"onUpdate":{"__isSmartRef__":true,"id":1265}},"1262":{"varMapping":{"__isSmartRef__":true,"id":1263},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1264},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1263":{"this":{"__isSmartRef__":true,"id":1220}},"1264":{},"1265":{"varMapping":{"__isSmartRef__":true,"id":1266},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1267},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1266":{"this":{"__isSmartRef__":true,"id":1220}},"1267":{},"1268":{"data":{"__isSmartRef__":true,"id":37},"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"layout","description":"{...}","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":1269}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1309}},"1269":{"sourceObj":{"__isSmartRef__":true,"id":1268},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1270},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1270":{"item":{"__isSmartRef__":true,"id":1268},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1271}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1304},"eventHandler":{"__isSmartRef__":true,"id":1305},"_ClipMode":"visible","derivationIds":[],"id":"9181B6E9-9AA3-4543-A117-A10F266F651D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1306},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1272},"label":{"__isSmartRef__":true,"id":1285},"node":{"__isSmartRef__":true,"id":1271},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,360.0)"},"1271":{"submorphs":[{"__isSmartRef__":true,"id":1272},{"__isSmartRef__":true,"id":1285}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1300},"eventHandler":{"__isSmartRef__":true,"id":1301},"_ClipMode":"visible","derivationIds":[],"id":"3A4C3BC2-6CE9-47EA-97A9-6E38BED0AE7E","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1302},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1270},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1272":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1273},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1274}],"eventHandler":{"__isSmartRef__":true,"id":1276},"_ClipMode":"visible","derivationIds":[],"id":"1C749E18-7133-4318-8F21-8538026B25C5","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1271},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1277},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1273":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1274":{"style":{"__isSmartRef__":true,"id":1275},"chunkOwner":{"__isSmartRef__":true,"id":1272},"_id":"_6022","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1275":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1276":{"morph":{"__isSmartRef__":true,"id":1272},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1277":{"onMouseDown":{"__isSmartRef__":true,"id":1278}},"1278":{"varMapping":{"__isSmartRef__":true,"id":1279},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1284},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1279":{"this":{"__isSmartRef__":true,"id":1272},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1280}},"1280":{"$super":{"__isSmartRef__":true,"id":1281}},"1281":{"varMapping":{"__isSmartRef__":true,"id":1282},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1283},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1282":{"obj":{"__isSmartRef__":true,"id":1272},"name":"onMouseDown"},"1283":{},"1284":{},"1285":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1286},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1287},{"__isSmartRef__":true,"id":1289}],"eventHandler":{"__isSmartRef__":true,"id":1291},"_ClipMode":"visible","derivationIds":[],"id":"C9AB460C-3C64-474C-8C0E-280471876FEC","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1271},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1292},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1286":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(71.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1287":{"style":{"__isSmartRef__":true,"id":1288},"chunkOwner":{"__isSmartRef__":true,"id":1285},"_id":"_6024","storedString":"layout ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1288":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1289":{"style":{"__isSmartRef__":true,"id":1290},"chunkOwner":{"__isSmartRef__":true,"id":1285},"_id":"_6025","storedString":"{...}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1290":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1291":{"morph":{"__isSmartRef__":true,"id":1285},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1292":{"onMouseDown":{"__isSmartRef__":true,"id":1293}},"1293":{"varMapping":{"__isSmartRef__":true,"id":1294},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1299},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1294":{"this":{"__isSmartRef__":true,"id":1285},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1295}},"1295":{"$super":{"__isSmartRef__":true,"id":1296}},"1296":{"varMapping":{"__isSmartRef__":true,"id":1297},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1298},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1297":{"obj":{"__isSmartRef__":true,"id":1285},"name":"onMouseDown"},"1298":{},"1299":{},"1300":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1301":{"morph":{"__isSmartRef__":true,"id":1271},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1302":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1303}},"1303":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1271},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1304":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1305":{"morph":{"__isSmartRef__":true,"id":1270},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1306":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1307}},"1307":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1308},"spacing":0,"container":{"__isSmartRef__":true,"id":1270},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1308":{"top":0,"right":0,"bottom":0,"left":0},"1309":{"onSelect":{"__isSmartRef__":true,"id":1310},"onExpand":{"__isSmartRef__":true,"id":1313},"onUpdateChildren":{"__isSmartRef__":true,"id":1316},"onUpdate":{"__isSmartRef__":true,"id":1319}},"1310":{"varMapping":{"__isSmartRef__":true,"id":1311},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1312},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1311":{"this":{"__isSmartRef__":true,"id":1268}},"1312":{},"1313":{"varMapping":{"__isSmartRef__":true,"id":1314},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1315},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1314":{"this":{"__isSmartRef__":true,"id":1268}},"1315":{},"1316":{"varMapping":{"__isSmartRef__":true,"id":1317},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1318},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1317":{"this":{"__isSmartRef__":true,"id":1268}},"1318":{},"1319":{"varMapping":{"__isSmartRef__":true,"id":1320},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1321},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1320":{"this":{"__isSmartRef__":true,"id":1268}},"1321":{},"1322":{"data":"Introspection","inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"name","description":"Introspection","attributeConnections":[{"__isSmartRef__":true,"id":1323}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1363}},"1323":{"sourceObj":{"__isSmartRef__":true,"id":1322},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1324},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1324":{"item":{"__isSmartRef__":true,"id":1322},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1325}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1358},"eventHandler":{"__isSmartRef__":true,"id":1359},"_ClipMode":"visible","derivationIds":[],"id":"39E570AF-D734-43C7-A72D-5AAA7700AB5F","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1360},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1326},"label":{"__isSmartRef__":true,"id":1339},"node":{"__isSmartRef__":true,"id":1325},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,380.0)"},"1325":{"submorphs":[{"__isSmartRef__":true,"id":1326},{"__isSmartRef__":true,"id":1339}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1354},"eventHandler":{"__isSmartRef__":true,"id":1355},"_ClipMode":"visible","derivationIds":[],"id":"5E1CC56F-4AE2-44AA-8279-B023EA0C7DEB","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1356},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1324},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1326":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1327},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1328}],"eventHandler":{"__isSmartRef__":true,"id":1330},"_ClipMode":"visible","derivationIds":[],"id":"49B36121-F318-4CC0-AA0A-72B360DC99CA","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1325},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1331},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1327":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1328":{"style":{"__isSmartRef__":true,"id":1329},"chunkOwner":{"__isSmartRef__":true,"id":1326},"_id":"_6027","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1329":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1330":{"morph":{"__isSmartRef__":true,"id":1326},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1331":{"onMouseDown":{"__isSmartRef__":true,"id":1332}},"1332":{"varMapping":{"__isSmartRef__":true,"id":1333},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1338},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1333":{"this":{"__isSmartRef__":true,"id":1326},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1334}},"1334":{"$super":{"__isSmartRef__":true,"id":1335}},"1335":{"varMapping":{"__isSmartRef__":true,"id":1336},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1337},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1336":{"obj":{"__isSmartRef__":true,"id":1326},"name":"onMouseDown"},"1337":{},"1338":{},"1339":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1340},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1341},{"__isSmartRef__":true,"id":1343}],"eventHandler":{"__isSmartRef__":true,"id":1345},"_ClipMode":"visible","derivationIds":[],"id":"6CC35752-0AB1-4986-B561-91563E02848A","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1325},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1346},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1340":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(123.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1341":{"style":{"__isSmartRef__":true,"id":1342},"chunkOwner":{"__isSmartRef__":true,"id":1339},"_id":"_6029","storedString":"name ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1342":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1343":{"style":{"__isSmartRef__":true,"id":1344},"chunkOwner":{"__isSmartRef__":true,"id":1339},"_id":"_6030","storedString":"Introspection","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1344":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1345":{"morph":{"__isSmartRef__":true,"id":1339},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1346":{"onMouseDown":{"__isSmartRef__":true,"id":1347}},"1347":{"varMapping":{"__isSmartRef__":true,"id":1348},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1353},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1348":{"this":{"__isSmartRef__":true,"id":1339},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1349}},"1349":{"$super":{"__isSmartRef__":true,"id":1350}},"1350":{"varMapping":{"__isSmartRef__":true,"id":1351},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1352},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1351":{"obj":{"__isSmartRef__":true,"id":1339},"name":"onMouseDown"},"1352":{},"1353":{},"1354":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1355":{"morph":{"__isSmartRef__":true,"id":1325},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1356":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1357}},"1357":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1325},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1358":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1359":{"morph":{"__isSmartRef__":true,"id":1324},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1360":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1361}},"1361":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1362},"spacing":0,"container":{"__isSmartRef__":true,"id":1324},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1362":{"top":0,"right":0,"bottom":0,"left":0},"1363":{"onSelect":{"__isSmartRef__":true,"id":1364},"onUpdate":{"__isSmartRef__":true,"id":1367}},"1364":{"varMapping":{"__isSmartRef__":true,"id":1365},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1366},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1365":{"this":{"__isSmartRef__":true,"id":1322}},"1366":{},"1367":{"varMapping":{"__isSmartRef__":true,"id":1368},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1369},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1368":{"this":{"__isSmartRef__":true,"id":1322}},"1369":{},"1370":{"data":{"__isSmartRef__":true,"id":38},"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"owner","description":"InterpreterExperiments","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":1371}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1411}},"1371":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1372},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1372":{"item":{"__isSmartRef__":true,"id":1370},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1373}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1406},"eventHandler":{"__isSmartRef__":true,"id":1407},"_ClipMode":"visible","derivationIds":[],"id":"75AB29B6-9973-44BE-9EAC-EEABC0C19768","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1408},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1374},"label":{"__isSmartRef__":true,"id":1387},"node":{"__isSmartRef__":true,"id":1373},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,400.0)"},"1373":{"submorphs":[{"__isSmartRef__":true,"id":1374},{"__isSmartRef__":true,"id":1387}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1402},"eventHandler":{"__isSmartRef__":true,"id":1403},"_ClipMode":"visible","derivationIds":[],"id":"A272B1CC-FFD1-473F-B139-1904B621D9C0","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1404},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1372},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1374":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1375},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1376}],"eventHandler":{"__isSmartRef__":true,"id":1378},"_ClipMode":"visible","derivationIds":[],"id":"32A19A7D-4A86-4C00-A5A8-7D41937FA2E7","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1373},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1379},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1375":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1376":{"style":{"__isSmartRef__":true,"id":1377},"chunkOwner":{"__isSmartRef__":true,"id":1374},"_id":"_6032","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1377":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1378":{"morph":{"__isSmartRef__":true,"id":1374},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1379":{"onMouseDown":{"__isSmartRef__":true,"id":1380}},"1380":{"varMapping":{"__isSmartRef__":true,"id":1381},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1386},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1381":{"this":{"__isSmartRef__":true,"id":1374},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1382}},"1382":{"$super":{"__isSmartRef__":true,"id":1383}},"1383":{"varMapping":{"__isSmartRef__":true,"id":1384},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1385},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1384":{"obj":{"__isSmartRef__":true,"id":1374},"name":"onMouseDown"},"1385":{},"1386":{},"1387":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1388},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1389},{"__isSmartRef__":true,"id":1391}],"eventHandler":{"__isSmartRef__":true,"id":1393},"_ClipMode":"visible","derivationIds":[],"id":"2730A857-95D8-4530-8557-153BCA053BAD","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1373},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1394},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1388":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(183.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1389":{"style":{"__isSmartRef__":true,"id":1390},"chunkOwner":{"__isSmartRef__":true,"id":1387},"_id":"_6034","storedString":"owner ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1390":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1391":{"style":{"__isSmartRef__":true,"id":1392},"chunkOwner":{"__isSmartRef__":true,"id":1387},"_id":"_6035","storedString":"InterpreterExperiments","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1392":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1393":{"morph":{"__isSmartRef__":true,"id":1387},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1394":{"onMouseDown":{"__isSmartRef__":true,"id":1395}},"1395":{"varMapping":{"__isSmartRef__":true,"id":1396},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1401},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1396":{"this":{"__isSmartRef__":true,"id":1387},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1397}},"1397":{"$super":{"__isSmartRef__":true,"id":1398}},"1398":{"varMapping":{"__isSmartRef__":true,"id":1399},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1400},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1399":{"obj":{"__isSmartRef__":true,"id":1387},"name":"onMouseDown"},"1400":{},"1401":{},"1402":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1403":{"morph":{"__isSmartRef__":true,"id":1373},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1404":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1405}},"1405":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1373},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1406":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1407":{"morph":{"__isSmartRef__":true,"id":1372},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1408":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1409}},"1409":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1410},"spacing":0,"container":{"__isSmartRef__":true,"id":1372},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1410":{"top":0,"right":0,"bottom":0,"left":0},"1411":{"onSelect":{"__isSmartRef__":true,"id":1412},"onExpand":{"__isSmartRef__":true,"id":1415},"onUpdateChildren":{"__isSmartRef__":true,"id":1418},"onUpdate":{"__isSmartRef__":true,"id":1421}},"1412":{"varMapping":{"__isSmartRef__":true,"id":1413},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1414},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1413":{"this":{"__isSmartRef__":true,"id":1370}},"1414":{},"1415":{"varMapping":{"__isSmartRef__":true,"id":1416},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1417},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1416":{"this":{"__isSmartRef__":true,"id":1370}},"1417":{},"1418":{"varMapping":{"__isSmartRef__":true,"id":1419},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1420},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1419":{"this":{"__isSmartRef__":true,"id":1370}},"1420":{},"1421":{"varMapping":{"__isSmartRef__":true,"id":1422},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1423},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1422":{"this":{"__isSmartRef__":true,"id":1370}},"1423":{},"1424":{"__serializedExpressions__":["data"],"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"priorExtent","description":"Point","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":1425}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1465},"data":"lively.pt(509.0,219.0)"},"1425":{"sourceObj":{"__isSmartRef__":true,"id":1424},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1426},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1426":{"item":{"__isSmartRef__":true,"id":1424},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1427}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1460},"eventHandler":{"__isSmartRef__":true,"id":1461},"_ClipMode":"visible","derivationIds":[],"id":"F39635A8-1E38-4C82-AE7D-54AB66C1B395","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1462},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1428},"label":{"__isSmartRef__":true,"id":1441},"node":{"__isSmartRef__":true,"id":1427},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,420.0)"},"1427":{"submorphs":[{"__isSmartRef__":true,"id":1428},{"__isSmartRef__":true,"id":1441}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1456},"eventHandler":{"__isSmartRef__":true,"id":1457},"_ClipMode":"visible","derivationIds":[],"id":"60B9B912-7885-4CDA-8511-E6F2AEB6E039","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1458},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1426},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1428":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1429},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1430}],"eventHandler":{"__isSmartRef__":true,"id":1432},"_ClipMode":"visible","derivationIds":[],"id":"E6D5C6EF-F8D0-4079-80B8-D4D408B5A60D","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1427},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1433},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1429":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1430":{"style":{"__isSmartRef__":true,"id":1431},"chunkOwner":{"__isSmartRef__":true,"id":1428},"_id":"_6042","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1431":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1432":{"morph":{"__isSmartRef__":true,"id":1428},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1433":{"onMouseDown":{"__isSmartRef__":true,"id":1434}},"1434":{"varMapping":{"__isSmartRef__":true,"id":1435},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1440},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1435":{"this":{"__isSmartRef__":true,"id":1428},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1436}},"1436":{"$super":{"__isSmartRef__":true,"id":1437}},"1437":{"varMapping":{"__isSmartRef__":true,"id":1438},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1439},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1438":{"obj":{"__isSmartRef__":true,"id":1428},"name":"onMouseDown"},"1439":{},"1440":{},"1441":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1442},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1443},{"__isSmartRef__":true,"id":1445}],"eventHandler":{"__isSmartRef__":true,"id":1447},"_ClipMode":"visible","derivationIds":[],"id":"ADBA0908-FDC5-4143-B6AF-C469891C7477","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1427},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1448},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1442":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(109.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1443":{"style":{"__isSmartRef__":true,"id":1444},"chunkOwner":{"__isSmartRef__":true,"id":1441},"_id":"_6044","storedString":"priorExtent ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1444":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1445":{"style":{"__isSmartRef__":true,"id":1446},"chunkOwner":{"__isSmartRef__":true,"id":1441},"_id":"_6045","storedString":"Point","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1446":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1447":{"morph":{"__isSmartRef__":true,"id":1441},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1448":{"onMouseDown":{"__isSmartRef__":true,"id":1449}},"1449":{"varMapping":{"__isSmartRef__":true,"id":1450},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1455},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1450":{"this":{"__isSmartRef__":true,"id":1441},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1451}},"1451":{"$super":{"__isSmartRef__":true,"id":1452}},"1452":{"varMapping":{"__isSmartRef__":true,"id":1453},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1454},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1453":{"obj":{"__isSmartRef__":true,"id":1441},"name":"onMouseDown"},"1454":{},"1455":{},"1456":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1457":{"morph":{"__isSmartRef__":true,"id":1427},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1458":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1459}},"1459":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1427},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1460":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1461":{"morph":{"__isSmartRef__":true,"id":1426},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1462":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1463}},"1463":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1464},"spacing":0,"container":{"__isSmartRef__":true,"id":1426},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1464":{"top":0,"right":0,"bottom":0,"left":0},"1465":{"onSelect":{"__isSmartRef__":true,"id":1466},"onExpand":{"__isSmartRef__":true,"id":1469},"onUpdateChildren":{"__isSmartRef__":true,"id":1472},"onUpdate":{"__isSmartRef__":true,"id":1475}},"1466":{"varMapping":{"__isSmartRef__":true,"id":1467},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1468},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1467":{"this":{"__isSmartRef__":true,"id":1424}},"1468":{},"1469":{"varMapping":{"__isSmartRef__":true,"id":1470},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1471},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1470":{"this":{"__isSmartRef__":true,"id":1424}},"1471":{},"1472":{"varMapping":{"__isSmartRef__":true,"id":1473},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1474},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1473":{"this":{"__isSmartRef__":true,"id":1424}},"1474":{},"1475":{"varMapping":{"__isSmartRef__":true,"id":1476},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1477},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1476":{"this":{"__isSmartRef__":true,"id":1424}},"1477":{},"1478":{"data":{"__isSmartRef__":true,"id":1479},"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"renderContextTable","description":"{...}","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":1480}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1520}},"1479":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","removeMorph":"removeMorphHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","setStyleSheet":"setStyleSheetHTML","setStyleClassNames":"setStyleClassNamesHTML","setStyleId":"setStyleIdHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setFontWeight":"setFontWeightHTML","setFontStyle":"setFontStyleHTML","setTextDecoration":"setTextDecorationHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML","setInputAllowed":"setInputAllowedHTML"},"1480":{"sourceObj":{"__isSmartRef__":true,"id":1478},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1481},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1481":{"item":{"__isSmartRef__":true,"id":1478},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1482}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1515},"eventHandler":{"__isSmartRef__":true,"id":1516},"_ClipMode":"visible","derivationIds":[],"id":"558985C3-AE55-4666-BC02-89980B607B9A","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1517},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1483},"label":{"__isSmartRef__":true,"id":1496},"node":{"__isSmartRef__":true,"id":1482},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,440.0)"},"1482":{"submorphs":[{"__isSmartRef__":true,"id":1483},{"__isSmartRef__":true,"id":1496}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1511},"eventHandler":{"__isSmartRef__":true,"id":1512},"_ClipMode":"visible","derivationIds":[],"id":"07BC46C7-3D1C-4F49-8D6E-6175E6D2F7F1","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1513},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1481},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1483":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1484},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1485}],"eventHandler":{"__isSmartRef__":true,"id":1487},"_ClipMode":"visible","derivationIds":[],"id":"B9D907F6-0B24-4522-82D8-A474638F63A2","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1482},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1488},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1484":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1485":{"style":{"__isSmartRef__":true,"id":1486},"chunkOwner":{"__isSmartRef__":true,"id":1483},"_id":"_6047","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1486":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1487":{"morph":{"__isSmartRef__":true,"id":1483},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1488":{"onMouseDown":{"__isSmartRef__":true,"id":1489}},"1489":{"varMapping":{"__isSmartRef__":true,"id":1490},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1495},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1490":{"this":{"__isSmartRef__":true,"id":1483},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1491}},"1491":{"$super":{"__isSmartRef__":true,"id":1492}},"1492":{"varMapping":{"__isSmartRef__":true,"id":1493},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1494},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1493":{"obj":{"__isSmartRef__":true,"id":1483},"name":"onMouseDown"},"1494":{},"1495":{},"1496":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1497},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1498},{"__isSmartRef__":true,"id":1500}],"eventHandler":{"__isSmartRef__":true,"id":1502},"_ClipMode":"visible","derivationIds":[],"id":"4CE5FFD9-491A-49B4-B88E-110380ED887B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1482},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1503},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1497":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(150.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1498":{"style":{"__isSmartRef__":true,"id":1499},"chunkOwner":{"__isSmartRef__":true,"id":1496},"_id":"_6049","storedString":"renderContextTable ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1499":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1500":{"style":{"__isSmartRef__":true,"id":1501},"chunkOwner":{"__isSmartRef__":true,"id":1496},"_id":"_6050","storedString":"{...}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1501":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1502":{"morph":{"__isSmartRef__":true,"id":1496},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1503":{"onMouseDown":{"__isSmartRef__":true,"id":1504}},"1504":{"varMapping":{"__isSmartRef__":true,"id":1505},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1510},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1505":{"this":{"__isSmartRef__":true,"id":1496},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1506}},"1506":{"$super":{"__isSmartRef__":true,"id":1507}},"1507":{"varMapping":{"__isSmartRef__":true,"id":1508},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1509},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1508":{"obj":{"__isSmartRef__":true,"id":1496},"name":"onMouseDown"},"1509":{},"1510":{},"1511":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1512":{"morph":{"__isSmartRef__":true,"id":1482},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1513":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1514}},"1514":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1482},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1515":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1516":{"morph":{"__isSmartRef__":true,"id":1481},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1517":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1518}},"1518":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1519},"spacing":0,"container":{"__isSmartRef__":true,"id":1481},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1519":{"top":0,"right":0,"bottom":0,"left":0},"1520":{"onSelect":{"__isSmartRef__":true,"id":1521},"onExpand":{"__isSmartRef__":true,"id":1524},"onUpdateChildren":{"__isSmartRef__":true,"id":1527},"onUpdate":{"__isSmartRef__":true,"id":1530}},"1521":{"varMapping":{"__isSmartRef__":true,"id":1522},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1523},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1522":{"this":{"__isSmartRef__":true,"id":1478}},"1523":{},"1524":{"varMapping":{"__isSmartRef__":true,"id":1525},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1526},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1525":{"this":{"__isSmartRef__":true,"id":1478}},"1526":{},"1527":{"varMapping":{"__isSmartRef__":true,"id":1528},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1529},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1528":{"this":{"__isSmartRef__":true,"id":1478}},"1529":{},"1530":{"varMapping":{"__isSmartRef__":true,"id":1531},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1532},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1531":{"this":{"__isSmartRef__":true,"id":1478}},"1532":{},"1533":{"data":"\nfor(var i = 0; i< 30; i++) {\n var m = Morph.makeRectangle(0,0, 10,50)\n \n this.addMorph(m)\n m.moveBy(pt(70,70))\n m.rotateBy(i * 3)\n m.setFill(Color.rgb(i * 10,0,0))\n}\n\nthis.submorphs.invoke('remove')\n\n","inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"savedTextString","description":"for(var i = 0; i< 30; i++) {\n var...","attributeConnections":[{"__isSmartRef__":true,"id":1534}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1574}},"1534":{"sourceObj":{"__isSmartRef__":true,"id":1533},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1535},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1535":{"item":{"__isSmartRef__":true,"id":1533},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1536}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1569},"eventHandler":{"__isSmartRef__":true,"id":1570},"_ClipMode":"visible","derivationIds":[],"id":"C452972A-DAD6-4DAC-ACBD-530B29893B48","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1571},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1537},"label":{"__isSmartRef__":true,"id":1550},"node":{"__isSmartRef__":true,"id":1536},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,460.0)"},"1536":{"submorphs":[{"__isSmartRef__":true,"id":1537},{"__isSmartRef__":true,"id":1550}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1565},"eventHandler":{"__isSmartRef__":true,"id":1566},"_ClipMode":"visible","derivationIds":[],"id":"BAE8AEDF-BABD-43DD-9FEF-CE99C673123A","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1567},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1535},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1537":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1538},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1539}],"eventHandler":{"__isSmartRef__":true,"id":1541},"_ClipMode":"visible","derivationIds":[],"id":"1C038084-6164-4C0B-A1B0-864E334CE4A2","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1536},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1542},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1538":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1539":{"style":{"__isSmartRef__":true,"id":1540},"chunkOwner":{"__isSmartRef__":true,"id":1537},"_id":"_6052","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1540":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1541":{"morph":{"__isSmartRef__":true,"id":1537},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1542":{"onMouseDown":{"__isSmartRef__":true,"id":1543}},"1543":{"varMapping":{"__isSmartRef__":true,"id":1544},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1549},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1544":{"this":{"__isSmartRef__":true,"id":1537},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1545}},"1545":{"$super":{"__isSmartRef__":true,"id":1546}},"1546":{"varMapping":{"__isSmartRef__":true,"id":1547},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1548},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1547":{"obj":{"__isSmartRef__":true,"id":1537},"name":"onMouseDown"},"1548":{},"1549":{},"1550":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1551},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1552},{"__isSmartRef__":true,"id":1554}],"eventHandler":{"__isSmartRef__":true,"id":1556},"_ClipMode":"visible","derivationIds":[],"id":"1C1C67D8-9D3E-4A02-922C-8ABC221E924D","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1536},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1557},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1551":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(254.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1552":{"style":{"__isSmartRef__":true,"id":1553},"chunkOwner":{"__isSmartRef__":true,"id":1550},"_id":"_6054","storedString":"savedTextString ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1553":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1554":{"style":{"__isSmartRef__":true,"id":1555},"chunkOwner":{"__isSmartRef__":true,"id":1550},"_id":"_6055","storedString":"for(var i = 0; i< 30; i++) {\n var...","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1555":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1556":{"morph":{"__isSmartRef__":true,"id":1550},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1557":{"onMouseDown":{"__isSmartRef__":true,"id":1558}},"1558":{"varMapping":{"__isSmartRef__":true,"id":1559},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1564},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1559":{"this":{"__isSmartRef__":true,"id":1550},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1560}},"1560":{"$super":{"__isSmartRef__":true,"id":1561}},"1561":{"varMapping":{"__isSmartRef__":true,"id":1562},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1563},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1562":{"obj":{"__isSmartRef__":true,"id":1550},"name":"onMouseDown"},"1563":{},"1564":{},"1565":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1566":{"morph":{"__isSmartRef__":true,"id":1536},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1567":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1568}},"1568":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1536},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1569":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1570":{"morph":{"__isSmartRef__":true,"id":1535},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1571":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1572}},"1572":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1573},"spacing":0,"container":{"__isSmartRef__":true,"id":1535},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1573":{"top":0,"right":0,"bottom":0,"left":0},"1574":{"onSelect":{"__isSmartRef__":true,"id":1575},"onUpdate":{"__isSmartRef__":true,"id":1578}},"1575":{"varMapping":{"__isSmartRef__":true,"id":1576},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1577},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1576":{"this":{"__isSmartRef__":true,"id":1533}},"1577":{},"1578":{"varMapping":{"__isSmartRef__":true,"id":1579},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1580},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1579":{"this":{"__isSmartRef__":true,"id":1533}},"1580":{},"1581":{"data":[],"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"scripts","description":"[]","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":1582}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1622}},"1582":{"sourceObj":{"__isSmartRef__":true,"id":1581},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1583},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1583":{"item":{"__isSmartRef__":true,"id":1581},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1584}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1617},"eventHandler":{"__isSmartRef__":true,"id":1618},"_ClipMode":"visible","derivationIds":[],"id":"F92F6417-CA66-486B-A230-A84277D3CE19","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1619},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1585},"label":{"__isSmartRef__":true,"id":1598},"node":{"__isSmartRef__":true,"id":1584},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,480.0)"},"1584":{"submorphs":[{"__isSmartRef__":true,"id":1585},{"__isSmartRef__":true,"id":1598}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1613},"eventHandler":{"__isSmartRef__":true,"id":1614},"_ClipMode":"visible","derivationIds":[],"id":"D810F0AB-F0D6-4909-8DA6-1D06DFDBF2DD","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1615},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1583},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1585":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1586},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1587}],"eventHandler":{"__isSmartRef__":true,"id":1589},"_ClipMode":"visible","derivationIds":[],"id":"5120242E-4DE5-46D4-AB60-D2EC2FBB4044","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1584},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1590},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1586":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1587":{"style":{"__isSmartRef__":true,"id":1588},"chunkOwner":{"__isSmartRef__":true,"id":1585},"_id":"_6057","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1588":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1589":{"morph":{"__isSmartRef__":true,"id":1585},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1590":{"onMouseDown":{"__isSmartRef__":true,"id":1591}},"1591":{"varMapping":{"__isSmartRef__":true,"id":1592},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1597},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1592":{"this":{"__isSmartRef__":true,"id":1585},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1593}},"1593":{"$super":{"__isSmartRef__":true,"id":1594}},"1594":{"varMapping":{"__isSmartRef__":true,"id":1595},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1596},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1595":{"obj":{"__isSmartRef__":true,"id":1585},"name":"onMouseDown"},"1596":{},"1597":{},"1598":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1599},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1600},{"__isSmartRef__":true,"id":1602}],"eventHandler":{"__isSmartRef__":true,"id":1604},"_ClipMode":"visible","derivationIds":[],"id":"AC81B86F-8F7F-4607-9408-A0585CBC1D82","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1584},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1605},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1599":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(63.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1600":{"style":{"__isSmartRef__":true,"id":1601},"chunkOwner":{"__isSmartRef__":true,"id":1598},"_id":"_6059","storedString":"scripts ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1601":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1602":{"style":{"__isSmartRef__":true,"id":1603},"chunkOwner":{"__isSmartRef__":true,"id":1598},"_id":"_6060","storedString":"[]","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1603":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1604":{"morph":{"__isSmartRef__":true,"id":1598},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1605":{"onMouseDown":{"__isSmartRef__":true,"id":1606}},"1606":{"varMapping":{"__isSmartRef__":true,"id":1607},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1612},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1607":{"this":{"__isSmartRef__":true,"id":1598},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1608}},"1608":{"$super":{"__isSmartRef__":true,"id":1609}},"1609":{"varMapping":{"__isSmartRef__":true,"id":1610},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1611},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1610":{"obj":{"__isSmartRef__":true,"id":1598},"name":"onMouseDown"},"1611":{},"1612":{},"1613":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1614":{"morph":{"__isSmartRef__":true,"id":1584},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1615":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1616}},"1616":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1584},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1617":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1618":{"morph":{"__isSmartRef__":true,"id":1583},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1619":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1620}},"1620":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1621},"spacing":0,"container":{"__isSmartRef__":true,"id":1583},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1621":{"top":0,"right":0,"bottom":0,"left":0},"1622":{"onSelect":{"__isSmartRef__":true,"id":1623},"onExpand":{"__isSmartRef__":true,"id":1626},"onUpdateChildren":{"__isSmartRef__":true,"id":1629},"onUpdate":{"__isSmartRef__":true,"id":1632}},"1623":{"varMapping":{"__isSmartRef__":true,"id":1624},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1625},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1624":{"this":{"__isSmartRef__":true,"id":1581}},"1625":{},"1626":{"varMapping":{"__isSmartRef__":true,"id":1627},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1628},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1627":{"this":{"__isSmartRef__":true,"id":1581}},"1628":{},"1629":{"varMapping":{"__isSmartRef__":true,"id":1630},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1631},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1630":{"this":{"__isSmartRef__":true,"id":1581}},"1631":{},"1632":{"varMapping":{"__isSmartRef__":true,"id":1633},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1634},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1633":{"this":{"__isSmartRef__":true,"id":1581}},"1634":{},"1635":{"data":{"__isSmartRef__":true,"id":33},"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"shape","description":"Rectangle","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":1636}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1676}},"1636":{"sourceObj":{"__isSmartRef__":true,"id":1635},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1637},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1637":{"item":{"__isSmartRef__":true,"id":1635},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1638}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1671},"eventHandler":{"__isSmartRef__":true,"id":1672},"_ClipMode":"visible","derivationIds":[],"id":"66B1BCC4-8321-40D2-998B-7FDE446CB146","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1673},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1639},"label":{"__isSmartRef__":true,"id":1652},"node":{"__isSmartRef__":true,"id":1638},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,500.0)"},"1638":{"submorphs":[{"__isSmartRef__":true,"id":1639},{"__isSmartRef__":true,"id":1652}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1667},"eventHandler":{"__isSmartRef__":true,"id":1668},"_ClipMode":"visible","derivationIds":[],"id":"73C6A57B-FDFE-41A6-B8CE-201C6F3C94D0","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1669},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1637},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1639":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1640},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1641}],"eventHandler":{"__isSmartRef__":true,"id":1643},"_ClipMode":"visible","derivationIds":[],"id":"3B2CCE85-E69A-41E0-BB2A-724B47D23601","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1638},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1644},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1640":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1641":{"style":{"__isSmartRef__":true,"id":1642},"chunkOwner":{"__isSmartRef__":true,"id":1639},"_id":"_6062","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1642":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1643":{"morph":{"__isSmartRef__":true,"id":1639},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1644":{"onMouseDown":{"__isSmartRef__":true,"id":1645}},"1645":{"varMapping":{"__isSmartRef__":true,"id":1646},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1651},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1646":{"this":{"__isSmartRef__":true,"id":1639},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1647}},"1647":{"$super":{"__isSmartRef__":true,"id":1648}},"1648":{"varMapping":{"__isSmartRef__":true,"id":1649},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1650},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1649":{"obj":{"__isSmartRef__":true,"id":1639},"name":"onMouseDown"},"1650":{},"1651":{},"1652":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1653},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1654},{"__isSmartRef__":true,"id":1656}],"eventHandler":{"__isSmartRef__":true,"id":1658},"_ClipMode":"visible","derivationIds":[],"id":"379B1AF2-9D77-461C-B92D-AA44CC0C5070","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1638},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1659},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1653":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(110.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1654":{"style":{"__isSmartRef__":true,"id":1655},"chunkOwner":{"__isSmartRef__":true,"id":1652},"_id":"_6064","storedString":"shape ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1655":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1656":{"style":{"__isSmartRef__":true,"id":1657},"chunkOwner":{"__isSmartRef__":true,"id":1652},"_id":"_6065","storedString":"Rectangle","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1657":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1658":{"morph":{"__isSmartRef__":true,"id":1652},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1659":{"onMouseDown":{"__isSmartRef__":true,"id":1660}},"1660":{"varMapping":{"__isSmartRef__":true,"id":1661},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1666},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1661":{"this":{"__isSmartRef__":true,"id":1652},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1662}},"1662":{"$super":{"__isSmartRef__":true,"id":1663}},"1663":{"varMapping":{"__isSmartRef__":true,"id":1664},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1665},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1664":{"obj":{"__isSmartRef__":true,"id":1652},"name":"onMouseDown"},"1665":{},"1666":{},"1667":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1668":{"morph":{"__isSmartRef__":true,"id":1638},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1669":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1670}},"1670":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1638},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1671":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1672":{"morph":{"__isSmartRef__":true,"id":1637},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1673":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1674}},"1674":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1675},"spacing":0,"container":{"__isSmartRef__":true,"id":1637},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1675":{"top":0,"right":0,"bottom":0,"left":0},"1676":{"onSelect":{"__isSmartRef__":true,"id":1677},"onExpand":{"__isSmartRef__":true,"id":1680},"onUpdateChildren":{"__isSmartRef__":true,"id":1683},"onUpdate":{"__isSmartRef__":true,"id":1686}},"1677":{"varMapping":{"__isSmartRef__":true,"id":1678},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1679},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1678":{"this":{"__isSmartRef__":true,"id":1635}},"1679":{},"1680":{"varMapping":{"__isSmartRef__":true,"id":1681},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1682},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1681":{"this":{"__isSmartRef__":true,"id":1635}},"1682":{},"1683":{"varMapping":{"__isSmartRef__":true,"id":1684},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1685},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1684":{"this":{"__isSmartRef__":true,"id":1635}},"1685":{},"1686":{"varMapping":{"__isSmartRef__":true,"id":1687},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1688},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1687":{"this":{"__isSmartRef__":true,"id":1635}},"1688":{},"1689":{"data":false,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"showsHalos","description":"false","attributeConnections":[{"__isSmartRef__":true,"id":1690}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1730}},"1690":{"sourceObj":{"__isSmartRef__":true,"id":1689},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1691},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1691":{"item":{"__isSmartRef__":true,"id":1689},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1692}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1725},"eventHandler":{"__isSmartRef__":true,"id":1726},"_ClipMode":"visible","derivationIds":[],"id":"CB12817B-9D1F-46A5-BC2A-8D2F02514990","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1727},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1693},"label":{"__isSmartRef__":true,"id":1706},"node":{"__isSmartRef__":true,"id":1692},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,520.0)"},"1692":{"submorphs":[{"__isSmartRef__":true,"id":1693},{"__isSmartRef__":true,"id":1706}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1721},"eventHandler":{"__isSmartRef__":true,"id":1722},"_ClipMode":"visible","derivationIds":[],"id":"8D8E2177-E3BE-46D1-9AAF-95A8323BEC68","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1723},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1691},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1693":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1694},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1695}],"eventHandler":{"__isSmartRef__":true,"id":1697},"_ClipMode":"visible","derivationIds":[],"id":"D77AF502-D470-4B6F-9430-97F9CB309E62","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1692},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1698},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1694":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1695":{"style":{"__isSmartRef__":true,"id":1696},"chunkOwner":{"__isSmartRef__":true,"id":1693},"_id":"_6067","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1696":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1697":{"morph":{"__isSmartRef__":true,"id":1693},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1698":{"onMouseDown":{"__isSmartRef__":true,"id":1699}},"1699":{"varMapping":{"__isSmartRef__":true,"id":1700},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1705},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1700":{"this":{"__isSmartRef__":true,"id":1693},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1701}},"1701":{"$super":{"__isSmartRef__":true,"id":1702}},"1702":{"varMapping":{"__isSmartRef__":true,"id":1703},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1704},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1703":{"obj":{"__isSmartRef__":true,"id":1693},"name":"onMouseDown"},"1704":{},"1705":{},"1706":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1707},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1708},{"__isSmartRef__":true,"id":1710}],"eventHandler":{"__isSmartRef__":true,"id":1712},"_ClipMode":"visible","derivationIds":[],"id":"D2470F79-B6A9-4D31-BA25-FB1504E73583","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1692},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1713},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1707":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(112.0,16.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1708":{"style":{"__isSmartRef__":true,"id":1709},"chunkOwner":{"__isSmartRef__":true,"id":1706},"_id":"_1252","storedString":"showsHalos","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1709":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1710":{"style":{"__isSmartRef__":true,"id":1711},"chunkOwner":{"__isSmartRef__":true,"id":1706},"_id":"_1253","storedString":" false","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1711":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1712":{"morph":{"__isSmartRef__":true,"id":1706},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1713":{"onMouseDown":{"__isSmartRef__":true,"id":1714}},"1714":{"varMapping":{"__isSmartRef__":true,"id":1715},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1720},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1715":{"this":{"__isSmartRef__":true,"id":1706},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1716}},"1716":{"$super":{"__isSmartRef__":true,"id":1717}},"1717":{"varMapping":{"__isSmartRef__":true,"id":1718},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1719},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1718":{"obj":{"__isSmartRef__":true,"id":1706},"name":"onMouseDown"},"1719":{},"1720":{},"1721":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1722":{"morph":{"__isSmartRef__":true,"id":1692},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1723":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1724}},"1724":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1692},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1725":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1726":{"morph":{"__isSmartRef__":true,"id":1691},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1727":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1728}},"1728":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1729},"spacing":0,"container":{"__isSmartRef__":true,"id":1691},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1729":{"top":0,"right":0,"bottom":0,"left":0},"1730":{"onSelect":{"__isSmartRef__":true,"id":1731},"onUpdate":{"__isSmartRef__":true,"id":1734}},"1731":{"varMapping":{"__isSmartRef__":true,"id":1732},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1733},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1732":{"this":{"__isSmartRef__":true,"id":1689}},"1733":{},"1734":{"varMapping":{"__isSmartRef__":true,"id":1735},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1736},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1735":{"this":{"__isSmartRef__":true,"id":1689}},"1736":{},"1737":{"data":[],"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"submorphs","description":"[]","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":1738}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1778}},"1738":{"sourceObj":{"__isSmartRef__":true,"id":1737},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1739},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1739":{"item":{"__isSmartRef__":true,"id":1737},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1740}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1773},"eventHandler":{"__isSmartRef__":true,"id":1774},"_ClipMode":"visible","derivationIds":[],"id":"B0FDA140-DF99-4144-845E-889FA499026A","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1775},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1741},"label":{"__isSmartRef__":true,"id":1754},"node":{"__isSmartRef__":true,"id":1740},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,540.0)"},"1740":{"submorphs":[{"__isSmartRef__":true,"id":1741},{"__isSmartRef__":true,"id":1754}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1769},"eventHandler":{"__isSmartRef__":true,"id":1770},"_ClipMode":"visible","derivationIds":[],"id":"E75C0262-35E4-4AD6-9237-8221D59EA6AD","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1771},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1739},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1741":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1742},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1743}],"eventHandler":{"__isSmartRef__":true,"id":1745},"_ClipMode":"visible","derivationIds":[],"id":"DA5B468F-3AAC-4EF0-8FF0-5858BB442D38","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1740},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1746},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1742":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1743":{"style":{"__isSmartRef__":true,"id":1744},"chunkOwner":{"__isSmartRef__":true,"id":1741},"_id":"_6072","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1744":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1745":{"morph":{"__isSmartRef__":true,"id":1741},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1746":{"onMouseDown":{"__isSmartRef__":true,"id":1747}},"1747":{"varMapping":{"__isSmartRef__":true,"id":1748},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1753},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1748":{"this":{"__isSmartRef__":true,"id":1741},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1749}},"1749":{"$super":{"__isSmartRef__":true,"id":1750}},"1750":{"varMapping":{"__isSmartRef__":true,"id":1751},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1752},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1751":{"obj":{"__isSmartRef__":true,"id":1741},"name":"onMouseDown"},"1752":{},"1753":{},"1754":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1755},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1756},{"__isSmartRef__":true,"id":1758}],"eventHandler":{"__isSmartRef__":true,"id":1760},"_ClipMode":"visible","derivationIds":[],"id":"A095F993-F3A4-466D-9727-98521584F8FD","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1740},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1761},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1755":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(88.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1756":{"style":{"__isSmartRef__":true,"id":1757},"chunkOwner":{"__isSmartRef__":true,"id":1754},"_id":"_6074","storedString":"submorphs ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1757":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1758":{"style":{"__isSmartRef__":true,"id":1759},"chunkOwner":{"__isSmartRef__":true,"id":1754},"_id":"_6075","storedString":"[]","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1759":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1760":{"morph":{"__isSmartRef__":true,"id":1754},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1761":{"onMouseDown":{"__isSmartRef__":true,"id":1762}},"1762":{"varMapping":{"__isSmartRef__":true,"id":1763},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1768},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1763":{"this":{"__isSmartRef__":true,"id":1754},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1764}},"1764":{"$super":{"__isSmartRef__":true,"id":1765}},"1765":{"varMapping":{"__isSmartRef__":true,"id":1766},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1767},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1766":{"obj":{"__isSmartRef__":true,"id":1754},"name":"onMouseDown"},"1767":{},"1768":{},"1769":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1770":{"morph":{"__isSmartRef__":true,"id":1740},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1771":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1772}},"1772":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1740},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1773":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1774":{"morph":{"__isSmartRef__":true,"id":1739},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1775":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1776}},"1776":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1777},"spacing":0,"container":{"__isSmartRef__":true,"id":1739},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1777":{"top":0,"right":0,"bottom":0,"left":0},"1778":{"onSelect":{"__isSmartRef__":true,"id":1779},"onExpand":{"__isSmartRef__":true,"id":1782},"onUpdateChildren":{"__isSmartRef__":true,"id":1785},"onUpdate":{"__isSmartRef__":true,"id":1788}},"1779":{"varMapping":{"__isSmartRef__":true,"id":1780},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1781},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1780":{"this":{"__isSmartRef__":true,"id":1737}},"1781":{},"1782":{"varMapping":{"__isSmartRef__":true,"id":1783},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1784},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1783":{"this":{"__isSmartRef__":true,"id":1737}},"1784":{},"1785":{"varMapping":{"__isSmartRef__":true,"id":1786},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1787},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1786":{"this":{"__isSmartRef__":true,"id":1737}},"1787":{},"1788":{"varMapping":{"__isSmartRef__":true,"id":1789},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1790},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1789":{"this":{"__isSmartRef__":true,"id":1737}},"1790":{},"1791":{"data":false,"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"syntaxHighlightingWhileTyping","description":"false","attributeConnections":[{"__isSmartRef__":true,"id":1792}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1832}},"1792":{"sourceObj":{"__isSmartRef__":true,"id":1791},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1793},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1793":{"item":{"__isSmartRef__":true,"id":1791},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1794}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1827},"eventHandler":{"__isSmartRef__":true,"id":1828},"_ClipMode":"visible","derivationIds":[],"id":"E429E3D4-D730-460A-A104-90E3F534DCCE","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1829},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1795},"label":{"__isSmartRef__":true,"id":1808},"node":{"__isSmartRef__":true,"id":1794},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,560.0)"},"1794":{"submorphs":[{"__isSmartRef__":true,"id":1795},{"__isSmartRef__":true,"id":1808}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1823},"eventHandler":{"__isSmartRef__":true,"id":1824},"_ClipMode":"visible","derivationIds":[],"id":"A2042FC1-E519-407B-ADB0-F3ACA8144278","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1825},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1793},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1795":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1796},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1797}],"eventHandler":{"__isSmartRef__":true,"id":1799},"_ClipMode":"visible","derivationIds":[],"id":"288E90A5-1DC1-4E68-BF3A-A6A6493EAF5F","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1794},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1800},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1796":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1797":{"style":{"__isSmartRef__":true,"id":1798},"chunkOwner":{"__isSmartRef__":true,"id":1795},"_id":"_6077","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1798":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1799":{"morph":{"__isSmartRef__":true,"id":1795},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1800":{"onMouseDown":{"__isSmartRef__":true,"id":1801}},"1801":{"varMapping":{"__isSmartRef__":true,"id":1802},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1807},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1802":{"this":{"__isSmartRef__":true,"id":1795},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1803}},"1803":{"$super":{"__isSmartRef__":true,"id":1804}},"1804":{"varMapping":{"__isSmartRef__":true,"id":1805},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1806},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1805":{"obj":{"__isSmartRef__":true,"id":1795},"name":"onMouseDown"},"1806":{},"1807":{},"1808":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1809},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1810},{"__isSmartRef__":true,"id":1812}],"eventHandler":{"__isSmartRef__":true,"id":1814},"_ClipMode":"visible","derivationIds":[],"id":"4A7B07D6-ECF2-4B99-B6DA-030A325C87EA","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1794},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1815},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1809":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(223.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1810":{"style":{"__isSmartRef__":true,"id":1811},"chunkOwner":{"__isSmartRef__":true,"id":1808},"_id":"_6079","storedString":"syntaxHighlightingWhileTyping ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1811":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1812":{"style":{"__isSmartRef__":true,"id":1813},"chunkOwner":{"__isSmartRef__":true,"id":1808},"_id":"_6080","storedString":"false","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1813":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1814":{"morph":{"__isSmartRef__":true,"id":1808},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1815":{"onMouseDown":{"__isSmartRef__":true,"id":1816}},"1816":{"varMapping":{"__isSmartRef__":true,"id":1817},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1822},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1817":{"this":{"__isSmartRef__":true,"id":1808},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1818}},"1818":{"$super":{"__isSmartRef__":true,"id":1819}},"1819":{"varMapping":{"__isSmartRef__":true,"id":1820},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1821},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1820":{"obj":{"__isSmartRef__":true,"id":1808},"name":"onMouseDown"},"1821":{},"1822":{},"1823":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1824":{"morph":{"__isSmartRef__":true,"id":1794},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1825":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1826}},"1826":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1794},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1827":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1828":{"morph":{"__isSmartRef__":true,"id":1793},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1829":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1830}},"1830":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1831},"spacing":0,"container":{"__isSmartRef__":true,"id":1793},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1831":{"top":0,"right":0,"bottom":0,"left":0},"1832":{"onSelect":{"__isSmartRef__":true,"id":1833},"onUpdate":{"__isSmartRef__":true,"id":1836}},"1833":{"varMapping":{"__isSmartRef__":true,"id":1834},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1835},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1834":{"this":{"__isSmartRef__":true,"id":1791}},"1835":{},"1836":{"varMapping":{"__isSmartRef__":true,"id":1837},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1838},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1837":{"this":{"__isSmartRef__":true,"id":1791}},"1838":{},"1839":{"data":[{"__isSmartRef__":true,"id":34}],"inspector":{"__isSmartRef__":true,"id":18},"parent":{"__isSmartRef__":true,"id":32},"name":"textChunks","description":"[...]","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":1840}],"doNotSerialize":["$$changed"],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1880}},"1840":{"sourceObj":{"__isSmartRef__":true,"id":1839},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1841},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1841":{"item":{"__isSmartRef__":true,"id":1839},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1842}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1875},"eventHandler":{"__isSmartRef__":true,"id":1876},"_ClipMode":"visible","derivationIds":[],"id":"28F53F9B-6995-4BCF-A3A7-0A0324C71781","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1877},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1843},"label":{"__isSmartRef__":true,"id":1856},"node":{"__isSmartRef__":true,"id":1842},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,580.0)"},"1842":{"submorphs":[{"__isSmartRef__":true,"id":1843},{"__isSmartRef__":true,"id":1856}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1871},"eventHandler":{"__isSmartRef__":true,"id":1872},"_ClipMode":"visible","derivationIds":[],"id":"43596186-348A-438F-847A-850651AABECE","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1873},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1841},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1843":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1844},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1845}],"eventHandler":{"__isSmartRef__":true,"id":1847},"_ClipMode":"visible","derivationIds":[],"id":"9E469355-98E5-454E-B0AB-A38144AF8B10","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1842},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1848},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1844":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1845":{"style":{"__isSmartRef__":true,"id":1846},"chunkOwner":{"__isSmartRef__":true,"id":1843},"_id":"_6082","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1846":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1847":{"morph":{"__isSmartRef__":true,"id":1843},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1848":{"onMouseDown":{"__isSmartRef__":true,"id":1849}},"1849":{"varMapping":{"__isSmartRef__":true,"id":1850},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1855},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1850":{"this":{"__isSmartRef__":true,"id":1843},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1851}},"1851":{"$super":{"__isSmartRef__":true,"id":1852}},"1852":{"varMapping":{"__isSmartRef__":true,"id":1853},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1854},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1853":{"obj":{"__isSmartRef__":true,"id":1843},"name":"onMouseDown"},"1854":{},"1855":{},"1856":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1857},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1858},{"__isSmartRef__":true,"id":1860}],"eventHandler":{"__isSmartRef__":true,"id":1862},"_ClipMode":"visible","derivationIds":[],"id":"C5B85412-C9AE-46A3-993C-714E52CB4AE3","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1842},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1863},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1857":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(103.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1858":{"style":{"__isSmartRef__":true,"id":1859},"chunkOwner":{"__isSmartRef__":true,"id":1856},"_id":"_6084","storedString":"textChunks ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1859":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1860":{"style":{"__isSmartRef__":true,"id":1861},"chunkOwner":{"__isSmartRef__":true,"id":1856},"_id":"_6085","storedString":"[...]","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1861":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1862":{"morph":{"__isSmartRef__":true,"id":1856},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1863":{"onMouseDown":{"__isSmartRef__":true,"id":1864}},"1864":{"varMapping":{"__isSmartRef__":true,"id":1865},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1870},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1865":{"this":{"__isSmartRef__":true,"id":1856},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1866}},"1866":{"$super":{"__isSmartRef__":true,"id":1867}},"1867":{"varMapping":{"__isSmartRef__":true,"id":1868},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1869},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1868":{"obj":{"__isSmartRef__":true,"id":1856},"name":"onMouseDown"},"1869":{},"1870":{},"1871":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1872":{"morph":{"__isSmartRef__":true,"id":1842},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1873":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1874}},"1874":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1842},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1875":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1876":{"morph":{"__isSmartRef__":true,"id":1841},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1877":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1878}},"1878":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1879},"spacing":0,"container":{"__isSmartRef__":true,"id":1841},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1879":{"top":0,"right":0,"bottom":0,"left":0},"1880":{"onSelect":{"__isSmartRef__":true,"id":1881},"onExpand":{"__isSmartRef__":true,"id":1884},"onUpdateChildren":{"__isSmartRef__":true,"id":1887},"onUpdate":{"__isSmartRef__":true,"id":1890}},"1881":{"varMapping":{"__isSmartRef__":true,"id":1882},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1883},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1882":{"this":{"__isSmartRef__":true,"id":1839}},"1883":{},"1884":{"varMapping":{"__isSmartRef__":true,"id":1885},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1886},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1885":{"this":{"__isSmartRef__":true,"id":1839}},"1886":{},"1887":{"varMapping":{"__isSmartRef__":true,"id":1888},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1889},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1888":{"this":{"__isSmartRef__":true,"id":1839}},"1889":{},"1890":{"varMapping":{"__isSmartRef__":true,"id":1891},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1892},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1891":{"this":{"__isSmartRef__":true,"id":1839}},"1892":{},"1893":{"inspector":{"__isSmartRef__":true,"id":18},"doNotSerialize":["data","$$changed"],"name":"","description":"inherited from lively.morphic.Text","children":[],"attributeConnections":[{"__isSmartRef__":true,"id":1894}],"doNotCopyProperties":["$$changed"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1934}},"1894":{"sourceObj":{"__isSmartRef__":true,"id":1893},"sourceAttrName":"changed","targetObj":{"__isSmartRef__":true,"id":1895},"targetMethodName":"update","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1895":{"item":{"__isSmartRef__":true,"id":1893},"parent":{"__isSmartRef__":true,"id":375},"depth":1,"submorphs":[{"__isSmartRef__":true,"id":1896}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1929},"eventHandler":{"__isSmartRef__":true,"id":1930},"_ClipMode":"visible","derivationIds":[],"id":"EC769FA8-6E89-4F4A-87F6-DCCF33955C53","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"layout":{"__isSmartRef__":true,"id":1931},"isInLayoutCycle":false,"draggingEnabled":false,"dragAndDrop":true,"childNodes":null,"icon":{"__isSmartRef__":true,"id":1897},"label":{"__isSmartRef__":true,"id":1910},"node":{"__isSmartRef__":true,"id":1896},"owner":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.Tree","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,600.0)"},"1896":{"submorphs":[{"__isSmartRef__":true,"id":1897},{"__isSmartRef__":true,"id":1910}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1925},"eventHandler":{"__isSmartRef__":true,"id":1926},"_ClipMode":"visible","derivationIds":[],"id":"6DD13732-310D-4D0F-A35D-3D926B75E37D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1927},"isInLayoutCycle":false,"owner":{"__isSmartRef__":true,"id":1895},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1897":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1898},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1899}],"eventHandler":{"__isSmartRef__":true,"id":1901},"_ClipMode":"visible","derivationIds":[],"id":"7E0BF690-19B8-4F08-85B5-6DF9559D6C91","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1896},"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1902},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1898":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1899":{"style":{"__isSmartRef__":true,"id":1900},"chunkOwner":{"__isSmartRef__":true,"id":1897},"_id":"_52","storedString":"►","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1900":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1901":{"morph":{"__isSmartRef__":true,"id":1897},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1902":{"onMouseDown":{"__isSmartRef__":true,"id":1903}},"1903":{"varMapping":{"__isSmartRef__":true,"id":1904},"source":"function onMouseDown(evt) {\n if (this.owner.owner.item.children && evt.isLeftMouseButtonDown()) {\n this.owner.owner.toggle();\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1909},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1904":{"this":{"__isSmartRef__":true,"id":1897},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1905}},"1905":{"$super":{"__isSmartRef__":true,"id":1906}},"1906":{"varMapping":{"__isSmartRef__":true,"id":1907},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1908},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1907":{"obj":{"__isSmartRef__":true,"id":1897},"name":"onMouseDown"},"1908":{},"1909":{},"1910":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1911},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1912},{"__isSmartRef__":true,"id":1914}],"eventHandler":{"__isSmartRef__":true,"id":1916},"_ClipMode":"visible","derivationIds":[],"id":"B388B7A0-012B-4F61-8507-7F8FE32EF834","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1896},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1917},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(15.0,0.0)"},"1911":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,16.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1912":{"style":{"__isSmartRef__":true,"id":1913},"chunkOwner":{"__isSmartRef__":true,"id":1910},"_id":"_1254","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1913":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1914":{"style":{"__isSmartRef__":true,"id":1915},"chunkOwner":{"__isSmartRef__":true,"id":1910},"_id":"_1255","storedString":" inherited from lively.morphic.Text","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1915":{"__serializedExpressions__":["color"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(169,169,169)"},"1916":{"morph":{"__isSmartRef__":true,"id":1910},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1917":{"onMouseDown":{"__isSmartRef__":true,"id":1918}},"1918":{"varMapping":{"__isSmartRef__":true,"id":1919},"source":"function onMouseDown(evt) {\n if (evt.isLeftMouseButtonDown() && this.owner.owner.item.onSelect) {\n this.owner.owner.getRootTree().select(this.owner.owner);\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1924},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1919":{"this":{"__isSmartRef__":true,"id":1910},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1920}},"1920":{"$super":{"__isSmartRef__":true,"id":1921}},"1921":{"varMapping":{"__isSmartRef__":true,"id":1922},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1923},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1922":{"obj":{"__isSmartRef__":true,"id":1910},"name":"onMouseDown"},"1923":{},"1924":{},"1925":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1926":{"morph":{"__isSmartRef__":true,"id":1896},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1927":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1928}},"1928":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1896},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1929":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1930":{"morph":{"__isSmartRef__":true,"id":1895},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1931":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1932}},"1932":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1933},"spacing":0,"container":{"__isSmartRef__":true,"id":1895},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1933":{"top":0,"right":0,"bottom":0,"left":0},"1934":{"onExpand":{"__isSmartRef__":true,"id":1935},"onUpdateChildren":{"__isSmartRef__":true,"id":1938},"onUpdate":{"__isSmartRef__":true,"id":1941}},"1935":{"varMapping":{"__isSmartRef__":true,"id":1936},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1937},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1936":{"this":{"__isSmartRef__":true,"id":1893}},"1937":{},"1938":{"varMapping":{"__isSmartRef__":true,"id":1939},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1940},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1939":{"this":{"__isSmartRef__":true,"id":1893}},"1940":{},"1941":{"varMapping":{"__isSmartRef__":true,"id":1942},"source":"function onUpdate() {\n this.description = \"inherited from \" + this.inspector.typename(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1943},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1942":{"this":{"__isSmartRef__":true,"id":1893}},"1943":{},"1944":{"onSelect":{"__isSmartRef__":true,"id":1945},"onExpand":{"__isSmartRef__":true,"id":1948},"onUpdateChildren":{"__isSmartRef__":true,"id":1951},"onUpdate":{"__isSmartRef__":true,"id":1954}},"1945":{"varMapping":{"__isSmartRef__":true,"id":1946},"source":"function onSelect(tree) { this.inspector.select(this, tree); }","funcProperties":{"__isSmartRef__":true,"id":1947},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1946":{"this":{"__isSmartRef__":true,"id":376}},"1947":{},"1948":{"varMapping":{"__isSmartRef__":true,"id":1949},"source":"function onExpand() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1950},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1949":{"this":{"__isSmartRef__":true,"id":376}},"1950":{},"1951":{"varMapping":{"__isSmartRef__":true,"id":1952},"source":"function onUpdateChildren() { this.inspector.expand(this); }","funcProperties":{"__isSmartRef__":true,"id":1953},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1952":{"this":{"__isSmartRef__":true,"id":376}},"1953":{},"1954":{"varMapping":{"__isSmartRef__":true,"id":1955},"source":"function onUpdate() {\n this.description = this.inspector.describe(this.data);\n }","funcProperties":{"__isSmartRef__":true,"id":1956},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1955":{"this":{"__isSmartRef__":true,"id":376}},"1956":{},"1957":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_NodeClass":["tree"],"_NodeId":"morph-01a6356e-c15d-4f8d-bbb6-8680b231177d","_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(357.0,620.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(0,0,0)"},"1958":{"morph":{"__isSmartRef__":true,"id":375},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1959":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1960}},"1960":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":{"__isSmartRef__":true,"id":1961},"spacing":0,"container":{"__isSmartRef__":true,"id":375},"isDefered":false,"__LivelyClassName__":"lively.morphic.Layout.TreeLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1961":{"top":0,"right":0,"bottom":0,"left":0},"1962":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1963},"derivationIds":[null],"id":"29A6219C-55DE-4ECC-9C26-6C13549D3D32","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1964}],"eventHandler":{"__isSmartRef__":true,"id":1966},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":false,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","_Align":"right","owner":{"__isSmartRef__":true,"id":1967},"__serializedExpressions__":["_Position"],"_MaxTextWidth":2,"_MinTextWidth":2,"_MaxTextHeight":null,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)"},"1963":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["morph","text"],"_NodeId":"morph-29a6219c-55de-4ecc-9c26-6c13549d3d32","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1964":{"style":{"__isSmartRef__":true,"id":1965},"chunkOwner":{"__isSmartRef__":true,"id":1962},"_id":"_5927","storedString":"▼","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1965":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1966":{"morph":{"__isSmartRef__":true,"id":1962},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1967":{"submorphs":[{"__isSmartRef__":true,"id":1962},{"__isSmartRef__":true,"id":1968}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1973},"derivationIds":[null],"id":"2AEC3E2F-CB91-46F1-B8C1-8D35A130458F","eventHandler":{"__isSmartRef__":true,"id":1974},"_ClipMode":"visible","droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"layout":{"__isSmartRef__":true,"id":1975},"isInLayoutCycle":false,"owner":null,"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)"},"1968":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1969},"derivationIds":[null],"id":"6978CD3E-475C-4D72-8FFC-4EE1D72E5A57","_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1970}],"cachedTextString":"undefined","eventHandler":{"__isSmartRef__":true,"id":1972},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":false,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"draggingEnabled":false,"_HandStyle":"default","owner":{"__isSmartRef__":true,"id":1967},"__serializedExpressions__":["_Position"],"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(15.0,0.0)"},"1969":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["morph","text"],"_NodeId":"morph-6978cd3e-475c-4d72-8ffc-4ee1d72e5a57","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(99.0,20.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1970":{"style":{"__isSmartRef__":true,"id":1971},"chunkOwner":{"__isSmartRef__":true,"id":1968},"_id":"_4928","storedString":"saved source","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1971":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1972":{"morph":{"__isSmartRef__":true,"id":1968},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1973":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"_NodeClass":["morph"],"_NodeId":"morph-2aec3e2f-cb91-46f1-b8c1-8d35a130458f","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(115.0,20.0)","_Padding":"lively.rect(0,0,0,0)"},"1974":{"morph":{"__isSmartRef__":true,"id":1967},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1975":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":1976}},"1976":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":5,"container":{"__isSmartRef__":true,"id":1967},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1977":{"reset":{"__isSmartRef__":true,"id":1978}},"1978":{"varMapping":{"__isSmartRef__":true,"id":1979},"source":"function reset() {\n this.item = null;\n this.submorphs.invoke(\"remove\");\n this.childNodes = null;\n this.setExtent(pt(1,1));\n this.applyLayout();\n}","funcProperties":{"__isSmartRef__":true,"id":1980},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1979":{"this":{"__isSmartRef__":true,"id":375}},"1980":{"timestamp":{"__isSmartRef__":true,"id":1981},"user":"cschuster","tags":[]},"1981":{"isSerializedDate":true,"string":"Wed May 30 2012 00:35:26 GMT+0200 (CEST)"},"1982":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":0,"_ClipMode":"visible","_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(296.9,273.2)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)"},"1983":{"partsSpaceName":"PartsBin/Basic","comment":"A simple box morph. A really blue one. Its amazing what you can build out of simple boxes.... Who needs stars when you got blue rectangles!","migrationLevel":4,"partName":"Rectangle","changes":[{"__isSmartRef__":true,"id":1984},{"__isSmartRef__":true,"id":1986},{"__isSmartRef__":true,"id":1988},{"__isSmartRef__":true,"id":1990},{"__isSmartRef__":true,"id":1992},{"__isSmartRef__":true,"id":1994}],"revisionOnLoad":163371,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1984":{"date":{"__isSmartRef__":true,"id":1985},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"1985":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"1986":{"date":{"__isSmartRef__":true,"id":1987},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"1987":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"1988":{"date":{"__isSmartRef__":true,"id":1989},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"1989":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"1990":{"date":{"__isSmartRef__":true,"id":1991},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"1991":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"1992":{"date":{"__isSmartRef__":true,"id":1993},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"1993":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"1994":{"date":{"__isSmartRef__":true,"id":1995},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"1995":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"1996":{"morph":{"__isSmartRef__":true,"id":374},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1997":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1998}},"1998":{"test01IsMorph":{"__isSmartRef__":true,"id":1999}},"1999":{"varMapping":{"__isSmartRef__":true,"id":2000},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":2001},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2000":{"this":{"__isSmartRef__":true,"id":1997}},"2001":{},"2002":{"resizeWidth":true,"resizeHeight":true},"2003":{"submorphs":[{"__isSmartRef__":true,"id":2004},{"__isSmartRef__":true,"id":2015}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2020},"derivationIds":[null,"1DDF17DF-89F1-41AF-8FED-513C5DA4861F","34E9C329-CF65-4830-925D-B24B87EE3DF6","11A0A064-4A2C-4690-9636-6789C5696F63","35948438-B473-40F3-8AFF-7CEAAEAD2F48","9C44EA9A-7CD0-40B1-B44A-BD97126020A9","ED63BB10-E75E-41F7-B171-17FB2E70028A","2A26EF6F-B65C-4040-A343-0B563A6D23FD","1BC60F94-B9FA-4039-97F3-537564196FD9","1A3FCF3A-2B05-489C-A6A2-1BA668DD41C6","C5D0589C-A5E3-4EA4-8786-F69A01B8E54F","9018B830-2426-40E1-99E3-F8DD145D2907","8916D213-ED73-48BE-8C12-90AA950ECD3A","0EEEC303-0DA5-4A8A-9B2F-12D43E2AFEC2","756D8367-C492-435D-A58C-7777D259CAC9","0C785828-7A75-40B9-BA32-41E2E7BCF232","1CB7A529-70B5-4DB1-9A21-2DA7902316FC","9B3670A6-E75D-46C9-A993-21AA2E164105","080D3171-89D5-4048-AF20-47F19CB803C3","7F75402B-27C7-4D87-B0C3-BACA111C472F"],"id":"8752A287-3C92-42C3-A27B-D6259797C1F8","eventHandler":{"__isSmartRef__":true,"id":2021},"_ClipMode":"visible","droppingEnabled":true,"halosEnabled":true,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":18},"__serializedExpressions__":["_Position"],"showsHalos":false,"layout":{"__isSmartRef__":true,"id":2022},"isInLayoutCycle":false,"prevScroll":[0,0],"isCopyMorphRef":true,"morphRefId":2,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(8.1,8.1)"},"2004":{"submorphs":[],"scripts":[],"id":"E55595A5-ED5F-4E09-A23F-9A7F39AA4B20","shape":{"__isSmartRef__":true,"id":2005},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","eventHandler":{"__isSmartRef__":true,"id":2006},"__serializedExpressions__":["_Position","distanceToDragEvent"],"itemList":[{"__isSmartRef__":true,"id":2007},{"__isSmartRef__":true,"id":2008},{"__isSmartRef__":true,"id":2009},{"__isSmartRef__":true,"id":2010}],"selectOnMove":false,"showsHalos":false,"attributeConnections":[{"__isSmartRef__":true,"id":2011}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"name":"ObjectInspectorFilterList","partsBinMetaInfo":{"__isSmartRef__":true,"id":2013},"prevScroll":[0,0],"selectedLineNo":0,"valueScale":1,"changeTriggered":false,"derivationIds":[11781,"5102790A-CF88-40E4-A4D5-2F4DC18EE7F4","99147EDF-9E62-4AEC-ADD3-8AE47D5B9CA5","5C61633B-2FCB-439D-BAF5-65CB4D143B97","B4426A19-F07D-430E-B4A0-A62E57595CC6","73A966DD-D592-4638-96F9-60608A6829A4","8685C59F-E3BA-4E8B-8BF3-F0B2DA4C489A","FFE81A11-EA11-4EC7-BDD2-4CD8CD233795","B99EF2EF-3A62-4E7B-BE60-1BE2827CCE65","A11E3246-8FFF-424D-88EE-BD89875802AD","AC6169D4-D438-4C2E-A28C-BD36B8083EBA","C767CCD0-8B53-4669-AE15-191BC54D43A8","16D2E351-C720-4868-AF19-37373DF22E18","E3043356-AEC3-4047-8F77-CE2FCFBD9A33","6731C1BC-FBBD-456C-9A73-725075E36BE2","BE9906CB-B16B-45B1-86E3-B9255D31570A","390F5946-D572-43AA-A8FE-690DE6A1E2D4","EF4BBFB3-414A-42A1-8521-04CAADCBCD93","4A9BE8E6-AB6E-493F-9C84-3111FB900D84","473226F1-A5A0-4CC0-B0BB-180AEA66B015","95CE6728-720A-4805-93F3-8B7F6F7F2533","B3008B04-B3D3-48CB-B7C8-646CB1BA84BC"],"owner":{"__isSmartRef__":true,"id":2003},"selection":"standard","layout":{"__isSmartRef__":true,"id":2014},"#startLetters":"","isBeingDragged":false,"_Rotation":0,"_Scale":0.998001,"__LivelyClassName__":"lively.morphic.DropDownList","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(92.0,0.0)","distanceToDragEvent":"lively.pt(89.0,-13.9)"},"2005":{"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(204.9,21.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)","_Padding":"lively.rect(0,0,0,0)"},"2006":{"morph":{"__isSmartRef__":true,"id":2004},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2007":{"isListItem":true,"string":"show standard properties","value":"standard"},"2008":{"isListItem":true,"string":"show all properties","value":"properties"},"2009":{"isListItem":true,"string":"show functions","value":"functions"},"2010":{"isListItem":true,"string":"show morphs","value":"submorphs"},"2011":{"sourceObj":{"__isSmartRef__":true,"id":2004},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":18},"targetMethodName":"setFilter","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":2012},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2012":{"source":{"__isSmartRef__":true,"id":2004},"target":{"__isSmartRef__":true,"id":18}},"2013":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","comment":"\"Native\" drop down list","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2014":{"resizeWidth":true},"2015":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2016},"derivationIds":[null,"E88A53FB-D21B-44BB-BDFD-869442C56311","0F787D3F-D240-44AF-ACF9-68B168A37AF6","A057ACC6-677C-4F53-B1D5-9938B56D0FEB","9732F158-76D9-4A36-8A15-548AF9D33FDE","27B1C939-33F2-47D5-832F-A75A78CB87AB","14D838C8-A334-48E3-81C0-D163F3856BC8","8ED36FD4-3BC1-4666-9D10-9D5B011CCC09","03AB1784-1272-475D-907F-BCED9FB98003","9B479E1E-E883-48A8-A81E-C9401988816C","95B8D1CF-CA5A-467B-8E75-190C0F92968F","61D66172-31A5-4E3A-A8DA-7DB2A7E60829","2D0FA765-B758-4A5A-A27C-EC16E95D2F0A","AD1A023D-D343-4F30-8EE9-5CA1E5C6DFCA","FDBEE6AB-A3AC-4E07-B69A-202BF0E33B71","7A8530D3-BFD4-4C90-9F6E-FB5C59BB4E86","B9F96B7E-3E06-4CFB-8E58-DA25B52A5E53","ED1FEFD6-32CA-4FAD-A1D4-742130C739D9","53B9FE5E-BDCF-4A83-B227-BF0D13186017","FDF8DD2F-775D-4630-977E-68B1C8CB8E1B"],"id":"0243D9E7-7139-4E0B-9CA7-E9486122E9D7","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2017}],"eventHandler":{"__isSmartRef__":true,"id":2019},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":2003},"_MaxTextWidth":84,"_MinTextWidth":84,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedExpressions__":["_Position"],"showsHalos":false,"#startLetters":"can","isBeingDragged":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)"},"2016":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["morph","text"],"_NodeId":"morph-e88a53fb-d21b-44bb-bdfd-869442c56311","_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(92.0,0.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2017":{"style":{"__isSmartRef__":true,"id":2018},"chunkOwner":{"__isSmartRef__":true,"id":2015},"storedString":"Filter:","_id":"_2549","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2018":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2019":{"morph":{"__isSmartRef__":true,"id":2015},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2020":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"_NodeClass":["morph"],"_NodeId":"morph-1ddf17df-89f1-41af-8fed-513c5da4861f","_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(296.9,28.1)","_Padding":"lively.rect(0,0,0,0)"},"2021":{"morph":{"__isSmartRef__":true,"id":2003},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2022":{"resizeWidth":true,"layouter":{"__isSmartRef__":true,"id":2023},"adjustForNewBounds":true,"__serializedExpressions__":["extentWithoutPlaceholder"],"extentWithoutPlaceholder":"lively.pt(358.2,100.0)"},"2023":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":0,"spacing":0,"container":{"__isSmartRef__":true,"id":2003},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"2024":{"target":{"__isSmartRef__":true,"id":18},"selector":"update","args":[],"stopped":false,"tickTime":500,"suspended":false,"__LivelyClassName__":"lively.morphic.TargetScript","__SourceModuleName__":"Global.lively.morphic.Core"},"2025":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(313.2,397.4)","_BorderColor":"Color.rgb(95,94,95)","_Fill":"Color.rgb(235,235,235)","_Padding":"lively.rect(0,0,0,0)"},"2026":{"partsSpaceName":"PartsBin/Tools","comment":"A tool for inspecting an object. Very similar to the ObjectExplorer but a lot faster and with the ability to edit primitives.","migrationLevel":4,"partName":"ObjectInspector","changes":[{"__isSmartRef__":true,"id":2027},{"__isSmartRef__":true,"id":2029},{"__isSmartRef__":true,"id":2031},{"__isSmartRef__":true,"id":2033},{"__isSmartRef__":true,"id":2035},{"__isSmartRef__":true,"id":2037},{"__isSmartRef__":true,"id":2039}],"revisionOnLoad":163371,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2027":{"date":{"__isSmartRef__":true,"id":2028},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"2028":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"2029":{"date":{"__isSmartRef__":true,"id":2030},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"2030":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"2031":{"date":{"__isSmartRef__":true,"id":2032},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"2032":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"2033":{"date":{"__isSmartRef__":true,"id":2034},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"2034":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"2035":{"date":{"__isSmartRef__":true,"id":2036},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"2036":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"2037":{"date":{"__isSmartRef__":true,"id":2038},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"2038":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"2039":{"date":{"__isSmartRef__":true,"id":2040},"author":"cschuster","message":"initial commit. still a lot of work to do.","id":"258D3B7C-8C70-4B34-962F-E2F39A8596D5"},"2040":{"isSerializedDate":true,"string":"Tue May 29 2012 23:52:57 GMT+0200 (CEST)"},"2041":{"morph":{"__isSmartRef__":true,"id":18},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2042":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2043}},"2043":{"test01IsMorph":{"__isSmartRef__":true,"id":2044}},"2044":{"varMapping":{"__isSmartRef__":true,"id":2045},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":2046},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2045":{"this":{"__isSmartRef__":true,"id":2042}},"2046":{},"2047":{"layouter":{"__isSmartRef__":true,"id":2048},"__serializedExpressions__":["extentWithoutPlaceholder"],"resizeWidth":true,"resizeHeight":true,"extentWithoutPlaceholder":"lively.pt(378.2,441.4)"},"2048":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":8.145000000000001,"spacing":4.930000000000001,"container":{"__isSmartRef__":true,"id":18},"__LivelyClassName__":"lively.morphic.Layout.VerticalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"2049":{"inspect":{"__isSmartRef__":true,"id":2050},"reset":{"__isSmartRef__":true,"id":2054},"select":{"__isSmartRef__":true,"id":2058},"createItem":{"__isSmartRef__":true,"id":2062},"describe":{"__isSmartRef__":true,"id":2066},"update":{"__isSmartRef__":true,"id":2070},"expand":{"__isSmartRef__":true,"id":2074},"setFilter":{"__isSmartRef__":true,"id":2078},"isPrimitive":{"__isSmartRef__":true,"id":2082},"createPrototypeItem":{"__isSmartRef__":true,"id":2086},"typename":{"__isSmartRef__":true,"id":2090},"getFilter":{"__isSmartRef__":true,"id":2094}},"2050":{"varMapping":{"__isSmartRef__":true,"id":2051},"source":"function inspect(obj) {\n if (this.owner.isWindow) {\n this.owner.setTitle(this.describe(obj));\n }\n this.get(\"ObjectInspectorText\").doitContext = obj;\n if (!this.filter) this.get(\"ObjectInspectorFilterList\").selectAt(0);\n this.tree = this.get(\"ObjectInspectorTree\");\n this.tree.setItem(this.createItem({\"\": obj}, \"\", true));\n this.startStepping(500, 'update');\n}","funcProperties":{"__isSmartRef__":true,"id":2052},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2051":{"this":{"__isSmartRef__":true,"id":18}},"2052":{"timestamp":{"__isSmartRef__":true,"id":2053},"user":"cschuster","tags":[]},"2053":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"2054":{"varMapping":{"__isSmartRef__":true,"id":2055},"source":"function reset() {\n if (this.owner.isWindow) {\n this.owner.setTitle(\"ObjectInspector\");\n }\n this.get(\"ObjectInspectorText\").textString = \"this\";\n this.get(\"ObjectInspectorText\").doitContext = null;\n this.stopStepping();\n this.get(\"ObjectInspectorTree\").reset();\n this.get(\"ObjectInspectorFilterList\").setList([\n {isListItem: true,\n string: \"show standard properties\",\n value: \"standard\"},\n {isListItem:true, \n string:\"show all properties\", \n value: \"properties\"},\n {isListItem:true, \n string:\"show functions\", \n value: \"functions\"},\n {isListItem:true, \n string:\"show morphs\", \n value: \"submorphs\"}]);\n this.get(\"ObjectInspectorFilterList\").selectAt(0);\n this.applyLayout();\n}","funcProperties":{"__isSmartRef__":true,"id":2056},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2055":{"this":{"__isSmartRef__":true,"id":18}},"2056":{"timestamp":{"__isSmartRef__":true,"id":2057},"user":"cschuster","tags":[]},"2057":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"2058":{"varMapping":{"__isSmartRef__":true,"id":2059},"source":"function select(item, tree) {\n if (item.data !== null && item.data !== undefined) {\n this.get(\"ObjectInspectorText\").doitContext = item.data;\n }\n if (Object.isString(item.data) ||\n Object.isNumber(item.data) ||\n Object.isBoolean(item.data)) {\n Object.addScript(item, function onEdit(str) {\n var val = str;\n if (val === \"null\") val = null;\n if (val === \"true\") val = true;\n if (val === \"false\") val = false;\n if (Object.isString(val) && val.match(/^\\d+$/)) val = parseInt(val);\n this.parent[this.name] = val;\n });\n tree.editDescription();\n }\n}","funcProperties":{"__isSmartRef__":true,"id":2060},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2059":{"this":{"__isSmartRef__":true,"id":18}},"2060":{"timestamp":{"__isSmartRef__":true,"id":2061},"user":"cschuster","tags":[]},"2061":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"2062":{"varMapping":{"__isSmartRef__":true,"id":2063},"source":"function createItem(obj, property, isRoot) {\n var value = obj[property];\n var item = {data: value, inspector: this, parent: obj};\n if (!isRoot) item.name = property;\n item.description = this.describe(value);\n Object.addScript(item, function onSelect(tree) { this.inspector.select(this, tree); });\n if (!this.isPrimitive(value)) {\n item.children = [];\n Object.addScript(item, function onExpand() { this.inspector.expand(this); });\n Object.addScript(item, function onUpdateChildren() { this.inspector.expand(this); });\n }\n Object.addScript(item, function onUpdate() {\n this.description = this.inspector.describe(this.data);\n });\n return item;\n}","funcProperties":{"__isSmartRef__":true,"id":2064},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2063":{"this":{"__isSmartRef__":true,"id":18}},"2064":{"timestamp":{"__isSmartRef__":true,"id":2065},"user":"cschuster","tags":[]},"2065":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"2066":{"varMapping":{"__isSmartRef__":true,"id":2067},"source":"function describe(obj) {\n var str;\n if (obj && obj.name) {\n str = Object.isFunction(obj.name) ? obj.name() : obj.name;\n }\n if (!str) str = Objects.shortPrintStringOf(obj);\n if (str.length > 32) str = str.substring(0, 36) + '...';\n return str;\n}","funcProperties":{"__isSmartRef__":true,"id":2068},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2067":{"this":{"__isSmartRef__":true,"id":18}},"2068":{"timestamp":{"__isSmartRef__":true,"id":2069},"user":"cschuster","tags":[]},"2069":{"isSerializedDate":true,"string":"Mon Jul 02 2012 23:16:12 GMT+0200 (CEST)"},"2070":{"varMapping":{"__isSmartRef__":true,"id":2071},"source":"function update() {\n if (this.tree.item) this.tree.update();\n}","funcProperties":{"__isSmartRef__":true,"id":2072},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2071":{"this":{"__isSmartRef__":true,"id":18}},"2072":{"timestamp":{"__isSmartRef__":true,"id":2073},"user":"cschuster","tags":[]},"2073":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"2074":{"varMapping":{"__isSmartRef__":true,"id":2075},"source":"function expand(item) {\n var props = Properties.allProperties(item.data, this.getFilter());\n if (!Object.isArray(item.data)) props = props.sort();\n var newChildren = [];\n var lookup = {};\n item.children.each(function(i) { lookup[i.name] = i; });\n props.each(function(prop) {\n var existing = lookup[prop];\n if (existing) {\n existing.data = item.data[prop];\n newChildren.push(existing);\n } else {\n newChildren.push(this.createItem(item.data, prop));\n }\n }.bind(this));\n var proto = !Object.isFunction(item.data) &&\n !this.isPrimitive(item.data) &&\n Object.getPrototypeOf(item.data);\n if (proto) {\n var existing = item.children.detect(function(i) { return i.data === proto; });\n if (existing) {\n newChildren.push(existing);\n } else {\n newChildren.push(this.createPrototypeItem(proto));\n }\n }\n item.children = newChildren;\n}","funcProperties":{"__isSmartRef__":true,"id":2076},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2075":{"this":{"__isSmartRef__":true,"id":18}},"2076":{"timestamp":{"__isSmartRef__":true,"id":2077},"user":"cschuster","tags":[]},"2077":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:20:47 GMT+0200 (CEST)"},"2078":{"varMapping":{"__isSmartRef__":true,"id":2079},"source":"function setFilter(str) {\n var startsAlphaNum = /^[a-zA-Z0-9]/;\n var fn = {\n standard: function(obj, prop) {\n return obj.hasOwnProperty(prop) &&\n startsAlphaNum.test(prop) &&\n !Object.isFunction(obj[prop]);\n },\n properties: function(obj, prop) {\n return obj.hasOwnProperty(prop) &&\n !Object.isFunction(obj[prop]);\n },\n functions: function(obj, prop) {\n return obj.hasOwnProperty(prop) &&\n Object.isFunction(obj[prop]);\n },\n submorphs: function(obj, prop) {\n return obj.hasOwnProperty(prop) &&\n (prop == 'submorphs' || obj[prop] instanceof lively.morphic.Morph);\n },\n };\n this.filter = fn[str];\n var that = this;\n this.tree.layoutAfter(function() { that.update(); });\n}","funcProperties":{"__isSmartRef__":true,"id":2080},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2079":{"this":{"__isSmartRef__":true,"id":18}},"2080":{"timestamp":{"__isSmartRef__":true,"id":2081},"user":"cschuster","tags":[]},"2081":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"2082":{"varMapping":{"__isSmartRef__":true,"id":2083},"source":"function isPrimitive(value) {\n return value === null ||\n value === undefined ||\n Object.isString(value) ||\n Object.isNumber(value) ||\n Object.isBoolean(value);\n}","funcProperties":{"__isSmartRef__":true,"id":2084},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2083":{"this":{"__isSmartRef__":true,"id":18}},"2084":{"timestamp":{"__isSmartRef__":true,"id":2085},"user":"cschuster","tags":[]},"2085":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"2086":{"varMapping":{"__isSmartRef__":true,"id":2087},"source":"function createPrototypeItem(proto) {\n var that = this;\n var item = {data: proto, inspector: this, doNotSerialize: [\"data\"]};\n item.name = \"\";\n item.description = \"inherited from \" + this.typename(proto);\n item.children = [];\n Object.addScript(item, function onExpand() { this.inspector.expand(this); });\n Object.addScript(item, function onUpdateChildren() { this.inspector.expand(this); });\n Object.addScript(item, function onUpdate() {\n this.description = \"inherited from \" + this.inspector.typename(this.data);\n });\n return item;\n}","funcProperties":{"__isSmartRef__":true,"id":2088},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2087":{"this":{"__isSmartRef__":true,"id":18}},"2088":{"timestamp":{"__isSmartRef__":true,"id":2089},"user":"cschuster","tags":[]},"2089":{"isSerializedDate":true,"string":"Wed Aug 01 2012 04:04:06 GMT+0200 (CEST)"},"2090":{"varMapping":{"__isSmartRef__":true,"id":2091},"source":"function typename(proto) {\n return proto.constructor.type || proto.constructor.name || proto.toString();\n}","funcProperties":{"__isSmartRef__":true,"id":2092},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2091":{"this":{"__isSmartRef__":true,"id":18}},"2092":{"timestamp":{"__isSmartRef__":true,"id":2093},"user":"cschuster","tags":[]},"2093":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"2094":{"varMapping":{"__isSmartRef__":true,"id":2095},"source":"function getFilter() {\n if (!this.filter) {\n this.setFilter(this.get(\"ObjectInspectorFilterList\").getSelectedItem());\n }\n return this.filter;\n}","funcProperties":{"__isSmartRef__":true,"id":2096},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2095":{"this":{"__isSmartRef__":true,"id":18}},"2096":{"timestamp":{"__isSmartRef__":true,"id":2097},"user":"cschuster","tags":[]},"2097":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:20:17 GMT+0200 (CEST)"},"2098":{"submorphs":[{"__isSmartRef__":true,"id":2099},{"__isSmartRef__":true,"id":2105},{"__isSmartRef__":true,"id":2128},{"__isSmartRef__":true,"id":2150}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2168},"derivationIds":[null,"28075D0B-7CAC-405C-BAF8-B282E172D749","DCFA25BA-84BC-4F48-9C96-4F3590529ACC","426E9C5D-2ECD-422C-9EBD-76664EA9A6CA","E8886075-8F6A-4768-A8EE-192E0C1E14F4","78D6F67C-2FAC-4BA8-B36E-39084936ECF5","DEA7AAFD-83FF-4AB3-BE0F-F7C86F637F27","AA85630A-E6E9-45E3-806A-24D738A31A95","0322591E-355C-49FD-9ADE-B4D5EC34196F","F101BA76-DF2C-4C17-8178-432A4133F0C6","C2AD11A7-537B-4227-A2D9-0EE7268C722A","55D4C5FD-F249-4F01-8EB7-C213F449B52A","25225008-D7D7-476F-9472-7DD2756DCFC8","5BB982C9-8175-4891-AD9B-473D78E385E8","541D01B4-33FC-4982-89C4-B57802BFF80B","736C8E77-FBB1-4A89-A00F-48275ABD411E","42A37021-5384-498C-B70B-A52DEC3332B7","2B6FFA82-B6F8-451F-A26A-76BC9B332BB9","CFB34C74-A60C-42F4-84C5-687F05AB0BE2","AC187724-96ED-4AB9-9A75-D34A76F79191","59953F7C-EE34-4703-BAC3-CCF49AECCE22","72C92052-3BDE-46CD-8ECD-10DF58B373D1","6E660F22-01C2-4446-BC5A-5C3D41DD3647","3471BA0F-48F2-44E5-85C3-318D7A376C54","86162C8D-B4D5-4D04-82A7-CF97CC420B7D","3E826192-846C-4F26-998B-A58F52DDB55C","638CD5D7-AF2C-4DDE-A873-42C977A7D51D","612870E6-BF3E-4222-90A3-E5D76CBECF0C","9E5C6864-8A39-412A-B2BF-A5329EB52198","FDCE99B9-F9E3-462D-8971-F422CCE29860","1C4392B3-2085-4154-9B90-84449728DB98","FCD42AC6-0981-4872-818D-A0551F3DBDFB"],"id":"FFC3E47D-16CA-4DCF-AC5B-1F101224B6E0","eventHandler":{"__isSmartRef__":true,"id":2172},"_ClipMode":"visible","droppingEnabled":false,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":2173},"__serializedExpressions__":["_Position"],"windowMorph":{"__isSmartRef__":true,"id":17},"label":{"__isSmartRef__":true,"id":2099},"closeButton":{"__isSmartRef__":true,"id":2105},"menuButton":{"__isSmartRef__":true,"id":2128},"collapseButton":{"__isSmartRef__":true,"id":2150},"owner":{"__isSmartRef__":true,"id":17},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"showsHalos":false,"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"2099":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2100},"derivationIds":[null,"31FA2D09-1F8A-4083-B066-2CC3D2BBACAE","6B7E96C6-049B-4641-BA54-B673CB73A064","3ED69202-3D5C-43CE-8E13-275F1E671D69","83300CB9-2C1A-498A-947D-BF8C0200CFBC","23D6B938-6414-4628-893F-0E11E7EFE9E2","B26F6FA7-7CD7-4051-A3FB-425420E48040","4F6EABA4-34AF-44B3-A78D-EAD4069BA7AD","0552E7F6-D294-411C-82BF-03D20514FCCD","62B4C1FF-7635-4DA2-BDAF-F423575DCBB5","3BD0E139-1419-47ED-9D55-3C89764E5966","7FB00B8E-7F2A-438F-8701-DE07C88ACFE5","AD72BA9F-61E4-4879-97C3-766FE62029C2","5AAD0E8F-AB3D-4160-BC11-17B27531B6F1","D45A2CDD-BC51-4687-B7D1-387F5C034F01","38AB4A6D-BB4A-4615-9521-F1CB5D69749D","10C1E77C-45FC-4AEC-9471-7B0C63C7F52B","B86C911B-B11B-420F-B227-6734675F4256","85B7637B-C9F9-4EE5-AA02-3C31330F291D","A03E0000-4E98-4351-B5E3-36D24F9C8068","A4812909-5D72-4FA6-914D-77E50A5C359B","9E11AB84-9936-48CE-8AF6-F3006E78F475","9CB4BF8A-0607-4DBA-A74B-00D51A685BD1","408F877F-39CB-49FF-A6F4-A6E5752EF861","C960D2D8-32C0-458E-A27B-613860EA59C4","5FA2FEEB-8A90-4E6C-8D4C-107AC92EE303","96C189A5-8DD5-4D78-99F8-A04ECBE29983","D29DE1A9-7188-46BE-8B7B-51AF6123E019","E06D1C7F-99E7-4CBF-A736-ED1B949B0A9A","4CE65162-1DAB-4D02-9B62-5D952826E8B2","04BB36C3-C24E-452B-B79E-A28E8B0173F9","93F5D7FB-577A-4C25-86CF-7E3CEF136446"],"id":"DE41AF9B-16D9-4E41-9F4B-0BF1F14FBE2B","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2101}],"eventHandler":{"__isSmartRef__":true,"id":2103},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":2104},"__serializedExpressions__":["_TextColor","_Position"],"_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":2098},"_MaxTextWidth":255.4010020035039,"_MinTextWidth":255.4010020035039,"_MaxTextHeight":null,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(102,102,102)","_Position":"lively.pt(20.0,3.0)"},"2100":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["text"],"_NodeId":"morph-31fa2d09-1f8a-4083-b066-2cc3d2bbacae","_BorderRadius":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(255.4,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2101":{"style":{"__isSmartRef__":true,"id":2102},"chunkOwner":{"__isSmartRef__":true,"id":2099},"_id":"_7","storedString":"Introspection","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2102":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2103":{"morph":{"__isSmartRef__":true,"id":2099},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2104":{"resizeWidth":true},"2105":{"submorphs":[{"__isSmartRef__":true,"id":2106}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2111},"derivationIds":[null,"E2A278DD-8EA6-480D-979B-E6878E6B6268","F103879C-B17C-40A0-8D72-3263EEFD96AF","B009C9CD-F814-4B40-82EA-171A8C1C36E6","EC1982FA-978A-4920-ABF4-19B5811E501C","49F70830-B134-47E0-A25E-74A497D3D0AD","A1DED3ED-53E0-47C5-B346-DF191D3B06E3","8758902D-C552-43D9-8982-140DE141E3CD","B1211A51-2E88-4E4A-8C4C-2B2575FE203D","1C8C9F98-AD41-4A39-9B65-2D93E917158F","EF8A4922-3C99-4106-AF9D-A85AE949DB77","8BE2E2D1-818F-45E5-A566-2DB2B8B76970","77EDCCDC-3370-4859-BF93-0D98DCB7B2F2","E7E8CDDB-2C4B-4090-A2D4-97D2824EC2C0","E2FF4515-82CA-4B59-A8F8-3A01D398B597","899BE5E0-2F50-4CCF-882E-631B643D2335","0DD95F9E-F53A-46C1-A00B-D9255BE12C59","00CABCDE-56B8-4B7C-ABF1-D99669277CFE","B76A5F43-D5A5-4CBD-9813-DCEAEC6D08E6","D5BD7D4F-73D6-450E-ABA7-8C9D0EA1F6C3","CA4958D8-00A0-4E9A-AF56-DF559925EEE2","38C21AEE-34A9-4E7A-899F-91AD55B3DCD6","3F3FE954-4F82-47CD-8A26-218AD029FC71","B3F648B4-A517-4CC0-AD95-4E0F41E34ACF","5F732208-5260-424B-ACFE-E407C164DDD1","5D403DE6-63F8-44FD-84C0-C38B3D7FED08","A1F0569A-9B0B-4592-AB49-FE64CB6C90A3","CA81B0EF-5031-486D-85F5-A97C27D87FA6","0375890D-38CE-4AB6-A733-2478F4267B33","74231CAF-D43C-406C-B0F6-DDB2E2A6FAE8","9A2E38B7-494F-4A6F-BABA-31AE9E60E968","849FA070-EC59-4661-B709-6663EB8F2A79"],"id":"43E2E031-4165-43F0-AB41-5A82566F2285","eventHandler":{"__isSmartRef__":true,"id":2117},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":2112},"lighterFill":{"__isSmartRef__":true,"id":2118},"label":{"__isSmartRef__":true,"id":2106},"owner":{"__isSmartRef__":true,"id":2098},"layout":{"__isSmartRef__":true,"id":2123},"attributeConnections":[{"__isSmartRef__":true,"id":2124},{"__isSmartRef__":true,"id":2126}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(294.4,3.0)"},"2106":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2107},"derivationIds":[null,"7F130EC0-D1F7-4EB0-847E-244A05C446A9","A717E2DD-8C6F-4063-A214-B0D41424973B","D700B0D2-E18B-491B-AF10-BF1FBFE0E90F","14203ED5-F062-435F-A9A0-95F67CF91490","5171429F-3A29-4BD0-8AFB-7634947DB093","7B8BB189-91DD-47E0-B959-9DA96DE05EF6","AC81BC02-1A2A-4020-A0C3-0086C982537C","4BF272E0-177D-40BA-B240-6FD1F273780E","0A6B9DF9-4A42-4197-BF9D-57EECACD7AC2","9DABDDAC-896B-444E-AE9F-6CE14FBD20F8","52E6D9EC-52C9-4B7D-80EB-0EEDE03FD0F3","05552FBA-B34E-40C6-B516-CCD2D675DE86","732CC18F-95BE-4BA6-AF91-A0A2DB7B0164","AFD8543A-C2DB-4484-9486-483B61657862","B5A805B1-B397-4014-B1F6-C006D8AC67E0","6D447F24-9164-41DE-923E-79DA128D5309","4724B3E3-C7AA-4016-9EF5-FEFA6CE50474","3A1EF21B-DCB0-4DFF-B896-6F3B106FC654","CDF6ED95-6B24-45E3-89EE-7165DA876679","F222CA83-CE0C-49AB-8547-4B43400C7465","D9F1A3EB-680D-4A70-9860-B0D2129CDAB9","EAB0CDAA-B4E7-4631-9EB7-62099D985C47","A6BA70E5-FD2C-4237-AE99-C9894C0C28CC","5476F059-9E77-489E-9791-B1D01ECF2873","B88B0F67-F9BA-4E72-AE8F-464AD241F9EF","733D6D8A-2F1A-4A4C-82AC-017B238FB710","9F7FC89E-8712-423E-9F4E-EEA28AB99473","7004D84C-19E2-4278-82D2-BECDBF24E422","9524E6EC-6881-4C19-BC4D-41771A9E42E0","31093B82-D723-4407-ABB0-3EAD2000F1DB","CB374A34-91EA-4292-A087-D301A5716668"],"id":"A8B2C1A5-9770-4D3C-B0C2-E6F8795C0CC2","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2108}],"eventHandler":{"__isSmartRef__":true,"id":2110},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":2105},"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2107":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["text"],"_NodeId":"morph-7f130ec0-d1f7-4eb0-847e-244a05c446a9","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(15.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2108":{"style":{"__isSmartRef__":true,"id":2109},"chunkOwner":{"__isSmartRef__":true,"id":2106},"storedString":"X","_id":"_2551","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2109":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2110":{"morph":{"__isSmartRef__":true,"id":2106},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2111":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":2112},"_StrokeOpacity":0,"_BorderRadius":5,"_NodeClass":["windowcontrol"],"_NodeId":"morph-e2a278dd-8ea6-480d-979b-e6878e6b6268","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"2112":{"stops":[{"__isSmartRef__":true,"id":2113},{"__isSmartRef__":true,"id":2114},{"__isSmartRef__":true,"id":2115},{"__isSmartRef__":true,"id":2116}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2113":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"2114":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"2115":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"2116":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"2117":{"morph":{"__isSmartRef__":true,"id":2105},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2118":{"stops":[{"__isSmartRef__":true,"id":2119},{"__isSmartRef__":true,"id":2120},{"__isSmartRef__":true,"id":2121},{"__isSmartRef__":true,"id":2122}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2119":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"2120":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2121":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2122":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"2123":{"moveHorizontal":true},"2124":{"sourceObj":{"__isSmartRef__":true,"id":2105},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":17},"targetMethodName":"getCloseHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":2125},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2125":{"source":{"__isSmartRef__":true,"id":2105},"target":{"__isSmartRef__":true,"id":17}},"2126":{"sourceObj":{"__isSmartRef__":true,"id":2105},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17},"targetMethodName":"initiateShutdown","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":2127},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2127":{"source":{"__isSmartRef__":true,"id":2105},"target":{"__isSmartRef__":true,"id":17}},"2128":{"submorphs":[{"__isSmartRef__":true,"id":2129}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2134},"derivationIds":[null,"3433C768-2CF0-4D29-8355-53EAAE20E4E6","701276E2-C731-4D38-9DC3-E5C815821F59","4FD4EAD7-7A75-4067-9615-231E8ABC3646","4D670AEE-6404-4007-8987-379642DEDC4B","BDFAF689-60D9-4496-887E-5868721C7C0A","8ED2A457-135D-462A-8FD8-51727DE62E2E","2AA9CBE7-A2D1-4797-8EB0-C29AC1627219","7EE5BA03-9434-4EF4-95CE-2DCDE5F571FD","D6DE19CA-C930-4D8B-9117-19E31DA398FF","33146C15-12BA-4F34-9BCB-53CE20153651","A9C2BAAC-350D-468F-AEF5-64820277E705","47E5483D-8030-4AC2-94F7-DEB9700680CB","F582537A-099C-43A8-84BE-32CCFF80B1FB","07962555-B9D5-42D8-B3FB-545827AE2EE1","3261A9DC-01C2-42DA-A230-254799CF6FC2","1720B188-25AF-4894-9AF8-709975DA9532","F5598BE6-5571-47E5-BC8A-8B10A47D26FB","A3822AF5-F8DF-472E-804A-241B840DE7AB","354E463D-EB87-4143-AB25-9888AA9ECD0F","622F0338-5D7B-464A-A902-C01BF2865C6E","5F82FA73-E45B-4EA5-92D7-637DEF6A5CB8","E69F9E50-3BA9-42B1-8EA3-9BCA1D44B870","A3F4C033-B2CE-41FA-8692-4BA628C92349","47F5CB14-3474-4310-A04E-80734409F6BE","82A3F556-E81D-4C13-8AB3-A1CCC00637A7","1D1FF0E1-C809-48D1-BBDA-F7517FB2D914","37C7C99D-13B3-40D9-A4AD-8E5A04FBBE01","692BD4D6-403F-42CE-8404-C98EBF2E9126","79904E18-2643-4BAD-902F-601518763876","5CDD2BF1-E7A9-4AD7-A946-84862F04C5AB","6594FB5B-6ACB-4066-BD14-75354B56DC5B"],"id":"55102CCB-9B66-4A72-B4E7-80F5202B6F24","eventHandler":{"__isSmartRef__":true,"id":2140},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":2112},"lighterFill":{"__isSmartRef__":true,"id":2141},"label":{"__isSmartRef__":true,"id":2129},"owner":{"__isSmartRef__":true,"id":2098},"attributeConnections":[{"__isSmartRef__":true,"id":2146},{"__isSmartRef__":true,"id":2148}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"2129":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2130},"derivationIds":[null,"C89C99D2-BB1B-4233-8D8A-C562F37A76C3","8E842F89-AB1C-498A-897A-085C5F0161E4","3861E31F-C32B-4B52-ABCA-DDB8F6CF796B","BF2C41B8-6FAE-4A79-B2AB-651185F2886D","8FAC9928-2A1D-46B9-8378-4CC3235E42A1","A050D228-C6ED-4263-924F-ADC5F54674B1","360DC24F-BF61-495C-8EA9-BE26824C06C1","D65B1346-D97F-44B6-A4E0-B93DD5D3D03C","6F343672-F6ED-45FA-AD41-D7DF892C7FA3","BA416109-27FE-4F69-8B7E-D138F84C89C7","4200D2EF-4C54-45A6-B4DE-2F766B74E1CB","6C7A7836-E552-4946-ADD8-1D1AB28F6CB7","E81CDD9E-34C1-4F56-B550-3DC5D08D41F1","6E6A1CFB-AFF6-4207-8D45-789F6A31A284","7F41417D-510C-4584-9022-8E68D170CAD4","CB46A6D2-0CF4-4F23-A631-1982B30194B3","0B8AF3C2-8675-4EC5-88D2-7D15D0A40567","1B323E72-0757-4C40-AB4F-B4984952BD3F","E85C0C5A-2836-4CA6-99EC-F067F1F78A05","56F49663-5737-4DB8-B9FF-ED03213E6DDF","1B588133-79A3-4EC0-8295-51FDD8164FBD","AFCEFB55-4D5B-4EA8-A8B0-7C00981F7301","B275B8AB-3ADE-4DCA-A427-01903BC09FF0","6AADC0E1-F847-4C5A-833A-F8A37C0FA98B","E0FCEB00-B28E-4E4F-9AF7-6ECEDFE58EFC","05BA18B0-3ED7-45A8-AC0F-D65775F81C05","8CBCF161-8A4A-4984-86A0-FE8DDF2F813E","41EAE110-1583-45D9-A0BD-3213C71773C6","FE828BE7-0B7E-4DAE-B289-E6E8DBBFFB67","B6EB7887-B90C-4385-84E0-78743C3AFDE9","E4633D72-D88F-4FF9-9412-1E5EA6D73446"],"id":"323EE72A-6FB2-4DBF-9B3E-79DD5D285B94","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2131}],"eventHandler":{"__isSmartRef__":true,"id":2133},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":2128},"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__serializedExpressions__":["_TextColor"],"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"2130":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["text"],"_NodeId":"morph-c89c99d2-bb1b-4233-8d8a-c562f37a76c3","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2131":{"style":{"__isSmartRef__":true,"id":2132},"chunkOwner":{"__isSmartRef__":true,"id":2129},"storedString":"M","_id":"_2552","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2132":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2133":{"morph":{"__isSmartRef__":true,"id":2129},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2134":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":2135},"_StrokeOpacity":0,"_BorderRadius":5,"_NodeClass":["windowcontrol"],"_NodeId":"morph-3433c768-2cf0-4d29-8355-53eaae20e4e6","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"2135":{"stops":[{"__isSmartRef__":true,"id":2136},{"__isSmartRef__":true,"id":2137},{"__isSmartRef__":true,"id":2138},{"__isSmartRef__":true,"id":2139}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2136":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"2137":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"2138":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"2139":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"2140":{"morph":{"__isSmartRef__":true,"id":2128},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2141":{"stops":[{"__isSmartRef__":true,"id":2142},{"__isSmartRef__":true,"id":2143},{"__isSmartRef__":true,"id":2144},{"__isSmartRef__":true,"id":2145}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2142":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"2143":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2144":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2145":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"2146":{"sourceObj":{"__isSmartRef__":true,"id":2128},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":17},"targetMethodName":"getMenuHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":2147},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2147":{"source":{"__isSmartRef__":true,"id":2128},"target":{"__isSmartRef__":true,"id":17}},"2148":{"sourceObj":{"__isSmartRef__":true,"id":2128},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17},"targetMethodName":"showTargetMorphMenu","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":2149},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2149":{"source":{"__isSmartRef__":true,"id":2128},"target":{"__isSmartRef__":true,"id":17}},"2150":{"submorphs":[{"__isSmartRef__":true,"id":2151}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2156},"derivationIds":[null,"72058018-6A30-418D-98FD-834FC5E4B88C","9321BE9F-D6F2-4437-8CE4-56C03A500090","0F3ED90E-A9A1-47F8-B26A-9477AC205B20","8977E0E4-26BC-49D0-856E-58964D65E7EC","F684CB3C-78BB-495B-8483-56B3C20952F5","7668E7E5-67D6-45A9-BBE5-D0A08138BF37","728B2672-4338-4D31-8764-876631D6D5F9","66653072-5481-4DBF-B840-CB3152A6A503","913659B7-9C06-4821-9DFD-95F94218F2E2","B522F35C-38A7-4818-94C4-ED778DF92851","A3EE3817-4C00-4852-9F1E-269C9972CDAD","CBAD66B3-1B97-49A5-88BE-15B01C9B48DD","2DD50DE4-F49A-4724-83C2-8E09076CB8B7","C5BC39A4-D762-4248-8002-AE9BCEDE5710","F72DE8BF-32F2-4E39-9E5A-FF9039148786","0F5A0DF6-AD68-4A19-84A1-B557A6BF6FBD","292BA96B-818D-4A26-8B8E-C2032C3F25C6","6E6A0B0F-A21F-4259-8FFC-60903F3861C6","9DF77024-7AC4-480B-B53D-B8F25091D4A6","32D8BABB-F4BE-432A-BA6D-C1C53694E5F1","33D021E4-8E4E-421B-99A9-9B770D8D7EB4","169404FF-686A-4EA9-916C-CDAE271596E1","4D85D573-A363-433F-8B92-B5F046A062D6","FC1AD70F-E93D-4F29-97DC-5DC056E1C058","2BF27D85-79D5-49D8-ABEB-3491F1570131","51B98CF8-4592-4C21-B57E-5C53DB8617DA","F04AC437-B829-4836-8D9C-FC11C83E828A","A68B0CFB-81FF-470A-9AD2-E9DA270B5AAB","F05206C4-1E63-41E1-99B3-A56EE2D88CB6","3D8F05D7-3D62-4E17-9161-945BE5747A69","C74A6AFD-A2B9-4750-AC94-BCBBEAF9803C"],"id":"83269706-FC65-4EB2-9DC6-82E3C32C5FB1","eventHandler":{"__isSmartRef__":true,"id":2157},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":2112},"lighterFill":{"__isSmartRef__":true,"id":2158},"label":{"__isSmartRef__":true,"id":2151},"owner":{"__isSmartRef__":true,"id":2098},"layout":{"__isSmartRef__":true,"id":2163},"attributeConnections":[{"__isSmartRef__":true,"id":2164},{"__isSmartRef__":true,"id":2166}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(275.4,3.0)"},"2151":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2152},"derivationIds":[null,"524FB482-42FB-4281-9139-3CE8727DFB9A","BC484300-5E42-4DC3-809C-B1B86B5BA3EA","1B9B29E7-289C-4A70-AFE3-7A554ABCEC9B","CE044C64-A6ED-4218-9F45-2A1103EC2817","48A66442-9F5F-4F8B-9591-F7F31F9CAA26","D9002827-C041-491A-AFF4-89693B7C1CC8","83B87867-AA1A-4409-B254-E1667266705A","A36F4372-93C2-47ED-A2F8-3ED19DACADE7","6FF859BD-E2C5-4D75-8ECB-961813EAE76E","022E209D-E750-42D3-90E2-22610ACC8A13","8F022158-FEEB-4E24-9C25-FE48CCD7BC05","05BF6FE8-29D3-4DE2-BC0E-A5CDDE9EECEA","4DBEF4B5-B438-42E7-8717-CB1ECEC6AD19","5C750EE0-64CA-4657-952C-19B8E0F1014F","1F94D990-7D34-4017-8166-C77979DB881D","1CAE6408-8F3C-4C8E-8296-E0079414EE29","C741C393-8996-4D8D-8093-DB1A671AC88D","DB63CF30-BEF7-4769-8F1A-43E4E8F028EE","0741B604-7E5B-4F1D-9BDB-B9FBECDBF3D2","7078B8B1-C8F4-4DBE-9365-72201B181987","5D3B9C7F-2DB4-4174-92B6-0483F22825F3","4E0F4BF7-1CE4-4DF1-8858-A6C93E18E6E6","43CFCCB5-3757-4A29-97DD-C4D6679A48E7","1E31E229-5CAD-4D15-9443-2A7810FE74DC","1D3FA769-516B-4DD3-8BB4-002A2AD1DACE","B8E566EA-DE2C-4BF9-9766-A9748FBAE8A9","C932D985-3B6A-4FD7-B089-0B736B91B487","B93C8329-13B0-4362-B0EF-9CB2DDDD79D0","4059DC28-03BF-4BAF-9DB9-0C9F0C9F87F0","01683285-A175-4FD4-AAA2-ABB16048515E","EE1E7460-BD27-476D-B117-4560A642F4CB"],"id":"B3A69D43-308F-416C-8242-BF6D402F5157","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2153}],"eventHandler":{"__isSmartRef__":true,"id":2155},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":2150},"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2152":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["text"],"_NodeId":"morph-524fb482-42fb-4281-9139-3ce8727dfb9a","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2153":{"style":{"__isSmartRef__":true,"id":2154},"chunkOwner":{"__isSmartRef__":true,"id":2151},"storedString":"–","_id":"_2553","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2154":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2155":{"morph":{"__isSmartRef__":true,"id":2151},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2156":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":2112},"_StrokeOpacity":0,"_BorderRadius":5,"_NodeClass":["windowcontrol"],"_NodeId":"morph-72058018-6a30-418d-98fd-834fc5e4b88c","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"2157":{"morph":{"__isSmartRef__":true,"id":2150},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2158":{"stops":[{"__isSmartRef__":true,"id":2159},{"__isSmartRef__":true,"id":2160},{"__isSmartRef__":true,"id":2161},{"__isSmartRef__":true,"id":2162}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2159":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"2160":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2161":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2162":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"2163":{"moveHorizontal":true},"2164":{"sourceObj":{"__isSmartRef__":true,"id":2150},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":17},"targetMethodName":"getCollapseHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":2165},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2165":{"source":{"__isSmartRef__":true,"id":2150},"target":{"__isSmartRef__":true,"id":17}},"2166":{"sourceObj":{"__isSmartRef__":true,"id":2150},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17},"targetMethodName":"toggleCollapse","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":2167},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2167":{"source":{"__isSmartRef__":true,"id":2150},"target":{"__isSmartRef__":true,"id":17}},"2168":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":2169},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","_NodeClass":["titlebar"],"_NodeId":"morph-28075d0b-7cac-405c-baf8-b282e172d749","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(314.4,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(102,102,102)"},"2169":{"stops":[{"__isSmartRef__":true,"id":2170},{"__isSmartRef__":true,"id":2171}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2170":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(255,255,255)"},"2171":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(163,163,163)"},"2172":{"morph":{"__isSmartRef__":true,"id":2098},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2173":{"resizeWidth":true,"adjustForNewBounds":true},"2174":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2175},"derivationIds":[null,"E34B7A68-766E-4DB7-A7E3-E4EE8A7079AC","7A7C4259-E86A-4D41-9B21-CE6D4EADF5A7","34C6ADC2-7F79-44A2-BEDF-A05F972B36BC","36694142-B04E-484B-957B-9BBF9784B20E","3CFE3EDB-8A42-4E75-A348-120654F234F2","3464720D-ABB2-4C88-BEEA-62B58DD08CD5","B5EA6ABC-057D-4A70-AB94-B3EDCA5E395E","05F4CC34-0F8A-43CA-94B6-9A543A70E55C","A2BF090C-5A85-4E54-92CA-6ABA47629E7B","DDD9B33B-824A-4C58-8107-67C5FADDFB72","09051614-6CE4-4984-B3CF-F3E78B5898B1","284F15EF-EA68-4F32-86F3-EA5DD3A23D1C","BE99321C-F9F7-45C2-9BED-3AC496C10878","344F1643-CC8E-4B9C-A57A-75074EDFDD12","E24B6723-2DA3-42B9-AE0B-1E28DA2C0CF8","035E96EC-B4F1-4D94-A31F-21750A89C148","658D2557-B37E-4C58-8618-9AF1E45EFA55","413248B4-5FDD-4647-9E20-F195F11DF903","20EF83E4-287D-4306-9EA0-65B7286C0E48","77F94626-E559-4BB8-B6EA-1EC2E50823C3","85515935-002D-4FF0-8C2B-E88837E5B98D","1B4B5619-CD65-49B8-939D-06D7DD9E0C4C","79748D72-9031-4011-9BD4-B7FE72461789","68C2CE7C-DB25-4911-B12A-8B0F69C8D46D","90DDEE95-E7B6-4FF5-A7B7-ED97BA99A75C","30A9C6A1-50FD-465E-8884-1FB4E887AA22","133E5671-4F3E-44AE-BA1C-8A23DFEFE806","8133C4D1-E8E5-4C70-BD30-B8BD467A97F0","19DEC829-053A-427D-B74C-447D4BFBBADF","F60BE0BE-9E27-495C-AD10-1BF48EF87F21","A6CCEFD6-C07E-4D58-8DBB-91E5EE97252D"],"id":"61F91EE6-AB16-4AFF-A0B5-A2BD3832C994","eventHandler":{"__isSmartRef__":true,"id":2179},"_ClipMode":"visible","droppingEnabled":true,"halosEnabled":true,"owner":{"__isSmartRef__":true,"id":17},"__serializedExpressions__":["_Position"],"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"dragStartPoint":null,"originalTargetExtent":null,"_Rotation":0,"_Scale":1.0000000000000009,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2180},"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","_Position":"lively.pt(300.4,405.4)"},"2175":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":2176},{"__isSmartRef__":true,"id":2177},{"__isSmartRef__":true,"id":2178}],"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill"],"_BorderWidth":0,"_BorderColor":null,"_NodeClass":["path"],"_NodeId":"morph-e34b7a68-766e-4db7-a7e3-e4ee8a7079ac","__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(-1.0,-1.0)","_Extent":"lively.pt(15.0,15.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(204,204,204)"},"2176":{"isAbsolute":true,"x":14,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"2177":{"isAbsolute":true,"x":14,"y":14,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"2178":{"isAbsolute":true,"x":0,"y":14,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"2179":{"morph":{"__isSmartRef__":true,"id":2174},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2180":{"onDragStart":{"__isSmartRef__":true,"id":2181},"onDrag":{"__isSmartRef__":true,"id":2188},"onDragEnd":{"__isSmartRef__":true,"id":2195}},"2181":{"varMapping":{"__isSmartRef__":true,"id":2182},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":2187},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2182":{"this":{"__isSmartRef__":true,"id":2174},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2183}},"2183":{"$super":{"__isSmartRef__":true,"id":2184}},"2184":{"varMapping":{"__isSmartRef__":true,"id":2185},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world) \n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2186},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2185":{"obj":{"__isSmartRef__":true,"id":2174},"name":"onDragStart"},"2186":{},"2187":{},"2188":{"varMapping":{"__isSmartRef__":true,"id":2189},"source":"function onDrag(evt) {\n var moveDelta = evt.mousePoint.subPt(this.dragStartPoint)\n if (evt.isShiftDown()) {\n var maxDelta = Math.max(moveDelta.x, moveDelta.y);\n\t moveDelta = pt(maxDelta, maxDelta);\n };\n this.owner.setExtent(this.originalTargetExtent.addPt(moveDelta));\n this.align(this.bounds().bottomRight(), this.owner.getExtent());\n }","funcProperties":{"__isSmartRef__":true,"id":2194},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2189":{"this":{"__isSmartRef__":true,"id":2174},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2190}},"2190":{"$super":{"__isSmartRef__":true,"id":2191}},"2191":{"varMapping":{"__isSmartRef__":true,"id":2192},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world) \n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2193},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2192":{"obj":{"__isSmartRef__":true,"id":2174},"name":"onDrag"},"2193":{},"2194":{},"2195":{"varMapping":{"__isSmartRef__":true,"id":2196},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n }","funcProperties":{"__isSmartRef__":true,"id":2201},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2196":{"this":{"__isSmartRef__":true,"id":2174},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2197}},"2197":{"$super":{"__isSmartRef__":true,"id":2198}},"2198":{"varMapping":{"__isSmartRef__":true,"id":2199},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world) \n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2200},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2199":{"obj":{"__isSmartRef__":true,"id":2174},"name":"onDragEnd"},"2200":{},"2201":{},"2202":{"__serializedExpressions__":["_Padding","_Extent"],"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_NodeClass":["window"],"_NodeId":"morph-cd7bcb08-eb4a-48cd-952b-53a1eaeb23d0","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Padding":"lively.rect(0,0,0,0)","_Extent":"lively.pt(314.4,419.4)"},"2203":{"morph":{"__isSmartRef__":true,"id":17},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2204":{"adjustForNewBounds":true},"2205":{"partsSpaceName":"PartsBin/Tools","comment":"A tool for inspecting an object. Very similar to the ObjectExplorer but a lot faster and with the ability to edit primitives, filter properties and display inheritance.","migrationLevel":4,"partName":"ObjectInspector","changes":[{"__isSmartRef__":true,"id":2206},{"__isSmartRef__":true,"id":2208},{"__isSmartRef__":true,"id":2210},{"__isSmartRef__":true,"id":2212},{"__isSmartRef__":true,"id":2214},{"__isSmartRef__":true,"id":2216},{"__isSmartRef__":true,"id":2218},{"__isSmartRef__":true,"id":2220},{"__isSmartRef__":true,"id":2222},{"__isSmartRef__":true,"id":2224},{"__isSmartRef__":true,"id":2226},{"__isSmartRef__":true,"id":2228},{"__isSmartRef__":true,"id":2230},{"__isSmartRef__":true,"id":2232},{"__isSmartRef__":true,"id":2234},{"__isSmartRef__":true,"id":2236},{"__isSmartRef__":true,"id":2238},{"__isSmartRef__":true,"id":2240},{"__isSmartRef__":true,"id":2242},{"__isSmartRef__":true,"id":2244},{"__isSmartRef__":true,"id":2246},{"__isSmartRef__":true,"id":2248},{"__isSmartRef__":true,"id":2250},{"__isSmartRef__":true,"id":2252},{"__isSmartRef__":true,"id":2254},{"__isSmartRef__":true,"id":2256},{"__isSmartRef__":true,"id":2258},{"__isSmartRef__":true,"id":2260},{"__isSmartRef__":true,"id":2262},{"__isSmartRef__":true,"id":2264},{"__isSmartRef__":true,"id":2266},{"__isSmartRef__":true,"id":2268},{"__isSmartRef__":true,"id":2270}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2206":{"date":{"__isSmartRef__":true,"id":2207},"author":"cschuster","message":"reset scale to 1","id":"44F3B7C5-4880-4E0C-8E1A-B0CE032E7594"},"2207":{"isSerializedDate":true,"string":"Fri Jun 29 2012 01:21:07 GMT+0200 (CEST)"},"2208":{"date":{"__isSmartRef__":true,"id":2209},"author":"cschuster","message":"fixed a bug with addScript","id":"A00EC8E9-2F93-46E8-A1C8-22588B39BC11"},"2209":{"isSerializedDate":true,"string":"Thu Jun 14 2012 20:36:16 GMT+0200 (CEST)"},"2210":{"date":{"__isSmartRef__":true,"id":2211},"author":"cschuster","message":"copying should now work","id":"334BC443-5022-4C12-8DE0-532B479A57DC"},"2211":{"isSerializedDate":true,"string":"Thu Jun 14 2012 20:14:16 GMT+0200 (CEST)"},"2212":{"date":{"__isSmartRef__":true,"id":2213},"author":"cschuster","message":"changed submorphs to morphs.","id":"F6E05A4D-23B9-4CCA-88DE-C14C35965B13"},"2213":{"isSerializedDate":true,"string":"Wed Jun 06 2012 18:56:30 GMT+0200 (CEST)"},"2214":{"date":{"__isSmartRef__":true,"id":2215},"author":"cschuster","message":"inheritance now works as well","id":"B6153C82-028D-48C6-A949-B9C16246B7E1"},"2215":{"isSerializedDate":true,"string":"Wed Jun 06 2012 03:06:06 GMT+0200 (CEST)"},"2216":{"date":{"__isSmartRef__":true,"id":2217},"author":"cschuster","message":"started work on displaying inherited properties.","id":"E2D295AA-8DC9-41F0-8699-3B4294FFA5A2"},"2217":{"isSerializedDate":true,"string":"Wed Jun 06 2012 02:46:47 GMT+0200 (CEST)"},"2218":{"date":{"__isSmartRef__":true,"id":2219},"author":"cschuster","message":"fixed handling of null and undefined values","id":"25FAB4E6-9A70-4E32-8213-1098C6A9C363"},"2219":{"isSerializedDate":true,"string":"Wed Jun 06 2012 01:57:14 GMT+0200 (CEST)"},"2220":{"date":{"__isSmartRef__":true,"id":2221},"author":"cschuster","message":"fixed problem with boolean values","id":"ECA8BC3D-29C8-4779-B61C-27DC9E13B7E2"},"2221":{"isSerializedDate":true,"string":"Wed Jun 06 2012 01:25:44 GMT+0200 (CEST)"},"2222":{"date":{"__isSmartRef__":true,"id":2223},"author":"cschuster","message":"fixed bug with primitive values.","id":"6B05214C-6EE6-4F5C-BA36-DFC15578CB12"},"2223":{"isSerializedDate":true,"string":"Wed Jun 06 2012 01:14:48 GMT+0200 (CEST)"},"2224":{"date":{"__isSmartRef__":true,"id":2225},"author":"cschuster","message":"better updating for collapsed items","id":"A37C0C9B-1F7F-49D9-BC86-CA97E05C812D"},"2225":{"isSerializedDate":true,"string":"Wed Jun 06 2012 01:12:20 GMT+0200 (CEST)"},"2226":{"date":{"__isSmartRef__":true,"id":2227},"author":"cschuster","message":"removed filter for inherited properties","id":"CABABBD4-BABE-4D47-8EBF-CED45960532B"},"2227":{"isSerializedDate":true,"string":"Wed Jun 06 2012 00:10:42 GMT+0200 (CEST)"},"2228":{"date":{"__isSmartRef__":true,"id":2229},"author":"cschuster","message":"editing of strings, numbers and boolean values","id":"CE0C9588-EB85-4390-B51B-BC51AA154F11"},"2229":{"isSerializedDate":true,"string":"Tue Jun 05 2012 02:33:18 GMT+0200 (CEST)"},"2230":{"date":{"__isSmartRef__":true,"id":2231},"author":"cschuster","message":"improved text editing","id":"C9950198-82AF-47B8-9BDF-04C7457FE598"},"2231":{"isSerializedDate":true,"string":"Tue Jun 05 2012 01:18:18 GMT+0200 (CEST)"},"2232":{"date":{"__isSmartRef__":true,"id":2233},"author":"cschuster","message":"now supports editing of string properties","id":"4DEA5157-6A26-46F4-AE4E-59112855E522"},"2233":{"isSerializedDate":true,"string":"Tue Jun 05 2012 00:44:13 GMT+0200 (CEST)"},"2234":{"date":{"__isSmartRef__":true,"id":2235},"author":"cschuster","message":"updating should work now. still needs some testing","id":"381E10DB-4391-42E3-A790-D5EAEFF2758B"},"2235":{"isSerializedDate":true,"string":"Sat Jun 02 2012 03:12:07 GMT+0200 (CEST)"},"2236":{"date":{"__isSmartRef__":true,"id":2237},"author":"cschuster","message":"initial commit. still a lot of work to do.","id":"258D3B7C-8C70-4B34-962F-E2F39A8596D5"},"2237":{"isSerializedDate":true,"string":"Tue May 29 2012 23:52:57 GMT+0200 (CEST)"},"2238":{"date":{"__isSmartRef__":true,"id":2239},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"2239":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"2240":{"date":{"__isSmartRef__":true,"id":2241},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"2241":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"2242":{"date":{"__isSmartRef__":true,"id":2243},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"2243":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"2244":{"date":{"__isSmartRef__":true,"id":2245},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"2245":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"2246":{"date":{"__isSmartRef__":true,"id":2247},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"2247":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"2248":{"date":{"__isSmartRef__":true,"id":2249},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"2249":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"2250":{"date":{"__isSmartRef__":true,"id":2251},"author":"cschuster","message":"faster updating","id":"BDDADEB8-FC7D-4240-965D-5C2A8106884F"},"2251":{"isSerializedDate":true,"string":"Mon Jun 04 2012 20:44:27 GMT+0200 (CEST)"},"2252":{"date":{"__isSmartRef__":true,"id":2253},"author":"cschuster","message":"now uses hidden root node","id":"63608436-F5CC-4F6C-8C9E-C4039CAAE8AE"},"2253":{"isSerializedDate":true,"string":"Mon Jun 04 2012 22:34:53 GMT+0200 (CEST)"},"2254":{"date":{"__isSmartRef__":true,"id":2255},"author":"cschuster","message":"now supports filtering","id":"CF4D534E-10BF-4727-8FB1-25AB7DEC6E48"},"2255":{"isSerializedDate":true,"string":"Tue Jun 05 2012 23:45:47 GMT+0200 (CEST)"},"2256":{"date":{"__isSmartRef__":true,"id":2257},"author":"cschuster","message":"fixed the problems with the unspecified filter.","id":"745E611A-B941-4FFD-9759-E982062C03B8"},"2257":{"isSerializedDate":true,"string":"Tue Jun 05 2012 23:51:21 GMT+0200 (CEST)"},"2258":{"date":{"__isSmartRef__":true,"id":2259},"author":"cschuster","message":"fixed bug with prototype of primitives.","id":"A3F3EEC4-36E8-4EC8-B2DD-8B899A275990"},"2259":{"isSerializedDate":true,"string":"Wed Jun 06 2012 03:16:23 GMT+0200 (CEST)"},"2260":{"date":{"__isSmartRef__":true,"id":2261},"author":"jenslincke","message":"added \"show submorphs\" to filter options","id":"93060C3D-5BE0-46C0-BF46-58B7C287E037"},"2261":{"isSerializedDate":true,"string":"Wed Jun 06 2012 10:58:01 GMT+0200 (CEST)"},"2262":{"date":{"__isSmartRef__":true,"id":2263},"author":"cschuster","message":"fixed description string for namespaces and clipping mode.","id":"9CB238CB-7069-43DE-81BD-C09B61A2BDB4"},"2263":{"isSerializedDate":true,"string":"Thu Jun 07 2012 00:19:24 GMT+0200 (CEST)"},"2264":{"date":{"__isSmartRef__":true,"id":2265},"author":"cschuster","message":"hopefully fixed the addScript bug","id":"D040A117-4200-449C-A492-272C4498EDBD"},"2265":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:43 GMT+0200 (CEST)"},"2266":{"date":{"__isSmartRef__":true,"id":2267},"author":"cschuster","message":"fixed serialization of filter","id":"776E7AFA-1299-4714-94C4-F514AC2A255C"},"2267":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:21:17 GMT+0200 (CEST)"},"2268":{"date":{"__isSmartRef__":true,"id":2269},"author":"cschuster","message":"fixed string describe bug","id":"B38CA966-52EB-420C-84FB-ADED1B421078"},"2269":{"isSerializedDate":true,"string":"Mon Jul 02 2012 23:16:55 GMT+0200 (CEST)"},"2270":{"date":{"__isSmartRef__":true,"id":2271},"author":"cschuster","message":"do not serialize prototype data","id":"E13FF3C5-692E-45E6-81DA-497C4F1A252B"},"2271":{"isSerializedDate":true,"string":"Wed Aug 01 2012 04:04:41 GMT+0200 (CEST)"},"2272":{"inspect":{"__isSmartRef__":true,"id":2273}},"2273":{"varMapping":{"__isSmartRef__":true,"id":2274},"source":"function inspect(obj) {\n this.get('ObjectInspector').inspect(obj);\n}","funcProperties":{"__isSmartRef__":true,"id":2275},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2274":{"this":{"__isSmartRef__":true,"id":17}},"2275":{"timestamp":{"__isSmartRef__":true,"id":2276},"user":"cschuster","tags":[]},"2276":{"isSerializedDate":true,"string":"Fri Jun 01 2012 21:32:31 GMT+0200 (CEST)"},"2277":{"submorphs":[{"__isSmartRef__":true,"id":2278},{"__isSmartRef__":true,"id":2288},{"__isSmartRef__":true,"id":2554},{"__isSmartRef__":true,"id":2595},{"__isSmartRef__":true,"id":2636}],"scripts":[],"id":"17037C40-8436-49D6-9E09-D05B30529706","shape":{"__isSmartRef__":true,"id":2654},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"showsHalos":false,"name":"flowFollower","partsBinMetaInfo":{"__isSmartRef__":true,"id":2655},"eventHandler":{"__isSmartRef__":true,"id":2672},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C","5F7F12D5-1492-4CA2-BA16-DD5C04E20B8B"],"partTests":{"__isSmartRef__":true,"id":2673},"_ClipMode":"visible","moved":true,"isBeingDragged":false,"prevScroll":[0,0],"doNotSerialize":["lastFrame"],"runScript":{"__isSmartRef__":true,"id":2678},"livingElements":{"__isSmartRef__":true,"id":2679},"maximumSteps":495,"owner":{"__isSmartRef__":true,"id":0},"ctx":{"__isSmartRef__":true,"id":2680},"stepCounter":0,"functionSource":"function(){\nvar j = 1;\nvar z = 3;\nfor(var i = 0; i< 70; i++) {\n var m = Morph.makeRectangle(0,0, 10,50)\n m.moveBy(pt(70,70))\n m.rotateBy(i * 0.1)\n m.setFill(Color.rgb(i * 10,0,0))\n this.addMorph(m) \n}\n\nthis.submorphs.invoke('remove')\n\n\n}","context":{"__isSmartRef__":true,"id":2775},"stepsToRun":318,"steps":318,"environmentCache":[null,{"__isSmartRef__":true,"id":2960},{"__isSmartRef__":true,"id":3085},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3333}],"#startLetters":"","oldStepsToRun":276,"isLockOwner":false,"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3520},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","withLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(1179.9,134.8)","distanceToDragEvent":"lively.pt(595.0,-12.0)"},"2278":{"submorphs":[],"scripts":[],"id":"DF0EB566-4F85-407E-9ECD-6A046ED8B638","shape":{"__isSmartRef__":true,"id":2279},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","textColor","distanceToDragEvent"],"_MaxTextWidth":345.6320000000002,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":9,"name":"functionEditor","partsBinMetaInfo":{"__isSmartRef__":true,"id":2280},"textChunks":[{"__isSmartRef__":true,"id":2281},{"__isSmartRef__":true,"id":2283},{"__isSmartRef__":true,"id":2285}],"charsReplaced":" ","lastFindLoc":164,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":2287},"derivationIds":[1958],"_WhiteSpaceHandling":"pre-wrap","_ClipMode":"visible","moved":true,"owner":{"__isSmartRef__":true,"id":2277},"_MinTextWidth":345.6320000000002,"_MinTextHeight":null,"savedTextString":"var j = 1;\nvar z = 3;\nfor(var i = 0; i< 70; i++) {\n var m = Morph.makeRectangle(0,0, 10,50)\n m.moveBy(pt(70,70))\n m.rotateBy(i * 0.1)\n m.setFill(Color.rgb(i * 10,0,0))\n this.addMorph(m) \n}\n\nthis.submorphs.invoke('remove')\n\n","isBeingDragged":false,"isLockOwner":false,"_Rotation":0,"_Scale":1,"priorSelectionRange":[21,0],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(25.0,69.0)","textColor":"Color.rgb(0,0,0)","distanceToDragEvent":"lively.pt(211.0,-8.0)"},"2279":{"fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1.1840000000000002,"_BorderRadius":6.660000000000001,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(363.0,206.4)","_BorderColor":"Color.rgb(192,192,192)","_Padding":"lively.rect(0,0,0,0)"},"2280":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":2,"comment":"Simple input field for Forms demo","partName":"InputField","revisionOnLoad":148665,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2281":{"style":{"__isSmartRef__":true,"id":2282},"morph":{"__isSmartRef__":true,"id":2278},"chunkOwner":{"__isSmartRef__":true,"id":2278},"storedString":"var j = 1;\nvar z = 3;\nfor(var i = 0; i< 70; i++) {\n var m = Morph.makeRectangle(0,0, 10,50)\n m.moveBy(pt(70,70))\n m.rotateBy(i * 0.1)\n m.setFill(Color.rgb(i * 10,0,0))\n ","_id":"_92833","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2282":{"color":"rgb(64,64,64)","fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","backgroundColor":"rgb(243,243,243)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2283":{"_id":"_36205","style":{"__isSmartRef__":true,"id":2284},"chunkOwner":{"__isSmartRef__":true,"id":2278},"storedString":"this.addMorph(m) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2284":{"color":"rgb(64,64,64)","fontFamily":"Monaco,monospace","fontSize":"12px","fontWeight":"normal","textAlign":"-webkit-auto","backgroundColor":"rgb(243,243,243)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2285":{"_id":"_36207","style":{"__isSmartRef__":true,"id":2286},"chunkOwner":{"__isSmartRef__":true,"id":2278},"storedString":"\n}\n\nthis.submorphs.invoke('remove')\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2286":{"color":"rgb(64,64,64)","fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","backgroundColor":"rgb(243,243,243)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2287":{"morph":{"__isSmartRef__":true,"id":2278},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2288":{"submorphs":[{"__isSmartRef__":true,"id":2289},{"__isSmartRef__":true,"id":2292},{"__isSmartRef__":true,"id":2295},{"__isSmartRef__":true,"id":2298},{"__isSmartRef__":true,"id":2301},{"__isSmartRef__":true,"id":2304},{"__isSmartRef__":true,"id":2307},{"__isSmartRef__":true,"id":2310},{"__isSmartRef__":true,"id":2313},{"__isSmartRef__":true,"id":2316},{"__isSmartRef__":true,"id":2319},{"__isSmartRef__":true,"id":2322},{"__isSmartRef__":true,"id":2325},{"__isSmartRef__":true,"id":2328},{"__isSmartRef__":true,"id":2331},{"__isSmartRef__":true,"id":2334},{"__isSmartRef__":true,"id":2337},{"__isSmartRef__":true,"id":2340},{"__isSmartRef__":true,"id":2343},{"__isSmartRef__":true,"id":2346},{"__isSmartRef__":true,"id":2349},{"__isSmartRef__":true,"id":2352},{"__isSmartRef__":true,"id":2355},{"__isSmartRef__":true,"id":2358},{"__isSmartRef__":true,"id":2361},{"__isSmartRef__":true,"id":2364},{"__isSmartRef__":true,"id":2367},{"__isSmartRef__":true,"id":2370},{"__isSmartRef__":true,"id":2373},{"__isSmartRef__":true,"id":2376},{"__isSmartRef__":true,"id":2379},{"__isSmartRef__":true,"id":2382},{"__isSmartRef__":true,"id":2385},{"__isSmartRef__":true,"id":2388},{"__isSmartRef__":true,"id":2391},{"__isSmartRef__":true,"id":2394},{"__isSmartRef__":true,"id":2397},{"__isSmartRef__":true,"id":2400},{"__isSmartRef__":true,"id":2403},{"__isSmartRef__":true,"id":2406},{"__isSmartRef__":true,"id":2409},{"__isSmartRef__":true,"id":2412},{"__isSmartRef__":true,"id":2415},{"__isSmartRef__":true,"id":2418},{"__isSmartRef__":true,"id":2421},{"__isSmartRef__":true,"id":2424},{"__isSmartRef__":true,"id":2427},{"__isSmartRef__":true,"id":2430},{"__isSmartRef__":true,"id":2433},{"__isSmartRef__":true,"id":2436},{"__isSmartRef__":true,"id":2439},{"__isSmartRef__":true,"id":2442},{"__isSmartRef__":true,"id":2445},{"__isSmartRef__":true,"id":2448},{"__isSmartRef__":true,"id":2451},{"__isSmartRef__":true,"id":2454},{"__isSmartRef__":true,"id":2457},{"__isSmartRef__":true,"id":2460},{"__isSmartRef__":true,"id":2463},{"__isSmartRef__":true,"id":2466},{"__isSmartRef__":true,"id":2469},{"__isSmartRef__":true,"id":2472},{"__isSmartRef__":true,"id":2475},{"__isSmartRef__":true,"id":2478},{"__isSmartRef__":true,"id":2481},{"__isSmartRef__":true,"id":2484},{"__isSmartRef__":true,"id":2487},{"__isSmartRef__":true,"id":2490},{"__isSmartRef__":true,"id":2493},{"__isSmartRef__":true,"id":2496},{"__isSmartRef__":true,"id":2499},{"__isSmartRef__":true,"id":2502},{"__isSmartRef__":true,"id":2505},{"__isSmartRef__":true,"id":2508},{"__isSmartRef__":true,"id":2511},{"__isSmartRef__":true,"id":2514},{"__isSmartRef__":true,"id":2517},{"__isSmartRef__":true,"id":2520},{"__isSmartRef__":true,"id":2523},{"__isSmartRef__":true,"id":2526},{"__isSmartRef__":true,"id":2529}],"scripts":[],"id":"6DF0F42B-01DE-4064-B290-A965B89F419C","shape":{"__isSmartRef__":true,"id":2532},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"showsHalos":false,"name":"contextOfFunction","partsBinMetaInfo":{"__isSmartRef__":true,"id":2533},"eventHandler":{"__isSmartRef__":true,"id":2548},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C"],"partTests":{"__isSmartRef__":true,"id":2549},"_ClipMode":"visible","moved":true,"owner":{"__isSmartRef__":true,"id":2277},"isBeingDragged":false,"#startLetters":"mo","isLockOwner":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(396.0,68.0)","distanceToDragEvent":"lively.pt(260.1,-13.8)"},"2289":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2290},"eventHandler":{"__isSmartRef__":true,"id":2291},"_ClipMode":"visible","derivationIds":["7033A4B2-A407-4674-B87C-CA39EC6DB45D"],"id":"090165FF-5916-470E-9153-493454C3F8F5","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":0,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2290":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2291":{"morph":{"__isSmartRef__":true,"id":2289},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2292":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2293},"eventHandler":{"__isSmartRef__":true,"id":2294},"_ClipMode":"visible","derivationIds":["E6175218-FB20-4BE8-9DF4-08FA4D2A6F78"],"id":"E3856ECF-7018-4F0E-A482-E5A98886A7CD","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":0.1,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2293":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2294":{"morph":{"__isSmartRef__":true,"id":2292},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2295":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2296},"eventHandler":{"__isSmartRef__":true,"id":2297},"_ClipMode":"visible","derivationIds":["EA2073EF-AAD8-4401-99DC-0827D6BA421F"],"id":"878CE5EC-D047-4EED-B61C-7C00DBE9A501","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":0.2,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2296":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2297":{"morph":{"__isSmartRef__":true,"id":2295},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2298":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2299},"eventHandler":{"__isSmartRef__":true,"id":2300},"_ClipMode":"visible","derivationIds":["7E84F7A9-9FF8-4665-B6AF-656A8105490D"],"id":"B4AB364A-E32D-4098-99F2-A57E4049A8F0","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":0.30000000000000004,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2299":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2300":{"morph":{"__isSmartRef__":true,"id":2298},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2301":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2302},"eventHandler":{"__isSmartRef__":true,"id":2303},"_ClipMode":"visible","derivationIds":["EFE7D74E-7192-4597-9833-268AFB320FD5"],"id":"4DFAEB50-C3FD-420E-A961-9815002DB2B3","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":0.4,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2302":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2303":{"morph":{"__isSmartRef__":true,"id":2301},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2304":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2305},"eventHandler":{"__isSmartRef__":true,"id":2306},"_ClipMode":"visible","derivationIds":["C5CD7BCA-45FF-43FD-9CC9-549772913206"],"id":"97BC4DF3-6F6D-4AA5-82E5-83E47FCD057D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":0.5,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2305":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2306":{"morph":{"__isSmartRef__":true,"id":2304},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2307":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2308},"eventHandler":{"__isSmartRef__":true,"id":2309},"_ClipMode":"visible","derivationIds":["C113485A-C830-44BA-98C6-C87A65BAD9D9"],"id":"D42C9EAE-98D3-43FF-81E4-25CC9B6464A3","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":0.6000000000000001,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2308":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2309":{"morph":{"__isSmartRef__":true,"id":2307},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2310":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2311},"eventHandler":{"__isSmartRef__":true,"id":2312},"_ClipMode":"visible","derivationIds":["E0FC0626-F8CB-41A9-A9C0-962806F1B718"],"id":"20AC3B5D-0672-469A-AFF1-6A1873F97C1D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":0.7000000000000001,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2311":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2312":{"morph":{"__isSmartRef__":true,"id":2310},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2313":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2314},"eventHandler":{"__isSmartRef__":true,"id":2315},"_ClipMode":"visible","derivationIds":["CB37E378-2384-44BE-80B6-62ABFC1C95FF"],"id":"6F079AB4-FF2E-49A0-8E76-C869F03BC618","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":0.8,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2314":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"2315":{"morph":{"__isSmartRef__":true,"id":2313},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2316":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2317},"eventHandler":{"__isSmartRef__":true,"id":2318},"_ClipMode":"visible","derivationIds":["FBD69F40-D0F9-4315-B95D-B95C2351F686"],"id":"6A5368A6-F1AA-4E58-A3BF-4933F851A518","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":0.9,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2317":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"2318":{"morph":{"__isSmartRef__":true,"id":2316},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2319":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2320},"eventHandler":{"__isSmartRef__":true,"id":2321},"_ClipMode":"visible","derivationIds":["DCACD874-40E7-43C0-9CD9-783B7B5DC662"],"id":"DFAB59EE-64EF-4C66-BA1E-8CAB106C24E1","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":1,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2320":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"2321":{"morph":{"__isSmartRef__":true,"id":2319},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2322":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2323},"eventHandler":{"__isSmartRef__":true,"id":2324},"_ClipMode":"visible","derivationIds":["1DE3DD38-55EF-4879-8233-5701C64662A9"],"id":"A5406CAB-1ED2-4D50-BB55-C830A3746521","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":1.1,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2323":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"2324":{"morph":{"__isSmartRef__":true,"id":2322},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2325":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2326},"eventHandler":{"__isSmartRef__":true,"id":2327},"_ClipMode":"visible","derivationIds":["4C298703-087B-48E9-A041-B373407B7312"],"id":"273A9BB0-CEDA-4F7C-8B84-9760E8A878E7","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":1.2000000000000002,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2326":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"2327":{"morph":{"__isSmartRef__":true,"id":2325},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2328":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2329},"eventHandler":{"__isSmartRef__":true,"id":2330},"_ClipMode":"visible","derivationIds":["6174D221-70B7-41E7-8597-62F7AF624BDC"],"id":"1AA3AAC5-0315-4B04-AE0D-EC2B578DAA56","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":1.3,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2329":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"2330":{"morph":{"__isSmartRef__":true,"id":2328},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2331":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2332},"eventHandler":{"__isSmartRef__":true,"id":2333},"_ClipMode":"visible","derivationIds":["B8674F42-D6DB-4A92-9096-AF21347B9B60"],"id":"C1636EC0-FA5A-4678-A390-0055E82382FF","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":1.4000000000000001,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2332":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"2333":{"morph":{"__isSmartRef__":true,"id":2331},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2334":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2335},"eventHandler":{"__isSmartRef__":true,"id":2336},"_ClipMode":"visible","derivationIds":["8EE04E0F-5187-48B7-A384-AB697AB7F806"],"id":"273C24F2-2256-4E13-98AD-664FE8F29307","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":1.5,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2335":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"2336":{"morph":{"__isSmartRef__":true,"id":2334},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2337":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2338},"eventHandler":{"__isSmartRef__":true,"id":2339},"_ClipMode":"visible","derivationIds":["0250B77C-13B3-4041-85EA-BF6FF9EF86B0"],"id":"9582F4F1-6B23-49DA-BBA1-719B1F9B7B49","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":1.6,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2338":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"2339":{"morph":{"__isSmartRef__":true,"id":2337},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2340":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2341},"eventHandler":{"__isSmartRef__":true,"id":2342},"_ClipMode":"visible","derivationIds":["A671D91F-FA88-4DC5-A362-A5AA1D15A486"],"id":"630440AB-AC76-45DF-BBA5-ABBEA84A9D45","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":1.7000000000000002,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2341":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"2342":{"morph":{"__isSmartRef__":true,"id":2340},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2343":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2344},"eventHandler":{"__isSmartRef__":true,"id":2345},"_ClipMode":"visible","derivationIds":["F33A46A5-57F5-4AE6-93C5-48DDD229F1B3"],"id":"984037F9-6789-4F8E-BCA4-D678017DC5B5","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":1.8,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2344":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"2345":{"morph":{"__isSmartRef__":true,"id":2343},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2346":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2347},"eventHandler":{"__isSmartRef__":true,"id":2348},"_ClipMode":"visible","derivationIds":["9A18861F-3B72-42E6-8F80-B774306F6A7E"],"id":"E4BA46C7-DC8D-4F92-9B91-8E2D4ADBD444","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":1.9000000000000001,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2347":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"2348":{"morph":{"__isSmartRef__":true,"id":2346},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2349":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2350},"eventHandler":{"__isSmartRef__":true,"id":2351},"_ClipMode":"visible","derivationIds":["758A832D-1DE2-4835-B646-BB2CD84545BD"],"id":"12EFE8F1-CA45-4954-B5D5-59CB4F86F7BE","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":2,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2350":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2351":{"morph":{"__isSmartRef__":true,"id":2349},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2352":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2353},"eventHandler":{"__isSmartRef__":true,"id":2354},"_ClipMode":"visible","derivationIds":["3A87DABE-F6BA-4CC1-AFA1-1C0500644FAD"],"id":"C16761C6-C961-4857-B63C-AD933F78A46C","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":2.1,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2353":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"2354":{"morph":{"__isSmartRef__":true,"id":2352},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2355":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2356},"eventHandler":{"__isSmartRef__":true,"id":2357},"_ClipMode":"visible","derivationIds":["C2FBAE2C-1751-4E3F-B0BA-D6DEC3647A45"],"id":"56D09ADD-54DD-432F-972C-4C5D8962C059","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":2.2,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2356":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"2357":{"morph":{"__isSmartRef__":true,"id":2355},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2358":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2359},"eventHandler":{"__isSmartRef__":true,"id":2360},"_ClipMode":"visible","derivationIds":["148516C1-D7DF-459F-951C-228E93EED4FA"],"id":"FDB291BC-5307-4FA4-96DD-D7DE5AC014B1","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":2.3000000000000003,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2359":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"2360":{"morph":{"__isSmartRef__":true,"id":2358},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2361":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2362},"eventHandler":{"__isSmartRef__":true,"id":2363},"_ClipMode":"visible","derivationIds":["C4DE22ED-FDBB-4434-A83B-50400FF58E0F"],"id":"E75226E7-DC4B-4768-A0C5-BB58757F2026","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":2.4000000000000004,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2362":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"2363":{"morph":{"__isSmartRef__":true,"id":2361},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2364":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2365},"eventHandler":{"__isSmartRef__":true,"id":2366},"_ClipMode":"visible","derivationIds":["057DD7E4-8631-4BD0-BE15-1A7BA58D1F64"],"id":"1604C190-8A81-47F4-9C46-CC304F3AC807","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":2.5,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2365":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"2366":{"morph":{"__isSmartRef__":true,"id":2364},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2367":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2368},"eventHandler":{"__isSmartRef__":true,"id":2369},"_ClipMode":"visible","derivationIds":["5E7C0B18-50D2-45FB-8292-9B6CD644EB9F"],"id":"7AD6BD2B-30BF-47DF-9154-22AC01F4C90A","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":2.6,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2368":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(261,0,0)"},"2369":{"morph":{"__isSmartRef__":true,"id":2367},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2370":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2371},"eventHandler":{"__isSmartRef__":true,"id":2372},"_ClipMode":"visible","derivationIds":["9435F037-329E-4FA6-BFB7-9A334F9FEF71"],"id":"A60A4902-D9CA-4B73-9259-12DA7D35D08F","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":2.7,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2371":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(271,0,0)"},"2372":{"morph":{"__isSmartRef__":true,"id":2370},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2373":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2374},"eventHandler":{"__isSmartRef__":true,"id":2375},"_ClipMode":"visible","derivationIds":["7E6CE6D5-70CD-4F44-9BB6-CFF736E9B325"],"id":"A5CD59FA-72A2-49FC-8D8F-E25B6ABFC263","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":2.8000000000000003,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2374":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(281,0,0)"},"2375":{"morph":{"__isSmartRef__":true,"id":2373},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2376":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2377},"eventHandler":{"__isSmartRef__":true,"id":2378},"_ClipMode":"visible","derivationIds":["78096A4A-8DC7-46EE-96F1-6CF58C38E4E8"],"id":"1D1F2DD5-B94A-44BF-97E8-98DA076EDC5D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":2.9000000000000004,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2377":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(291,0,0)"},"2378":{"morph":{"__isSmartRef__":true,"id":2376},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2379":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2380},"eventHandler":{"__isSmartRef__":true,"id":2381},"_ClipMode":"visible","derivationIds":["8602DB9E-6D17-4AD3-AEEC-04385A2DFCD6"],"id":"8BCDEEF0-BAD2-43E8-9222-B7C5429BBFE6","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":3,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2380":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(301,0,0)"},"2381":{"morph":{"__isSmartRef__":true,"id":2379},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2382":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2383},"eventHandler":{"__isSmartRef__":true,"id":2384},"_ClipMode":"visible","derivationIds":["596E733C-70D2-4844-886A-D3878AAEB097"],"id":"396C7434-D7A7-464E-8A9B-34C1F1D55DC8","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":3.1,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2383":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(311,0,0)"},"2384":{"morph":{"__isSmartRef__":true,"id":2382},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2385":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2386},"eventHandler":{"__isSmartRef__":true,"id":2387},"_ClipMode":"visible","derivationIds":["4B1BCCCD-3E94-4EB3-B772-C7E03C8C120D"],"id":"ADFD8B65-94E9-4CE0-8E31-2D2412A189E7","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":3.2,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2386":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(321,0,0)"},"2387":{"morph":{"__isSmartRef__":true,"id":2385},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2388":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2389},"eventHandler":{"__isSmartRef__":true,"id":2390},"_ClipMode":"visible","derivationIds":["5366EEC7-A1B0-494D-818F-DA3A7833B173"],"id":"B80470E3-9524-431A-80CA-05FCE6B5CBFA","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":3.3000000000000003,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2389":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(331,0,0)"},"2390":{"morph":{"__isSmartRef__":true,"id":2388},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2391":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2392},"eventHandler":{"__isSmartRef__":true,"id":2393},"_ClipMode":"visible","derivationIds":["1646F06E-75A7-4E3C-A39E-C8080E215872"],"id":"99E1B199-505F-47B3-8C93-4C809B6C25B5","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"name":"Box","_Visible":false,"isLockOwner":false,"_Rotation":3.4000000000000004,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2392":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(341,0,0)"},"2393":{"morph":{"__isSmartRef__":true,"id":2391},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2394":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2395},"eventHandler":{"__isSmartRef__":true,"id":2396},"_ClipMode":"visible","derivationIds":[],"id":"66F5093C-CCED-45AB-9958-2A9224CE6FE8","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"owner":null,"_Visible":false,"isLockOwner":false,"_Rotation":19.400000000000002,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2395":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(983,0,0)"},"2396":{"morph":{"__isSmartRef__":true,"id":2394},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2397":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2398},"eventHandler":{"__isSmartRef__":true,"id":2399},"_ClipMode":"visible","derivationIds":[],"id":"BC1134E7-B39D-4BD8-AE14-A4DC51183FDE","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2398":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2399":{"morph":{"__isSmartRef__":true,"id":2397},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2400":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2401},"eventHandler":{"__isSmartRef__":true,"id":2402},"_ClipMode":"visible","derivationIds":[],"id":"9BB62EB0-06B3-440C-BE30-9269FC16E302","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2401":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2402":{"morph":{"__isSmartRef__":true,"id":2400},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2403":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2404},"eventHandler":{"__isSmartRef__":true,"id":2405},"_ClipMode":"visible","derivationIds":[],"id":"28978031-B16F-4CB2-AE5E-CA56EE538B7F","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2404":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2405":{"morph":{"__isSmartRef__":true,"id":2403},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2406":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2407},"eventHandler":{"__isSmartRef__":true,"id":2408},"_ClipMode":"visible","derivationIds":[],"id":"39FD3FBB-B231-4314-A16D-3EB7674A3902","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2407":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2408":{"morph":{"__isSmartRef__":true,"id":2406},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2409":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2410},"eventHandler":{"__isSmartRef__":true,"id":2411},"_ClipMode":"visible","derivationIds":[],"id":"E8EF08E1-74A2-4B44-A224-334CBFA39D53","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2410":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2411":{"morph":{"__isSmartRef__":true,"id":2409},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2412":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2413},"eventHandler":{"__isSmartRef__":true,"id":2414},"_ClipMode":"visible","derivationIds":[],"id":"945D24D9-D653-4058-B2B0-CC493B9E8992","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2413":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2414":{"morph":{"__isSmartRef__":true,"id":2412},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2415":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2416},"eventHandler":{"__isSmartRef__":true,"id":2417},"_ClipMode":"visible","derivationIds":[],"id":"C9160EC2-EB21-4991-9FD6-B4B983D8EBEC","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2416":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2417":{"morph":{"__isSmartRef__":true,"id":2415},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2418":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2419},"eventHandler":{"__isSmartRef__":true,"id":2420},"_ClipMode":"visible","derivationIds":[],"id":"DF155419-D6B3-42EE-862F-530297CA7BAD","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2419":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2420":{"morph":{"__isSmartRef__":true,"id":2418},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2421":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2422},"eventHandler":{"__isSmartRef__":true,"id":2423},"_ClipMode":"visible","derivationIds":[],"id":"E7F786B8-4801-45CE-A4F4-9126B9A7CB66","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2422":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"2423":{"morph":{"__isSmartRef__":true,"id":2421},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2424":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2425},"eventHandler":{"__isSmartRef__":true,"id":2426},"_ClipMode":"visible","derivationIds":[],"id":"5FD3E9EC-0CDC-432E-AA2C-42C9164D4B86","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2425":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"2426":{"morph":{"__isSmartRef__":true,"id":2424},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2427":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2428},"eventHandler":{"__isSmartRef__":true,"id":2429},"_ClipMode":"visible","derivationIds":[],"id":"2EB6F575-22F0-43CF-BE7A-326B0888C7CD","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2428":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"2429":{"morph":{"__isSmartRef__":true,"id":2427},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2430":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2431},"eventHandler":{"__isSmartRef__":true,"id":2432},"_ClipMode":"visible","derivationIds":[],"id":"1A359E76-E10C-4E47-9400-FEFAAA6AB3D8","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2431":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"2432":{"morph":{"__isSmartRef__":true,"id":2430},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2433":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2434},"eventHandler":{"__isSmartRef__":true,"id":2435},"_ClipMode":"visible","derivationIds":[],"id":"6A341B65-B13D-47A2-BFE5-FD30C52C71F5","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2434":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"2435":{"morph":{"__isSmartRef__":true,"id":2433},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2436":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2437},"eventHandler":{"__isSmartRef__":true,"id":2438},"_ClipMode":"visible","derivationIds":[],"id":"5D08AA83-9AAB-48B9-8C06-341AC1271624","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2437":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"2438":{"morph":{"__isSmartRef__":true,"id":2436},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2439":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2440},"eventHandler":{"__isSmartRef__":true,"id":2441},"_ClipMode":"visible","derivationIds":[],"id":"B3F31053-3259-48E9-A73E-90FBA2797DCC","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2440":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"2441":{"morph":{"__isSmartRef__":true,"id":2439},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2442":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2443},"eventHandler":{"__isSmartRef__":true,"id":2444},"_ClipMode":"visible","derivationIds":[],"id":"58BFAC53-4B54-45BB-8D2D-7A79164B415D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2443":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"2444":{"morph":{"__isSmartRef__":true,"id":2442},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2445":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2446},"eventHandler":{"__isSmartRef__":true,"id":2447},"_ClipMode":"visible","derivationIds":[],"id":"687D9693-A890-4C3F-8E4B-9C404BDCE372","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2446":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"2447":{"morph":{"__isSmartRef__":true,"id":2445},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2448":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2449},"eventHandler":{"__isSmartRef__":true,"id":2450},"_ClipMode":"visible","derivationIds":[],"id":"F8FD829D-7E76-4E04-BF8D-4732819AFBCA","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2449":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"2450":{"morph":{"__isSmartRef__":true,"id":2448},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2451":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2452},"eventHandler":{"__isSmartRef__":true,"id":2453},"_ClipMode":"visible","derivationIds":[],"id":"A10858A3-C4EB-46FD-B2B8-8843862BDCCF","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2452":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"2453":{"morph":{"__isSmartRef__":true,"id":2451},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2454":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2455},"eventHandler":{"__isSmartRef__":true,"id":2456},"_ClipMode":"visible","derivationIds":[],"id":"48684359-B14F-456E-988D-233377557B96","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.9000000000000001,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2455":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"2456":{"morph":{"__isSmartRef__":true,"id":2454},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2457":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2458},"eventHandler":{"__isSmartRef__":true,"id":2459},"_ClipMode":"visible","derivationIds":[],"id":"90503ED6-6AE8-4D35-8940-6D9030F6FC2F","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2458":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"2459":{"morph":{"__isSmartRef__":true,"id":2457},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2460":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2461},"eventHandler":{"__isSmartRef__":true,"id":2462},"_ClipMode":"visible","derivationIds":[],"id":"5DEC2A4D-71FB-4CDB-9AE8-8CA15F16FF7E","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.1,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2461":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"2462":{"morph":{"__isSmartRef__":true,"id":2460},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2463":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2464},"eventHandler":{"__isSmartRef__":true,"id":2465},"_ClipMode":"visible","derivationIds":[],"id":"A9C88596-8FA5-4F0B-84B2-9344C9AC3347","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.2,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2464":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"2465":{"morph":{"__isSmartRef__":true,"id":2463},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2466":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2467},"eventHandler":{"__isSmartRef__":true,"id":2468},"_ClipMode":"visible","derivationIds":[],"id":"CF605B65-1DD1-4C1D-89A7-C6846B9E1A8C","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.3000000000000003,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2467":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"2468":{"morph":{"__isSmartRef__":true,"id":2466},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2469":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2470},"eventHandler":{"__isSmartRef__":true,"id":2471},"_ClipMode":"visible","derivationIds":[],"id":"4D7D71DC-9698-460B-BFC8-B8791A691C60","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.4000000000000004,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2470":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"2471":{"morph":{"__isSmartRef__":true,"id":2469},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2472":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2473},"eventHandler":{"__isSmartRef__":true,"id":2474},"_ClipMode":"visible","derivationIds":[],"id":"EF0B0EDD-682C-4422-AFDF-8FCA97914343","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.5,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2473":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"2474":{"morph":{"__isSmartRef__":true,"id":2472},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2475":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2476},"eventHandler":{"__isSmartRef__":true,"id":2477},"_ClipMode":"visible","derivationIds":[],"id":"E1A2E95E-B41D-46A4-A9C3-3E240A77A9ED","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.6,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2476":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(261,0,0)"},"2477":{"morph":{"__isSmartRef__":true,"id":2475},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2478":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2479},"eventHandler":{"__isSmartRef__":true,"id":2480},"_ClipMode":"visible","derivationIds":[],"id":"7E5A6E26-B22D-4819-92F2-4AC1EF6AD613","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.7,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2479":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(271,0,0)"},"2480":{"morph":{"__isSmartRef__":true,"id":2478},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2481":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2482},"eventHandler":{"__isSmartRef__":true,"id":2483},"_ClipMode":"visible","derivationIds":[],"id":"AAF11D0F-CA57-4A86-B3E3-F87522A6C1BC","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.8000000000000003,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2482":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(281,0,0)"},"2483":{"morph":{"__isSmartRef__":true,"id":2481},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2484":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2485},"eventHandler":{"__isSmartRef__":true,"id":2486},"_ClipMode":"visible","derivationIds":[],"id":"EDD4C1EF-87C3-4B04-88DC-704C1EF38D53","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.9000000000000004,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2485":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(291,0,0)"},"2486":{"morph":{"__isSmartRef__":true,"id":2484},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2487":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2488},"eventHandler":{"__isSmartRef__":true,"id":2489},"_ClipMode":"visible","derivationIds":[],"id":"FC3F3CE9-C5C5-43CA-8038-E9850AFB1DD3","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":3,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2488":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(301,0,0)"},"2489":{"morph":{"__isSmartRef__":true,"id":2487},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2490":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2491},"eventHandler":{"__isSmartRef__":true,"id":2492},"_ClipMode":"visible","derivationIds":[],"id":"EBC94220-1382-4ED3-9E2B-87567E95BEC9","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":3.1,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2491":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(311,0,0)"},"2492":{"morph":{"__isSmartRef__":true,"id":2490},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2493":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2494},"eventHandler":{"__isSmartRef__":true,"id":2495},"_ClipMode":"visible","derivationIds":[],"id":"ECEF837C-5199-4121-ACF1-9703061EF2D6","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":3.2,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2494":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(321,0,0)"},"2495":{"morph":{"__isSmartRef__":true,"id":2493},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2496":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2497},"eventHandler":{"__isSmartRef__":true,"id":2498},"_ClipMode":"visible","derivationIds":[],"id":"8B4E508A-81D6-4903-9654-5693D4B33149","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":3.3000000000000003,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2497":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(331,0,0)"},"2498":{"morph":{"__isSmartRef__":true,"id":2496},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2499":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2500},"eventHandler":{"__isSmartRef__":true,"id":2501},"_ClipMode":"visible","derivationIds":[],"id":"EC7ECEF3-3B2C-4653-B5CF-404FC3021A2B","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":3.4000000000000004,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2500":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(341,0,0)"},"2501":{"morph":{"__isSmartRef__":true,"id":2499},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2502":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2503},"eventHandler":{"__isSmartRef__":true,"id":2504},"_ClipMode":"visible","derivationIds":[],"id":"2366947E-174A-4846-91F0-9C6F8502AF01","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":3.5,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2503":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(351,0,0)"},"2504":{"morph":{"__isSmartRef__":true,"id":2502},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2505":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2506},"eventHandler":{"__isSmartRef__":true,"id":2507},"_ClipMode":"visible","derivationIds":[],"id":"A44E2DD2-7848-46BE-9B71-FF5E1951C895","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":3.6,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2506":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(361,0,0)"},"2507":{"morph":{"__isSmartRef__":true,"id":2505},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2508":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2509},"eventHandler":{"__isSmartRef__":true,"id":2510},"_ClipMode":"visible","derivationIds":[],"id":"4B2F958A-AC58-4B10-B9B5-F61EA01F4E32","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":3.7,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2509":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(371,0,0)"},"2510":{"morph":{"__isSmartRef__":true,"id":2508},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2511":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2512},"eventHandler":{"__isSmartRef__":true,"id":2513},"_ClipMode":"visible","derivationIds":[],"id":"AC75066D-0680-47F7-9A10-E3ACE174ED6A","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":3.8000000000000003,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2512":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(381,0,0)"},"2513":{"morph":{"__isSmartRef__":true,"id":2511},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2514":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2515},"eventHandler":{"__isSmartRef__":true,"id":2516},"_ClipMode":"visible","derivationIds":[],"id":"614F6B5A-2333-4BE8-9F00-D9E5264A0416","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":3.9000000000000004,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2515":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(391,0,0)"},"2516":{"morph":{"__isSmartRef__":true,"id":2514},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2517":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2518},"eventHandler":{"__isSmartRef__":true,"id":2519},"_ClipMode":"visible","derivationIds":[],"id":"02F6CC89-6E8B-4425-89F6-AB33F77A3FDF","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":4,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2518":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(401,0,0)"},"2519":{"morph":{"__isSmartRef__":true,"id":2517},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2520":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2521},"eventHandler":{"__isSmartRef__":true,"id":2522},"_ClipMode":"visible","derivationIds":[],"id":"F4DE0AB9-E79D-41EB-BB16-08F1D488107C","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":4.1000000000000005,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2521":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(411,0,0)"},"2522":{"morph":{"__isSmartRef__":true,"id":2520},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2523":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2524},"eventHandler":{"__isSmartRef__":true,"id":2525},"_ClipMode":"visible","derivationIds":[],"id":"323CAA0A-2D72-4B4A-9661-56933411ECED","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":4.2,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2524":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(421,0,0)"},"2525":{"morph":{"__isSmartRef__":true,"id":2523},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2526":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2527},"eventHandler":{"__isSmartRef__":true,"id":2528},"_ClipMode":"visible","derivationIds":[],"id":"CC26B03E-D892-4E46-942E-7505E6DBC70E","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":4.3,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2527":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(431,0,0)"},"2528":{"morph":{"__isSmartRef__":true,"id":2526},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2529":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2530},"eventHandler":{"__isSmartRef__":true,"id":2531},"_ClipMode":"visible","derivationIds":[],"id":"D7D6FCDF-C929-460A-8F3A-55FC34A8595E","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":4.4,"owner":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2530":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(441,0,0)"},"2531":{"morph":{"__isSmartRef__":true,"id":2529},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2532":{"__serializedExpressions__":["position","_Extent","_Fill","_Padding","_BorderColor"],"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":6.660000000000001,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(392.0,209.0)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(192,192,192)"},"2533":{"partsSpaceName":"PartsBin/Basic/","comment":"A simple box morph. A really orange one. Its amazing what you can build out of simple boxes.... Who needs stars when you got orange rectangles!","migrationLevel":4,"partName":"Rectangle","changes":[{"__isSmartRef__":true,"id":2534},{"__isSmartRef__":true,"id":2536},{"__isSmartRef__":true,"id":2538},{"__isSmartRef__":true,"id":2540},{"__isSmartRef__":true,"id":2542},{"__isSmartRef__":true,"id":2544},{"__isSmartRef__":true,"id":2546}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2534":{"date":{"__isSmartRef__":true,"id":2535},"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8"},"2535":{"isSerializedDate":true,"string":"Mon Jun 18 2012 19:35:08 GMT+0200 (CEST)"},"2536":{"date":{"__isSmartRef__":true,"id":2537},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"2537":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"2538":{"date":{"__isSmartRef__":true,"id":2539},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"2539":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"2540":{"date":{"__isSmartRef__":true,"id":2541},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"2541":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"2542":{"date":{"__isSmartRef__":true,"id":2543},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"2543":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"2544":{"date":{"__isSmartRef__":true,"id":2545},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"2545":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"2546":{"date":{"__isSmartRef__":true,"id":2547},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"2547":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"2548":{"morph":{"__isSmartRef__":true,"id":2288},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2549":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2550}},"2550":{"test01IsMorph":{"__isSmartRef__":true,"id":2551}},"2551":{"varMapping":{"__isSmartRef__":true,"id":2552},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":2553},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2552":{"this":{"__isSmartRef__":true,"id":2549}},"2553":{},"2554":{"submorphs":[{"__isSmartRef__":true,"id":2555}],"scripts":[],"id":"A97F19D5-FCEE-4B39-A022-7D458240AD03","shape":{"__isSmartRef__":true,"id":2560},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":2566},"lighterFill":{"__isSmartRef__":true,"id":2571},"label":{"__isSmartRef__":true,"id":2555},"name":"prepareFollowing","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":2576},"attributeConnections":[{"__isSmartRef__":true,"id":2587},{"__isSmartRef__":true,"id":2588}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":2589},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F"],"_ClipMode":"visible","isPressed":false,"moved":true,"owner":{"__isSmartRef__":true,"id":2277},"isLockOwner":false,"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2590},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(22.6,29.9)","distanceToDragEvent":"lively.pt(74.0,-12.0)"},"2555":{"submorphs":[],"scripts":[],"id":"6600F388-3476-4281-853C-2F7B90AB1921","shape":{"__isSmartRef__":true,"id":2556},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"_MaxTextWidth":100,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":2554},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":2557}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":2559},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A"],"_MinTextWidth":100,"_MinTextHeight":null,"_FontSize":10,"isLockOwner":false,"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"2556":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"2557":{"style":{"__isSmartRef__":true,"id":2558},"chunkOwner":{"__isSmartRef__":true,"id":2555},"_id":"_94939","storedString":"prepare","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2558":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2559":{"morph":{"__isSmartRef__":true,"id":2555},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2560":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":2561},"_BorderRadius":5.2,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"2561":{"stops":[{"__isSmartRef__":true,"id":2562},{"__isSmartRef__":true,"id":2563},{"__isSmartRef__":true,"id":2564},{"__isSmartRef__":true,"id":2565}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2562":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"2563":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"2564":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"2565":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"2566":{"stops":[{"__isSmartRef__":true,"id":2567},{"__isSmartRef__":true,"id":2568},{"__isSmartRef__":true,"id":2569},{"__isSmartRef__":true,"id":2570}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2567":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"2568":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"2569":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"2570":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"2571":{"stops":[{"__isSmartRef__":true,"id":2572},{"__isSmartRef__":true,"id":2573},{"__isSmartRef__":true,"id":2574},{"__isSmartRef__":true,"id":2575}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2572":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"2573":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2574":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2575":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"2576":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":2577},{"__isSmartRef__":true,"id":2579},{"__isSmartRef__":true,"id":2581},{"__isSmartRef__":true,"id":2583},{"__isSmartRef__":true,"id":2585}],"revisionOnLoad":171940,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2577":{"date":{"__isSmartRef__":true,"id":2578},"author":"bgnauk","message":"no comment","id":"FA43C1A3-19A9-4ED6-A014-82C74689A5C3"},"2578":{"isSerializedDate":true,"string":"Tue Jun 19 2012 23:39:23 GMT+0200 (CEST)"},"2579":{"date":{"__isSmartRef__":true,"id":2580},"author":"robertkrahn","message":"no comment","id":"DDE22D44-9A6D-4485-80F3-262D5DA0CC07"},"2580":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:03:19 GMT+0200 (CEST)"},"2581":{"date":{"__isSmartRef__":true,"id":2582},"author":"robertkrahn","message":"no comment","id":"97D17254-EAC6-4494-8330-A347909590D6"},"2582":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:08:58 GMT+0200 (CEST)"},"2583":{"date":{"__isSmartRef__":true,"id":2584},"author":"sstamm","message":"reverted button","id":"9B7AA90A-42FC-4DE8-A4DE-51AB903A740E"},"2584":{"isSerializedDate":true,"string":"Mon Apr 16 2012 10:36:21 GMT+0200 (CEST)"},"2585":{"date":{"__isSmartRef__":true,"id":2586},"author":"undefined","message":"","id":"7074B413-6CF0-4892-9D18-52009A2A2E03"},"2586":{"isSerializedDate":true,"string":"Fri Apr 13 2012 21:04:01 GMT+0200 (CEST)"},"2587":{"sourceObj":{"__isSmartRef__":true,"id":2554},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":2554},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2588":{"sourceObj":{"__isSmartRef__":true,"id":2554},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":2277},"targetMethodName":"onPrepare","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2589":{"morph":{"__isSmartRef__":true,"id":2554},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2590":{"doAction":{"__isSmartRef__":true,"id":2591}},"2591":{"varMapping":{"__isSmartRef__":true,"id":2592},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":2593},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2592":{"this":{"__isSmartRef__":true,"id":2554}},"2593":{"timestamp":{"__isSmartRef__":true,"id":2594},"user":"robertkrahn","tags":[]},"2594":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"2595":{"submorphs":[{"__isSmartRef__":true,"id":2596}],"scripts":[],"id":"3597FFA9-12FB-4025-8DFD-9303B28004C6","shape":{"__isSmartRef__":true,"id":2601},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":2607},"lighterFill":{"__isSmartRef__":true,"id":2612},"label":{"__isSmartRef__":true,"id":2596},"name":"startFlow","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":2617},"attributeConnections":[{"__isSmartRef__":true,"id":2628},{"__isSmartRef__":true,"id":2629}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":2630},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F"],"_ClipMode":"visible","isPressed":false,"moved":true,"owner":{"__isSmartRef__":true,"id":2277},"isLockOwner":false,"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2631},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(603.1,26.2)","distanceToDragEvent":"lively.pt(69.0,-16.0)"},"2596":{"submorphs":[],"scripts":[],"id":"951C1A71-B1FC-4ED0-8BD4-DF9603C49044","shape":{"__isSmartRef__":true,"id":2597},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"_MaxTextWidth":100,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":2595},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":2598}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":2600},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A"],"_MinTextWidth":100,"_MinTextHeight":null,"_FontSize":10,"isLockOwner":false,"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"2597":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"2598":{"style":{"__isSmartRef__":true,"id":2599},"chunkOwner":{"__isSmartRef__":true,"id":2596},"_id":"_8478","storedString":"run","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2599":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2600":{"morph":{"__isSmartRef__":true,"id":2596},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2601":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":2602},"_BorderRadius":5.2,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"2602":{"stops":[{"__isSmartRef__":true,"id":2603},{"__isSmartRef__":true,"id":2604},{"__isSmartRef__":true,"id":2605},{"__isSmartRef__":true,"id":2606}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2603":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"2604":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"2605":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"2606":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"2607":{"stops":[{"__isSmartRef__":true,"id":2608},{"__isSmartRef__":true,"id":2609},{"__isSmartRef__":true,"id":2610},{"__isSmartRef__":true,"id":2611}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2608":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"2609":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"2610":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"2611":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"2612":{"stops":[{"__isSmartRef__":true,"id":2613},{"__isSmartRef__":true,"id":2614},{"__isSmartRef__":true,"id":2615},{"__isSmartRef__":true,"id":2616}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2613":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"2614":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2615":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2616":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"2617":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":2618},{"__isSmartRef__":true,"id":2620},{"__isSmartRef__":true,"id":2622},{"__isSmartRef__":true,"id":2624},{"__isSmartRef__":true,"id":2626}],"revisionOnLoad":171940,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2618":{"date":{"__isSmartRef__":true,"id":2619},"author":"bgnauk","message":"no comment","id":"FA43C1A3-19A9-4ED6-A014-82C74689A5C3"},"2619":{"isSerializedDate":true,"string":"Tue Jun 19 2012 23:39:23 GMT+0200 (CEST)"},"2620":{"date":{"__isSmartRef__":true,"id":2621},"author":"robertkrahn","message":"no comment","id":"DDE22D44-9A6D-4485-80F3-262D5DA0CC07"},"2621":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:03:19 GMT+0200 (CEST)"},"2622":{"date":{"__isSmartRef__":true,"id":2623},"author":"robertkrahn","message":"no comment","id":"97D17254-EAC6-4494-8330-A347909590D6"},"2623":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:08:58 GMT+0200 (CEST)"},"2624":{"date":{"__isSmartRef__":true,"id":2625},"author":"sstamm","message":"reverted button","id":"9B7AA90A-42FC-4DE8-A4DE-51AB903A740E"},"2625":{"isSerializedDate":true,"string":"Mon Apr 16 2012 10:36:21 GMT+0200 (CEST)"},"2626":{"date":{"__isSmartRef__":true,"id":2627},"author":"undefined","message":"","id":"7074B413-6CF0-4892-9D18-52009A2A2E03"},"2627":{"isSerializedDate":true,"string":"Fri Apr 13 2012 21:04:01 GMT+0200 (CEST)"},"2628":{"sourceObj":{"__isSmartRef__":true,"id":2595},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":2595},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2629":{"sourceObj":{"__isSmartRef__":true,"id":2595},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":2277},"targetMethodName":"onRun","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2630":{"morph":{"__isSmartRef__":true,"id":2595},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2631":{"doAction":{"__isSmartRef__":true,"id":2632}},"2632":{"varMapping":{"__isSmartRef__":true,"id":2633},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":2634},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2633":{"this":{"__isSmartRef__":true,"id":2595}},"2634":{"timestamp":{"__isSmartRef__":true,"id":2635},"user":"robertkrahn","tags":[]},"2635":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"2636":{"submorphs":[{"__isSmartRef__":true,"id":2637}],"scripts":[],"id":"440E5B50-9485-4FAF-8AB0-8EF838256243","shape":{"__isSmartRef__":true,"id":2644},"droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"attributeConnections":[{"__isSmartRef__":true,"id":2649},{"__isSmartRef__":true,"id":2650}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"value":0.6425,"sliderExtent":0.1,"valueScale":1,"sliderKnob":{"__isSmartRef__":true,"id":2637},"styleClass":["slider_background_horizontal"],"showsHalos":false,"name":"stepsSlider","partsBinMetaInfo":{"__isSmartRef__":true,"id":2651},"eventHandler":{"__isSmartRef__":true,"id":2652},"layout":{"__isSmartRef__":true,"id":2653},"derivationIds":[2631],"_ClipMode":"visible","moved":true,"owner":{"__isSmartRef__":true,"id":2277},"isBeingDragged":false,"#startLetters":"","isLockOwner":false,"grabbingEnabled":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Slider","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(135.0,33.0)","distanceToDragEvent":"lively.pt(314.1,-13.8)"},"2637":{"submorphs":[],"scripts":[],"id":"66A79FAB-1FAF-4EE1-B278-C7BEA8B2E852","shape":{"__isSmartRef__":true,"id":2638},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"__serializedExpressions__":["_Position","hitPoint"],"slider":{"__isSmartRef__":true,"id":2636},"owner":{"__isSmartRef__":true,"id":2636},"styleClass":["slider_horizontal"],"eventHandler":{"__isSmartRef__":true,"id":2643},"derivationIds":[2632],"_ClipMode":"visible","isBeingDragged":false,"showsHalos":false,"isLockOwner":false,"__LivelyClassName__":"lively.morphic.SliderKnob","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(262.5,0.0)","hitPoint":"lively.pt(1612.0,183.0)"},"2638":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":2639},"_BorderRadius":6,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(45.4,19.0)","_BorderColor":"Color.rgb(102,102,102)","_Padding":"lively.rect(0,0,0,0)"},"2639":{"stops":[{"__isSmartRef__":true,"id":2640},{"__isSmartRef__":true,"id":2641},{"__isSmartRef__":true,"id":2642}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2640":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(196,211,221)"},"2641":{"offset":0.5,"__serializedExpressions__":["color"],"color":"Color.rgb(137,167,187)"},"2642":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(96,130,153)"},"2643":{"morph":{"__isSmartRef__":true,"id":2637},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2644":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":2645},"_BorderRadius":6,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(454.0,19.0)","_BorderColor":"Color.rgb(192,192,192)","_Padding":"lively.rect(0,0,0,0)"},"2645":{"stops":[{"__isSmartRef__":true,"id":2646},{"__isSmartRef__":true,"id":2647},{"__isSmartRef__":true,"id":2648}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2646":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"2647":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"2648":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"2649":{"sourceObj":{"__isSmartRef__":true,"id":2636},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":2636},"targetMethodName":"adjustSliderParts","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2650":{"sourceObj":{"__isSmartRef__":true,"id":2636},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":2277},"targetMethodName":"onSliderStop","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2651":{"requiredModules":[],"partsSpaceName":"PartsBin/Inputs/","migrationLevel":2,"partName":"Slider","comment":"The connection point \"value\" can be used to read/write the slider knob position.","revisionOnLoad":148695,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2652":{"morph":{"__isSmartRef__":true,"id":2636},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2653":{},"2654":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":13.695000000000002,"_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(808.0,298.0)","_BorderColor":"Color.rgb(167,167,167)","_Fill":"Color.rgb(246,244,241)","_Padding":"lively.rect(0,0,0,0)"},"2655":{"partsSpaceName":"PartsBin/Jens","comment":"experimenting with the debugger","migrationLevel":4,"partName":"DebuggerExample","changes":[{"__isSmartRef__":true,"id":2656},{"__isSmartRef__":true,"id":2658},{"__isSmartRef__":true,"id":2660},{"__isSmartRef__":true,"id":2662},{"__isSmartRef__":true,"id":2664},{"__isSmartRef__":true,"id":2666},{"__isSmartRef__":true,"id":2668},{"__isSmartRef__":true,"id":2670}],"revisionOnLoad":182512,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2656":{"date":{"__isSmartRef__":true,"id":2657},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"2657":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"2658":{"date":{"__isSmartRef__":true,"id":2659},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"2659":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"2660":{"date":{"__isSmartRef__":true,"id":2661},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"2661":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"2662":{"date":{"__isSmartRef__":true,"id":2663},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"2663":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"2664":{"date":{"__isSmartRef__":true,"id":2665},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"2665":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"2666":{"date":{"__isSmartRef__":true,"id":2667},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"2667":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"2668":{"date":{"__isSmartRef__":true,"id":2669},"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8"},"2669":{"isSerializedDate":true,"string":"Mon Jun 18 2012 19:35:08 GMT+0200 (CEST)"},"2670":{"date":{"__isSmartRef__":true,"id":2671},"author":"jenslincke","message":"no comment","id":"34EAD84A-4849-4B51-9D1C-9202D5322FD1"},"2671":{"isSerializedDate":true,"string":"Thu Oct 18 2012 17:07:04 GMT+0200 (CEST)"},"2672":{"morph":{"__isSmartRef__":true,"id":2277},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2673":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2674}},"2674":{"test01IsMorph":{"__isSmartRef__":true,"id":2675}},"2675":{"varMapping":{"__isSmartRef__":true,"id":2676},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":2677},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2676":{"this":{"__isSmartRef__":true,"id":2673}},"2677":{},"2678":{"target":{"__isSmartRef__":true,"id":2277},"selector":"runStep","args":[],"stopped":true,"tickTime":100,"suspended":true,"__LivelyClassName__":"lively.morphic.TargetScript","__SourceModuleName__":"Global.lively.morphic.Core"},"2679":{"[object Object]":true},"2680":{"submorphs":[{"__isSmartRef__":true,"id":2681},{"__isSmartRef__":true,"id":2684},{"__isSmartRef__":true,"id":2687},{"__isSmartRef__":true,"id":2690},{"__isSmartRef__":true,"id":2693},{"__isSmartRef__":true,"id":2696},{"__isSmartRef__":true,"id":2699},{"__isSmartRef__":true,"id":2702},{"__isSmartRef__":true,"id":2705},{"__isSmartRef__":true,"id":2708},{"__isSmartRef__":true,"id":2711},{"__isSmartRef__":true,"id":2714},{"__isSmartRef__":true,"id":2717},{"__isSmartRef__":true,"id":2720},{"__isSmartRef__":true,"id":2723},{"__isSmartRef__":true,"id":2726},{"__isSmartRef__":true,"id":2729},{"__isSmartRef__":true,"id":2732},{"__isSmartRef__":true,"id":2735},{"__isSmartRef__":true,"id":2738},{"__isSmartRef__":true,"id":2741},{"__isSmartRef__":true,"id":2744},{"__isSmartRef__":true,"id":2747},{"__isSmartRef__":true,"id":2750},{"__isSmartRef__":true,"id":2753},{"__isSmartRef__":true,"id":2756},{"__isSmartRef__":true,"id":2759},{"__isSmartRef__":true,"id":2762},{"__isSmartRef__":true,"id":2765},{"__isSmartRef__":true,"id":2768}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2771},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2772}],"eventHandler":{"__isSmartRef__":true,"id":2774},"_ClipMode":"visible","derivationIds":[],"id":"E22E4581-A73B-445A-AA7E-1D484A813767","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)"},"2681":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2682},"eventHandler":{"__isSmartRef__":true,"id":2683},"_ClipMode":"visible","derivationIds":[],"id":"06E3793F-35BD-4502-B17E-CEC438EC7669","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2682":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2683":{"morph":{"__isSmartRef__":true,"id":2681},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2684":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2685},"eventHandler":{"__isSmartRef__":true,"id":2686},"_ClipMode":"visible","derivationIds":[],"id":"6442CEB8-3807-4686-A6D3-5084CFEA3653","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2685":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2686":{"morph":{"__isSmartRef__":true,"id":2684},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2687":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2688},"eventHandler":{"__isSmartRef__":true,"id":2689},"_ClipMode":"visible","derivationIds":[],"id":"70BC9563-1EE4-46F3-AE98-3CBA19E6AA69","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2688":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2689":{"morph":{"__isSmartRef__":true,"id":2687},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2690":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2691},"eventHandler":{"__isSmartRef__":true,"id":2692},"_ClipMode":"visible","derivationIds":[],"id":"877178A2-0147-4E6A-80FF-FDD6C06CA7BA","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2691":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2692":{"morph":{"__isSmartRef__":true,"id":2690},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2693":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2694},"eventHandler":{"__isSmartRef__":true,"id":2695},"_ClipMode":"visible","derivationIds":[],"id":"49FBFA78-344D-4D9E-B197-A31A15331397","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2694":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2695":{"morph":{"__isSmartRef__":true,"id":2693},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2696":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2697},"eventHandler":{"__isSmartRef__":true,"id":2698},"_ClipMode":"visible","derivationIds":[],"id":"07D42DE6-0664-47D1-A4A6-F2F0F674B4FF","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2697":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2698":{"morph":{"__isSmartRef__":true,"id":2696},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2699":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2700},"eventHandler":{"__isSmartRef__":true,"id":2701},"_ClipMode":"visible","derivationIds":[],"id":"9970261E-2E6F-4E9B-9FDD-41D4C10E5FF5","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2700":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2701":{"morph":{"__isSmartRef__":true,"id":2699},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2702":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2703},"eventHandler":{"__isSmartRef__":true,"id":2704},"_ClipMode":"visible","derivationIds":[],"id":"B2DCCD68-6927-475A-8848-F7814DCEB2C3","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2703":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2704":{"morph":{"__isSmartRef__":true,"id":2702},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2705":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2706},"eventHandler":{"__isSmartRef__":true,"id":2707},"_ClipMode":"visible","derivationIds":[],"id":"38A6AC55-02D2-4A3D-85DD-40D901AA1127","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2706":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"2707":{"morph":{"__isSmartRef__":true,"id":2705},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2708":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2709},"eventHandler":{"__isSmartRef__":true,"id":2710},"_ClipMode":"visible","derivationIds":[],"id":"4E59B15B-CFA0-40CD-980D-A2B0B78A4666","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2709":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"2710":{"morph":{"__isSmartRef__":true,"id":2708},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2711":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2712},"eventHandler":{"__isSmartRef__":true,"id":2713},"_ClipMode":"visible","derivationIds":[],"id":"64EB0C78-B8A0-4729-AF95-61B58E7364BA","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2712":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"2713":{"morph":{"__isSmartRef__":true,"id":2711},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2714":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2715},"eventHandler":{"__isSmartRef__":true,"id":2716},"_ClipMode":"visible","derivationIds":[],"id":"B58C2202-57CC-4299-9F8C-AAC4272E9F3E","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2715":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"2716":{"morph":{"__isSmartRef__":true,"id":2714},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2717":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2718},"eventHandler":{"__isSmartRef__":true,"id":2719},"_ClipMode":"visible","derivationIds":[],"id":"5D3637A4-6C4B-4E28-9B4D-F4939B3E8B99","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2718":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"2719":{"morph":{"__isSmartRef__":true,"id":2717},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2720":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2721},"eventHandler":{"__isSmartRef__":true,"id":2722},"_ClipMode":"visible","derivationIds":[],"id":"CD98BE56-02C7-403A-AA8E-DCC71E8B6ECB","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2721":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"2722":{"morph":{"__isSmartRef__":true,"id":2720},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2723":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2724},"eventHandler":{"__isSmartRef__":true,"id":2725},"_ClipMode":"visible","derivationIds":[],"id":"1A1C08C0-CD4C-49AA-9DAD-C57B17029279","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2724":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"2725":{"morph":{"__isSmartRef__":true,"id":2723},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2726":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2727},"eventHandler":{"__isSmartRef__":true,"id":2728},"_ClipMode":"visible","derivationIds":[],"id":"BF10E794-86C1-48F0-901C-3FDE1707D17A","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2727":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"2728":{"morph":{"__isSmartRef__":true,"id":2726},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2729":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2730},"eventHandler":{"__isSmartRef__":true,"id":2731},"_ClipMode":"visible","derivationIds":[],"id":"3CAD8FB1-F3A4-41B6-9ADF-D4C50309678D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2730":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"2731":{"morph":{"__isSmartRef__":true,"id":2729},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2732":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2733},"eventHandler":{"__isSmartRef__":true,"id":2734},"_ClipMode":"visible","derivationIds":[],"id":"AA369548-4CA0-4549-8ED7-7C48421583FD","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2733":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"2734":{"morph":{"__isSmartRef__":true,"id":2732},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2735":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2736},"eventHandler":{"__isSmartRef__":true,"id":2737},"_ClipMode":"visible","derivationIds":[],"id":"FC0ED7B7-2372-4894-A28A-56BA5F8B9579","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2736":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"2737":{"morph":{"__isSmartRef__":true,"id":2735},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2738":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2739},"eventHandler":{"__isSmartRef__":true,"id":2740},"_ClipMode":"visible","derivationIds":[],"id":"310893B9-EAF3-4BD3-BA3D-4C328268EA9B","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.9000000000000001,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2739":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"2740":{"morph":{"__isSmartRef__":true,"id":2738},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2741":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2742},"eventHandler":{"__isSmartRef__":true,"id":2743},"_ClipMode":"visible","derivationIds":[],"id":"74CB2F00-3D2D-4921-8B4F-19CD9A6A8725","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2742":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"2743":{"morph":{"__isSmartRef__":true,"id":2741},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2744":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2745},"eventHandler":{"__isSmartRef__":true,"id":2746},"_ClipMode":"visible","derivationIds":[],"id":"A40FCCFC-2B05-4758-A86B-A34BA7576DE5","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.1,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2745":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"2746":{"morph":{"__isSmartRef__":true,"id":2744},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2747":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2748},"eventHandler":{"__isSmartRef__":true,"id":2749},"_ClipMode":"visible","derivationIds":[],"id":"456E5BD1-1CB0-410C-BA42-65B7D9DD11B3","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.2,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2748":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"2749":{"morph":{"__isSmartRef__":true,"id":2747},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2750":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2751},"eventHandler":{"__isSmartRef__":true,"id":2752},"_ClipMode":"visible","derivationIds":[],"id":"D0AC2218-28C5-436A-A9F8-C5C1B05A46D6","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.3000000000000003,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2751":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"2752":{"morph":{"__isSmartRef__":true,"id":2750},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2753":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2754},"eventHandler":{"__isSmartRef__":true,"id":2755},"_ClipMode":"visible","derivationIds":[],"id":"24F5274E-4E42-4456-94E5-9F69E750C9F3","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.4000000000000004,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2754":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"2755":{"morph":{"__isSmartRef__":true,"id":2753},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2756":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2757},"eventHandler":{"__isSmartRef__":true,"id":2758},"_ClipMode":"visible","derivationIds":[],"id":"67F1601F-6E7C-4ABE-A728-F3A3F1919FC7","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.5,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2757":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"2758":{"morph":{"__isSmartRef__":true,"id":2756},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2759":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2760},"eventHandler":{"__isSmartRef__":true,"id":2761},"_ClipMode":"visible","derivationIds":[],"id":"FC12BF42-E793-48EA-982D-490AF7E5697D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.6,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2760":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(261,0,0)"},"2761":{"morph":{"__isSmartRef__":true,"id":2759},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2762":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2763},"eventHandler":{"__isSmartRef__":true,"id":2764},"_ClipMode":"visible","derivationIds":[],"id":"81BB8A66-1C40-4A18-B0D1-E29C2E711575","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.7,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2763":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(271,0,0)"},"2764":{"morph":{"__isSmartRef__":true,"id":2762},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2765":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2766},"eventHandler":{"__isSmartRef__":true,"id":2767},"_ClipMode":"visible","derivationIds":[],"id":"0561FEFC-8FF4-4EED-9CF2-FFC74F2E4C12","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.8000000000000003,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2766":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(281,0,0)"},"2767":{"morph":{"__isSmartRef__":true,"id":2765},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2768":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2769},"eventHandler":{"__isSmartRef__":true,"id":2770},"_ClipMode":"visible","derivationIds":[],"id":"B7E72FA4-00F9-48D2-BBA6-3550EB5AE77C","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.9000000000000004,"owner":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2769":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(291,0,0)"},"2770":{"morph":{"__isSmartRef__":true,"id":2768},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2771":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(200.0,100.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"2772":{"style":{"__isSmartRef__":true,"id":2773},"chunkOwner":{"__isSmartRef__":true,"id":2680},"_id":"_65852","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2773":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2774":{"morph":{"__isSmartRef__":true,"id":2680},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2775":{"submorphs":[{"__isSmartRef__":true,"id":2776},{"__isSmartRef__":true,"id":2779},{"__isSmartRef__":true,"id":2782},{"__isSmartRef__":true,"id":2785},{"__isSmartRef__":true,"id":2788},{"__isSmartRef__":true,"id":2791},{"__isSmartRef__":true,"id":2794},{"__isSmartRef__":true,"id":2797},{"__isSmartRef__":true,"id":2800},{"__isSmartRef__":true,"id":2803},{"__isSmartRef__":true,"id":2806},{"__isSmartRef__":true,"id":2809},{"__isSmartRef__":true,"id":2812},{"__isSmartRef__":true,"id":2815},{"__isSmartRef__":true,"id":2818},{"__isSmartRef__":true,"id":2821},{"__isSmartRef__":true,"id":2824},{"__isSmartRef__":true,"id":2827},{"__isSmartRef__":true,"id":2830},{"__isSmartRef__":true,"id":2833},{"__isSmartRef__":true,"id":2836},{"__isSmartRef__":true,"id":2839},{"__isSmartRef__":true,"id":2842},{"__isSmartRef__":true,"id":2845},{"__isSmartRef__":true,"id":2848},{"__isSmartRef__":true,"id":2851},{"__isSmartRef__":true,"id":2854},{"__isSmartRef__":true,"id":2857},{"__isSmartRef__":true,"id":2860},{"__isSmartRef__":true,"id":2863},{"__isSmartRef__":true,"id":2866},{"__isSmartRef__":true,"id":2869},{"__isSmartRef__":true,"id":2872},{"__isSmartRef__":true,"id":2875},{"__isSmartRef__":true,"id":2878},{"__isSmartRef__":true,"id":2881},{"__isSmartRef__":true,"id":2884},{"__isSmartRef__":true,"id":2887},{"__isSmartRef__":true,"id":2890},{"__isSmartRef__":true,"id":2893},{"__isSmartRef__":true,"id":2896},{"__isSmartRef__":true,"id":2899},{"__isSmartRef__":true,"id":2902},{"__isSmartRef__":true,"id":2905},{"__isSmartRef__":true,"id":2908},{"__isSmartRef__":true,"id":2911},{"__isSmartRef__":true,"id":2914},{"__isSmartRef__":true,"id":2917},{"__isSmartRef__":true,"id":2920},{"__isSmartRef__":true,"id":2923},{"__isSmartRef__":true,"id":2926},{"__isSmartRef__":true,"id":2929},{"__isSmartRef__":true,"id":2932},{"__isSmartRef__":true,"id":2935},{"__isSmartRef__":true,"id":2938},{"__isSmartRef__":true,"id":2941},{"__isSmartRef__":true,"id":2944},{"__isSmartRef__":true,"id":2947},{"__isSmartRef__":true,"id":2950},{"__isSmartRef__":true,"id":2953}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2956},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2957}],"eventHandler":{"__isSmartRef__":true,"id":2959},"_ClipMode":"visible","derivationIds":[],"id":"5BB73528-720F-439C-812A-4DE72BA5246A","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)"},"2776":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2777},"eventHandler":{"__isSmartRef__":true,"id":2778},"_ClipMode":"visible","derivationIds":[],"id":"9F39309F-FA11-428E-A94B-33A7A627DADE","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2777":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2778":{"morph":{"__isSmartRef__":true,"id":2776},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2779":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2780},"eventHandler":{"__isSmartRef__":true,"id":2781},"_ClipMode":"visible","derivationIds":[],"id":"E5BF504B-11BB-440F-B5B1-657CE85E40B8","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2780":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2781":{"morph":{"__isSmartRef__":true,"id":2779},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2782":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2783},"eventHandler":{"__isSmartRef__":true,"id":2784},"_ClipMode":"visible","derivationIds":[],"id":"D4A2E634-4221-4716-9A2E-5323C94E76E3","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2783":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2784":{"morph":{"__isSmartRef__":true,"id":2782},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2785":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2786},"eventHandler":{"__isSmartRef__":true,"id":2787},"_ClipMode":"visible","derivationIds":[],"id":"D4E364EF-6284-4427-9F0E-0C0BE745F344","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2786":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2787":{"morph":{"__isSmartRef__":true,"id":2785},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2788":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2789},"eventHandler":{"__isSmartRef__":true,"id":2790},"_ClipMode":"visible","derivationIds":[],"id":"9343E5F4-B5C7-483F-8088-76BC78C194C6","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2789":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2790":{"morph":{"__isSmartRef__":true,"id":2788},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2791":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2792},"eventHandler":{"__isSmartRef__":true,"id":2793},"_ClipMode":"visible","derivationIds":[],"id":"1A83F064-6E77-4DF3-A0B4-39CB0A21915C","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2792":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2793":{"morph":{"__isSmartRef__":true,"id":2791},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2794":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2795},"eventHandler":{"__isSmartRef__":true,"id":2796},"_ClipMode":"visible","derivationIds":[],"id":"88650F07-D72D-4175-B632-B58CB39377B4","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2795":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2796":{"morph":{"__isSmartRef__":true,"id":2794},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2797":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2798},"eventHandler":{"__isSmartRef__":true,"id":2799},"_ClipMode":"visible","derivationIds":[],"id":"D6F027DB-9919-4D91-94D9-0FF015A7223E","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2798":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2799":{"morph":{"__isSmartRef__":true,"id":2797},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2800":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2801},"eventHandler":{"__isSmartRef__":true,"id":2802},"_ClipMode":"visible","derivationIds":[],"id":"4C0C4CAC-2ECC-4CDD-AF8B-E940D5FDC2AB","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2801":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"2802":{"morph":{"__isSmartRef__":true,"id":2800},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2803":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2804},"eventHandler":{"__isSmartRef__":true,"id":2805},"_ClipMode":"visible","derivationIds":[],"id":"9C48885E-474A-4902-87C6-E3498FAFD0A1","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2804":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"2805":{"morph":{"__isSmartRef__":true,"id":2803},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2806":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2807},"eventHandler":{"__isSmartRef__":true,"id":2808},"_ClipMode":"visible","derivationIds":[],"id":"6FEFBF48-90BB-44D4-A2DD-A4E8F4F9B2CD","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2807":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"2808":{"morph":{"__isSmartRef__":true,"id":2806},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2809":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2810},"eventHandler":{"__isSmartRef__":true,"id":2811},"_ClipMode":"visible","derivationIds":[],"id":"643E6E22-4DBD-4F61-BEEF-21FF1218EECB","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2810":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"2811":{"morph":{"__isSmartRef__":true,"id":2809},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2812":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2813},"eventHandler":{"__isSmartRef__":true,"id":2814},"_ClipMode":"visible","derivationIds":[],"id":"FCD37027-F627-475C-AB10-03EE794D41A0","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2813":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"2814":{"morph":{"__isSmartRef__":true,"id":2812},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2815":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2816},"eventHandler":{"__isSmartRef__":true,"id":2817},"_ClipMode":"visible","derivationIds":[],"id":"F21654FA-A41E-49B4-9F4E-C79FA6F9C2F9","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2816":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"2817":{"morph":{"__isSmartRef__":true,"id":2815},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2818":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2819},"eventHandler":{"__isSmartRef__":true,"id":2820},"_ClipMode":"visible","derivationIds":[],"id":"8039F135-8D08-453C-8C79-2ADC7F9545E2","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2819":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"2820":{"morph":{"__isSmartRef__":true,"id":2818},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2821":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2822},"eventHandler":{"__isSmartRef__":true,"id":2823},"_ClipMode":"visible","derivationIds":[],"id":"029BABEE-FB96-43D6-AE5A-EB1E78BB8C26","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2822":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"2823":{"morph":{"__isSmartRef__":true,"id":2821},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2824":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2825},"eventHandler":{"__isSmartRef__":true,"id":2826},"_ClipMode":"visible","derivationIds":[],"id":"902C78BE-A86D-4ACE-8EBD-5A4E07AA19BB","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2825":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"2826":{"morph":{"__isSmartRef__":true,"id":2824},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2827":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2828},"eventHandler":{"__isSmartRef__":true,"id":2829},"_ClipMode":"visible","derivationIds":[],"id":"7370F2A0-10E7-49EA-9FCC-7A51FE6AF146","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2828":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"2829":{"morph":{"__isSmartRef__":true,"id":2827},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2830":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2831},"eventHandler":{"__isSmartRef__":true,"id":2832},"_ClipMode":"visible","derivationIds":[],"id":"0B7C8D0D-E8AC-4CFA-B37C-F3051DC1F4A8","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2831":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"2832":{"morph":{"__isSmartRef__":true,"id":2830},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2833":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2834},"eventHandler":{"__isSmartRef__":true,"id":2835},"_ClipMode":"visible","derivationIds":[],"id":"02D461C0-002D-4E30-BBC6-7C307308233D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.9000000000000001,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2834":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"2835":{"morph":{"__isSmartRef__":true,"id":2833},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2836":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2837},"eventHandler":{"__isSmartRef__":true,"id":2838},"_ClipMode":"visible","derivationIds":[],"id":"8F2AD191-5255-4C44-8EBD-604C4356B24B","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2837":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"2838":{"morph":{"__isSmartRef__":true,"id":2836},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2839":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2840},"eventHandler":{"__isSmartRef__":true,"id":2841},"_ClipMode":"visible","derivationIds":[],"id":"2A2F474B-5D56-4333-B6F9-54B07E20413D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.1,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2840":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"2841":{"morph":{"__isSmartRef__":true,"id":2839},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2842":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2843},"eventHandler":{"__isSmartRef__":true,"id":2844},"_ClipMode":"visible","derivationIds":[],"id":"F316171F-01B1-4134-9647-E3F0991EC70E","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.2,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2843":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"2844":{"morph":{"__isSmartRef__":true,"id":2842},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2845":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2846},"eventHandler":{"__isSmartRef__":true,"id":2847},"_ClipMode":"visible","derivationIds":[],"id":"FA4F30DB-A272-4DAD-909F-44E0F3498C4F","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.3000000000000003,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2846":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"2847":{"morph":{"__isSmartRef__":true,"id":2845},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2848":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2849},"eventHandler":{"__isSmartRef__":true,"id":2850},"_ClipMode":"visible","derivationIds":[],"id":"CC6FDBEA-1CC1-46CE-AE08-9CC1AAB08D13","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.4000000000000004,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2849":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"2850":{"morph":{"__isSmartRef__":true,"id":2848},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2851":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2852},"eventHandler":{"__isSmartRef__":true,"id":2853},"_ClipMode":"visible","derivationIds":[],"id":"BEC849F6-B7C0-43DA-9136-2967CE33FA78","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.5,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2852":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"2853":{"morph":{"__isSmartRef__":true,"id":2851},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2854":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2855},"eventHandler":{"__isSmartRef__":true,"id":2856},"_ClipMode":"visible","derivationIds":[],"id":"5B7D3C66-F338-46F5-AD54-7A07DF7252DB","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.6,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2855":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(261,0,0)"},"2856":{"morph":{"__isSmartRef__":true,"id":2854},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2857":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2858},"eventHandler":{"__isSmartRef__":true,"id":2859},"_ClipMode":"visible","derivationIds":[],"id":"A3373BC8-81B2-4D13-A9CF-632A96784F0B","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.7,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2858":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(271,0,0)"},"2859":{"morph":{"__isSmartRef__":true,"id":2857},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2860":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2861},"eventHandler":{"__isSmartRef__":true,"id":2862},"_ClipMode":"visible","derivationIds":[],"id":"5103A408-D06E-4363-BBB7-9F2BA6787D74","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.8000000000000003,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2861":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(281,0,0)"},"2862":{"morph":{"__isSmartRef__":true,"id":2860},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2863":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2864},"eventHandler":{"__isSmartRef__":true,"id":2865},"_ClipMode":"visible","derivationIds":[],"id":"7C91A679-E629-46FB-B0AD-E025857CD3D2","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.9000000000000004,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2864":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(291,0,0)"},"2865":{"morph":{"__isSmartRef__":true,"id":2863},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2866":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2867},"eventHandler":{"__isSmartRef__":true,"id":2868},"_ClipMode":"visible","derivationIds":[],"id":"FA85A337-1419-4C8E-82F4-901B0A31451D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2867":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2868":{"morph":{"__isSmartRef__":true,"id":2866},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2869":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2870},"eventHandler":{"__isSmartRef__":true,"id":2871},"_ClipMode":"visible","derivationIds":[],"id":"6C23A5C4-B173-4FFF-A919-6F28CDA81BBC","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2870":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2871":{"morph":{"__isSmartRef__":true,"id":2869},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2872":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2873},"eventHandler":{"__isSmartRef__":true,"id":2874},"_ClipMode":"visible","derivationIds":[],"id":"94316613-D253-498B-BD64-50CF5739D085","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2873":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2874":{"morph":{"__isSmartRef__":true,"id":2872},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2875":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2876},"eventHandler":{"__isSmartRef__":true,"id":2877},"_ClipMode":"visible","derivationIds":[],"id":"04C9C136-D49C-4DC5-9DD1-67ABE71474A9","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2876":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2877":{"morph":{"__isSmartRef__":true,"id":2875},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2878":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2879},"eventHandler":{"__isSmartRef__":true,"id":2880},"_ClipMode":"visible","derivationIds":[],"id":"34A900F2-B9F8-413D-818A-6278ACEB8C9A","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2879":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2880":{"morph":{"__isSmartRef__":true,"id":2878},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2881":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2882},"eventHandler":{"__isSmartRef__":true,"id":2883},"_ClipMode":"visible","derivationIds":[],"id":"2C3B6F62-F351-4927-8403-5D1C26AB137F","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2882":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2883":{"morph":{"__isSmartRef__":true,"id":2881},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2884":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2885},"eventHandler":{"__isSmartRef__":true,"id":2886},"_ClipMode":"visible","derivationIds":[],"id":"CDB3C1EF-84F3-497E-BB25-EF73F7031073","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2885":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2886":{"morph":{"__isSmartRef__":true,"id":2884},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2887":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2888},"eventHandler":{"__isSmartRef__":true,"id":2889},"_ClipMode":"visible","derivationIds":[],"id":"A7D181B9-18DB-4E8D-A126-0F151F2111C1","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2888":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2889":{"morph":{"__isSmartRef__":true,"id":2887},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2890":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2891},"eventHandler":{"__isSmartRef__":true,"id":2892},"_ClipMode":"visible","derivationIds":[],"id":"BA189E4F-32BA-4602-A11E-25B5022AA9A3","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2891":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"2892":{"morph":{"__isSmartRef__":true,"id":2890},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2893":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2894},"eventHandler":{"__isSmartRef__":true,"id":2895},"_ClipMode":"visible","derivationIds":[],"id":"E9E95913-C1CA-42B8-8F61-A62EF572AA87","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2894":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"2895":{"morph":{"__isSmartRef__":true,"id":2893},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2896":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2897},"eventHandler":{"__isSmartRef__":true,"id":2898},"_ClipMode":"visible","derivationIds":[],"id":"D786CBEE-80A2-475F-8A40-D188EBA193B5","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2897":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"2898":{"morph":{"__isSmartRef__":true,"id":2896},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2899":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2900},"eventHandler":{"__isSmartRef__":true,"id":2901},"_ClipMode":"visible","derivationIds":[],"id":"18B41BFE-C374-4EFE-A831-3BB8CA11BDB6","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2900":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"2901":{"morph":{"__isSmartRef__":true,"id":2899},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2902":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2903},"eventHandler":{"__isSmartRef__":true,"id":2904},"_ClipMode":"visible","derivationIds":[],"id":"7148A694-C5E7-4DF3-86FB-362AF1535BA1","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2903":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"2904":{"morph":{"__isSmartRef__":true,"id":2902},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2905":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2906},"eventHandler":{"__isSmartRef__":true,"id":2907},"_ClipMode":"visible","derivationIds":[],"id":"AE39682A-F427-4A0B-A779-5D10F58FAD85","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2906":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"2907":{"morph":{"__isSmartRef__":true,"id":2905},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2908":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2909},"eventHandler":{"__isSmartRef__":true,"id":2910},"_ClipMode":"visible","derivationIds":[],"id":"CAE21E22-DA1B-438A-9151-AFEA80EB1F88","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2909":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"2910":{"morph":{"__isSmartRef__":true,"id":2908},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2911":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2912},"eventHandler":{"__isSmartRef__":true,"id":2913},"_ClipMode":"visible","derivationIds":[],"id":"33E0F3A2-50FA-4E1D-ACE6-3B73D308B979","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2912":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"2913":{"morph":{"__isSmartRef__":true,"id":2911},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2914":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2915},"eventHandler":{"__isSmartRef__":true,"id":2916},"_ClipMode":"visible","derivationIds":[],"id":"347C53A1-7BA4-462F-8CB7-00CA297CBFDF","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2915":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"2916":{"morph":{"__isSmartRef__":true,"id":2914},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2917":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2918},"eventHandler":{"__isSmartRef__":true,"id":2919},"_ClipMode":"visible","derivationIds":[],"id":"7D2AD34C-85C9-41C9-82F0-2A3A992C5EDD","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2918":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"2919":{"morph":{"__isSmartRef__":true,"id":2917},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2920":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2921},"eventHandler":{"__isSmartRef__":true,"id":2922},"_ClipMode":"visible","derivationIds":[],"id":"F6C8F483-0D9F-496B-9E9F-6FB39ECBC72C","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2921":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"2922":{"morph":{"__isSmartRef__":true,"id":2920},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2923":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2924},"eventHandler":{"__isSmartRef__":true,"id":2925},"_ClipMode":"visible","derivationIds":[],"id":"7EE7734A-6A4A-44AB-9EB5-B4C6A0658179","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":1.9000000000000001,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2924":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"2925":{"morph":{"__isSmartRef__":true,"id":2923},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2926":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2927},"eventHandler":{"__isSmartRef__":true,"id":2928},"_ClipMode":"visible","derivationIds":[],"id":"61691AD7-A112-4E1A-8087-AF87961CE45B","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2927":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"2928":{"morph":{"__isSmartRef__":true,"id":2926},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2929":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2930},"eventHandler":{"__isSmartRef__":true,"id":2931},"_ClipMode":"visible","derivationIds":[],"id":"243CCDA0-E3CC-41DD-B869-4BFD2A687A83","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.1,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2930":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"2931":{"morph":{"__isSmartRef__":true,"id":2929},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2932":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2933},"eventHandler":{"__isSmartRef__":true,"id":2934},"_ClipMode":"visible","derivationIds":[],"id":"0AA7CBA3-C665-497E-AE6E-1FFBA9AB5FF1","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.2,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2933":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"2934":{"morph":{"__isSmartRef__":true,"id":2932},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2935":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2936},"eventHandler":{"__isSmartRef__":true,"id":2937},"_ClipMode":"visible","derivationIds":[],"id":"A20C7029-C741-41C4-ABCA-5C107F6C59A8","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.3000000000000003,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2936":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"2937":{"morph":{"__isSmartRef__":true,"id":2935},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2938":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2939},"eventHandler":{"__isSmartRef__":true,"id":2940},"_ClipMode":"visible","derivationIds":[],"id":"9A2411A4-7D41-450E-AADB-7AC82455419D","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.4000000000000004,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2939":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"2940":{"morph":{"__isSmartRef__":true,"id":2938},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2941":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2942},"eventHandler":{"__isSmartRef__":true,"id":2943},"_ClipMode":"visible","derivationIds":[],"id":"39E9EA95-5398-450E-98F0-C02FF16D30B2","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.5,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2942":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"2943":{"morph":{"__isSmartRef__":true,"id":2941},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2944":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2945},"eventHandler":{"__isSmartRef__":true,"id":2946},"_ClipMode":"visible","derivationIds":[],"id":"C7BD63CC-A9EF-416A-87CD-8880132CB007","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.6,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2945":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(261,0,0)"},"2946":{"morph":{"__isSmartRef__":true,"id":2944},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2947":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2948},"eventHandler":{"__isSmartRef__":true,"id":2949},"_ClipMode":"visible","derivationIds":[],"id":"EDC07858-B1CC-47C8-B173-BAA3D42D19F1","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.7,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2948":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(271,0,0)"},"2949":{"morph":{"__isSmartRef__":true,"id":2947},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2950":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2951},"eventHandler":{"__isSmartRef__":true,"id":2952},"_ClipMode":"visible","derivationIds":[],"id":"99240844-397C-4C36-9BAD-2FE851FDFBA5","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.8000000000000003,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2951":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(281,0,0)"},"2952":{"morph":{"__isSmartRef__":true,"id":2950},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2953":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2954},"eventHandler":{"__isSmartRef__":true,"id":2955},"_ClipMode":"visible","derivationIds":[],"id":"443F1778-691D-44CE-9259-FC02281B09C7","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":2.9000000000000004,"owner":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2954":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(291,0,0)"},"2955":{"morph":{"__isSmartRef__":true,"id":2953},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2956":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(200.0,100.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"2957":{"style":{"__isSmartRef__":true,"id":2958},"chunkOwner":{"__isSmartRef__":true,"id":2775},"_id":"_395","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2958":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2959":{"morph":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2960":{"values":{"__isSmartRef__":true,"id":2961},"context":[{"__isSmartRef__":true,"id":2975},{"__isSmartRef__":true,"id":2978},{"__isSmartRef__":true,"id":2981},{"__isSmartRef__":true,"id":2984},{"__isSmartRef__":true,"id":2987},{"__isSmartRef__":true,"id":2990},{"__isSmartRef__":true,"id":2993},{"__isSmartRef__":true,"id":2996},{"__isSmartRef__":true,"id":2999},{"__isSmartRef__":true,"id":3002},{"__isSmartRef__":true,"id":3005},{"__isSmartRef__":true,"id":3008},{"__isSmartRef__":true,"id":3011}],"pc":{"__isSmartRef__":true,"id":3021},"mapping":{"__isSmartRef__":true,"id":3084}},"2961":{"30-31":{"__isSmartRef__":true,"id":2962},"25-31":{"__isSmartRef__":true,"id":2963},"41-42":{"__isSmartRef__":true,"id":2964},"36-42":{"__isSmartRef__":true,"id":2965},"56-57":{"__isSmartRef__":true,"id":2966},"51-57":{"__isSmartRef__":true,"id":2967},"59-60":{"__isSmartRef__":true,"id":2968},"62-64":{"__isSmartRef__":true,"id":2969},"58-64":{"__isSmartRef__":true,"id":2970},"44-228":{"__isSmartRef__":true,"id":2971},"230-234":{"__isSmartRef__":true,"id":2972},"235-244":{"__isSmartRef__":true,"id":2973},"230-244":{"__isSmartRef__":true,"id":2974},"245-251":{"__isSmartRef__":true,"id":3017},"252-260":{"__isSmartRef__":true,"id":3018},"230-261":{"__isSmartRef__":true,"id":3019},"21-262":{"__isSmartRef__":true,"id":3020}},"2962":{"val":1},"2963":{"val":1},"2964":{"val":3},"2965":{"val":3},"2966":{"val":0},"2967":{"val":0},"2968":{"val":71},"2969":{"val":70},"2970":{"val":false},"2971":{},"2972":{"val":{"__isSmartRef__":true,"id":2288}},"2973":{"val":"submorphs"},"2974":{"val":[{"__isSmartRef__":true,"id":2289},{"__isSmartRef__":true,"id":2292},{"__isSmartRef__":true,"id":2295},{"__isSmartRef__":true,"id":2298},{"__isSmartRef__":true,"id":2301},{"__isSmartRef__":true,"id":2304},{"__isSmartRef__":true,"id":2307},{"__isSmartRef__":true,"id":2310},{"__isSmartRef__":true,"id":2313},{"__isSmartRef__":true,"id":2316},{"__isSmartRef__":true,"id":2319},{"__isSmartRef__":true,"id":2322},{"__isSmartRef__":true,"id":2325},{"__isSmartRef__":true,"id":2328},{"__isSmartRef__":true,"id":2331},{"__isSmartRef__":true,"id":2334},{"__isSmartRef__":true,"id":2337},{"__isSmartRef__":true,"id":2340},{"__isSmartRef__":true,"id":2343},{"__isSmartRef__":true,"id":2346},{"__isSmartRef__":true,"id":2349},{"__isSmartRef__":true,"id":2352},{"__isSmartRef__":true,"id":2355},{"__isSmartRef__":true,"id":2358},{"__isSmartRef__":true,"id":2361},{"__isSmartRef__":true,"id":2364},{"__isSmartRef__":true,"id":2367},{"__isSmartRef__":true,"id":2370},{"__isSmartRef__":true,"id":2373},{"__isSmartRef__":true,"id":2376},{"__isSmartRef__":true,"id":2379},{"__isSmartRef__":true,"id":2382},{"__isSmartRef__":true,"id":2385},{"__isSmartRef__":true,"id":2388},{"__isSmartRef__":true,"id":2391},{"__isSmartRef__":true,"id":2394},{"__isSmartRef__":true,"id":2975},{"__isSmartRef__":true,"id":2978},{"__isSmartRef__":true,"id":2981},{"__isSmartRef__":true,"id":2984},{"__isSmartRef__":true,"id":2987},{"__isSmartRef__":true,"id":2990},{"__isSmartRef__":true,"id":2993},{"__isSmartRef__":true,"id":2996},{"__isSmartRef__":true,"id":2999},{"__isSmartRef__":true,"id":3002},{"__isSmartRef__":true,"id":3005},{"__isSmartRef__":true,"id":3008},{"__isSmartRef__":true,"id":3011},{"__isSmartRef__":true,"id":3014}]},"2975":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2976},"eventHandler":{"__isSmartRef__":true,"id":2977},"_ClipMode":"visible","derivationIds":["280C01A6-F27C-480D-9EB9-4D0ABAAFB221"],"id":"4750718A-31B3-4A81-B70B-A553256ACE8C","droppingEnabled":true,"halosEnabled":true,"_Rotation":0,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2976":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2977":{"morph":{"__isSmartRef__":true,"id":2975},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2978":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2979},"eventHandler":{"__isSmartRef__":true,"id":2980},"_ClipMode":"visible","derivationIds":["03AED537-BC89-4088-BE1A-B32971AB607D"],"id":"5EFA2A09-BC85-493C-8841-E0F8C2C798C7","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2979":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2980":{"morph":{"__isSmartRef__":true,"id":2978},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2981":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2982},"eventHandler":{"__isSmartRef__":true,"id":2983},"_ClipMode":"visible","derivationIds":["A1EBDD7F-D729-4898-8BE0-A62E404F4075"],"id":"6244E253-82E2-40C2-96B0-320EAC0FB628","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2982":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2983":{"morph":{"__isSmartRef__":true,"id":2981},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2984":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2985},"eventHandler":{"__isSmartRef__":true,"id":2986},"_ClipMode":"visible","derivationIds":["1C323D52-55B9-4EF0-82BB-CD6A69EC60CC"],"id":"1B5B233A-B9AD-4C94-94C2-146CC41B110C","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.30000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2985":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2986":{"morph":{"__isSmartRef__":true,"id":2984},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2987":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2988},"eventHandler":{"__isSmartRef__":true,"id":2989},"_ClipMode":"visible","derivationIds":["87B2095E-ECC7-4066-A158-4D1ED19FFED4"],"id":"F5CB355B-63B1-426D-8423-476101DA2551","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.4,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2988":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2989":{"morph":{"__isSmartRef__":true,"id":2987},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2990":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2991},"eventHandler":{"__isSmartRef__":true,"id":2992},"_ClipMode":"visible","derivationIds":["AB5EAC08-C4EB-4CAA-B139-B042635DB7E6"],"id":"192A60F3-D2BA-43EF-B3FD-6BFE2BB1BAE4","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2991":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2992":{"morph":{"__isSmartRef__":true,"id":2990},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2993":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2994},"eventHandler":{"__isSmartRef__":true,"id":2995},"_ClipMode":"visible","derivationIds":["A4C3F241-64EC-4FDC-8F20-801BF461D6F6"],"id":"3E658865-E71D-4E26-86CF-CB8F5C8CC5D0","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.6000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2994":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2995":{"morph":{"__isSmartRef__":true,"id":2993},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2996":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2997},"eventHandler":{"__isSmartRef__":true,"id":2998},"_ClipMode":"visible","derivationIds":["B19A7FCB-0522-46CA-8A0F-D32DAEC51C82"],"id":"F5430C69-C587-4A5C-8B8D-8D84BFD9F11D","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.7000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2997":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2998":{"morph":{"__isSmartRef__":true,"id":2996},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2999":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3000},"eventHandler":{"__isSmartRef__":true,"id":3001},"_ClipMode":"visible","derivationIds":["692629C3-EC8D-49B3-9826-7D221DB02582"],"id":"88C6B75F-8ACA-4399-BEC5-18F68482023F","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.8,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3000":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"3001":{"morph":{"__isSmartRef__":true,"id":2999},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3002":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3003},"eventHandler":{"__isSmartRef__":true,"id":3004},"_ClipMode":"visible","derivationIds":["C94B4063-BCC7-4E41-96AB-B70D77F65DE6"],"id":"0FC04802-6ADC-45B2-B298-93EAB7028EE3","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.9,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3003":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"3004":{"morph":{"__isSmartRef__":true,"id":3002},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3005":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3006},"eventHandler":{"__isSmartRef__":true,"id":3007},"_ClipMode":"visible","derivationIds":["12EE27B0-C3FC-46DD-A8F7-89843EBD2FC4"],"id":"BB16CFBF-C2A6-4C3B-AE07-386A93990DFA","droppingEnabled":true,"halosEnabled":true,"_Rotation":1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3006":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"3007":{"morph":{"__isSmartRef__":true,"id":3005},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3008":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3009},"eventHandler":{"__isSmartRef__":true,"id":3010},"_ClipMode":"visible","derivationIds":["7EE82974-1BFD-485B-BCDA-0D51FA182D29"],"id":"28A7A87B-76B1-401C-BE43-BD5EB3C990AA","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3009":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"3010":{"morph":{"__isSmartRef__":true,"id":3008},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3011":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3012},"eventHandler":{"__isSmartRef__":true,"id":3013},"_ClipMode":"visible","derivationIds":["5346DC23-C71B-4834-A497-83774A04224C"],"id":"98A0602D-FE4A-45F1-A7F6-1C41A943E65B","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.2000000000000002,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3012":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"3013":{"morph":{"__isSmartRef__":true,"id":3011},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3014":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3015},"eventHandler":{"__isSmartRef__":true,"id":3016},"_ClipMode":"visible","derivationIds":[],"id":"83141C7E-39DE-4DA9-B532-775B6909DDBE","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_Rotation":7.816814692820414,"owner":null,"_Scale":0.9999999999999999,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(-1346.9,39.2)"},"3015":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(722,0,0)"},"3016":{"morph":{"__isSmartRef__":true,"id":3014},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3017":{"val":"invoke"},"3018":{"val":"remove"},"3019":{"val":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},"3020":{"val":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},"3021":{"pos":[206,222],"property":{"__isSmartRef__":true,"id":3022},"recv":{"__isSmartRef__":true,"id":3023},"args":[{"__isSmartRef__":true,"id":3024}],"_parent":{"__isSmartRef__":true,"id":3025},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3022":{"pos":[211,219],"value":"addMorph","_parent":{"__isSmartRef__":true,"id":3021},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3023":{"pos":[206,210],"_parent":{"__isSmartRef__":true,"id":3021},"__LivelyClassName__":"lively.ast.This","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3024":{"pos":[220,221],"name":"m","_parent":{"__isSmartRef__":true,"id":3021},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3025":{"pos":[72,227],"children":[{"__isSmartRef__":true,"id":3026},{"__isSmartRef__":true,"id":3035},{"__isSmartRef__":true,"id":3042},{"__isSmartRef__":true,"id":3048},{"__isSmartRef__":true,"id":3021}],"_parent":{"__isSmartRef__":true,"id":3059},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3026":{"pos":[80,116],"children":[{"__isSmartRef__":true,"id":3027}],"_parent":{"__isSmartRef__":true,"id":3025},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3027":{"pos":[80,116],"name":"m","val":{"__isSmartRef__":true,"id":3028},"_parent":{"__isSmartRef__":true,"id":3026},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3028":{"pos":[84,116],"property":{"__isSmartRef__":true,"id":3029},"recv":{"__isSmartRef__":true,"id":3030},"args":[{"__isSmartRef__":true,"id":3031},{"__isSmartRef__":true,"id":3032},{"__isSmartRef__":true,"id":3033},{"__isSmartRef__":true,"id":3034}],"_parent":{"__isSmartRef__":true,"id":3027},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3029":{"pos":[91,104],"value":"makeRectangle","_parent":{"__isSmartRef__":true,"id":3028},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3030":{"pos":[85,90],"name":"Morph","_parent":{"__isSmartRef__":true,"id":3028},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3031":{"pos":[105,106],"value":0,"_parent":{"__isSmartRef__":true,"id":3028},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3032":{"pos":[107,108],"value":0,"_parent":{"__isSmartRef__":true,"id":3028},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3033":{"pos":[110,112],"value":10,"_parent":{"__isSmartRef__":true,"id":3028},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3034":{"pos":[113,115],"value":50,"_parent":{"__isSmartRef__":true,"id":3028},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3035":{"pos":[121,140],"property":{"__isSmartRef__":true,"id":3036},"recv":{"__isSmartRef__":true,"id":3037},"args":[{"__isSmartRef__":true,"id":3038}],"_parent":{"__isSmartRef__":true,"id":3025},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3036":{"pos":[123,129],"value":"moveBy","_parent":{"__isSmartRef__":true,"id":3035},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3037":{"pos":[121,122],"name":"m","_parent":{"__isSmartRef__":true,"id":3035},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3038":{"pos":[130,139],"fn":{"__isSmartRef__":true,"id":3039},"args":[{"__isSmartRef__":true,"id":3040},{"__isSmartRef__":true,"id":3041}],"_parent":{"__isSmartRef__":true,"id":3035},"__LivelyClassName__":"lively.ast.Call","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3039":{"pos":[130,132],"name":"pt","_parent":{"__isSmartRef__":true,"id":3038},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3040":{"pos":[133,135],"value":70,"_parent":{"__isSmartRef__":true,"id":3038},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3041":{"pos":[136,138],"value":70,"_parent":{"__isSmartRef__":true,"id":3038},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3042":{"pos":[145,164],"property":{"__isSmartRef__":true,"id":3043},"recv":{"__isSmartRef__":true,"id":3044},"args":[{"__isSmartRef__":true,"id":3045}],"_parent":{"__isSmartRef__":true,"id":3025},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3043":{"pos":[147,155],"value":"rotateBy","_parent":{"__isSmartRef__":true,"id":3042},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3044":{"pos":[145,146],"name":"m","_parent":{"__isSmartRef__":true,"id":3042},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3045":{"pos":[156,163],"name":"*","left":{"__isSmartRef__":true,"id":3046},"right":{"__isSmartRef__":true,"id":3047},"_parent":{"__isSmartRef__":true,"id":3042},"__LivelyClassName__":"lively.ast.BinaryOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3046":{"pos":[156,157],"name":"i","_parent":{"__isSmartRef__":true,"id":3045},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3047":{"pos":[160,163],"value":0.1,"_parent":{"__isSmartRef__":true,"id":3045},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3048":{"pos":[169,201],"property":{"__isSmartRef__":true,"id":3049},"recv":{"__isSmartRef__":true,"id":3050},"args":[{"__isSmartRef__":true,"id":3051}],"_parent":{"__isSmartRef__":true,"id":3025},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3049":{"pos":[171,178],"value":"setFill","_parent":{"__isSmartRef__":true,"id":3048},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3050":{"pos":[169,170],"name":"m","_parent":{"__isSmartRef__":true,"id":3048},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3051":{"pos":[179,200],"property":{"__isSmartRef__":true,"id":3052},"recv":{"__isSmartRef__":true,"id":3053},"args":[{"__isSmartRef__":true,"id":3054},{"__isSmartRef__":true,"id":3057},{"__isSmartRef__":true,"id":3058}],"_parent":{"__isSmartRef__":true,"id":3048},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3052":{"pos":[185,188],"value":"rgb","_parent":{"__isSmartRef__":true,"id":3051},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3053":{"pos":[179,184],"name":"Color","_parent":{"__isSmartRef__":true,"id":3051},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3054":{"pos":[189,195],"name":"*","left":{"__isSmartRef__":true,"id":3055},"right":{"__isSmartRef__":true,"id":3056},"_parent":{"__isSmartRef__":true,"id":3051},"__LivelyClassName__":"lively.ast.BinaryOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3055":{"pos":[189,190],"name":"i","_parent":{"__isSmartRef__":true,"id":3054},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3056":{"pos":[193,195],"value":10,"_parent":{"__isSmartRef__":true,"id":3054},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3057":{"pos":[196,197],"value":0,"_parent":{"__isSmartRef__":true,"id":3051},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3058":{"pos":[198,199],"value":0,"_parent":{"__isSmartRef__":true,"id":3051},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3059":{"pos":[44,228],"init":{"__isSmartRef__":true,"id":3060},"condExpr":{"__isSmartRef__":true,"id":3063},"body":{"__isSmartRef__":true,"id":3025},"upd":{"__isSmartRef__":true,"id":3066},"_parent":{"__isSmartRef__":true,"id":3068},"__LivelyClassName__":"lively.ast.For","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3060":{"pos":[51,57],"children":[{"__isSmartRef__":true,"id":3061}],"_parent":{"__isSmartRef__":true,"id":3059},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3061":{"pos":[51,57],"name":"i","val":{"__isSmartRef__":true,"id":3062},"_parent":{"__isSmartRef__":true,"id":3060},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3062":{"pos":[56,57],"value":0,"_parent":{"__isSmartRef__":true,"id":3061},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3063":{"pos":[58,64],"name":"<","left":{"__isSmartRef__":true,"id":3064},"right":{"__isSmartRef__":true,"id":3065},"_parent":{"__isSmartRef__":true,"id":3059},"__LivelyClassName__":"lively.ast.BinaryOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3064":{"pos":[59,60],"name":"i","_parent":{"__isSmartRef__":true,"id":3063},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3065":{"pos":[62,64],"value":70,"_parent":{"__isSmartRef__":true,"id":3063},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3066":{"pos":[65,69],"name":"++","expr":{"__isSmartRef__":true,"id":3067},"_parent":{"__isSmartRef__":true,"id":3059},"__LivelyClassName__":"lively.ast.PostOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3067":{"pos":[66,67],"name":"i","_parent":{"__isSmartRef__":true,"id":3066},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3068":{"pos":[21,262],"children":[{"__isSmartRef__":true,"id":3069},{"__isSmartRef__":true,"id":3072},{"__isSmartRef__":true,"id":3059},{"__isSmartRef__":true,"id":3075}],"_parent":{"__isSmartRef__":true,"id":3081},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3069":{"pos":[25,31],"children":[{"__isSmartRef__":true,"id":3070}],"_parent":{"__isSmartRef__":true,"id":3068},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3070":{"pos":[25,31],"name":"j","val":{"__isSmartRef__":true,"id":3071},"_parent":{"__isSmartRef__":true,"id":3069},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3071":{"pos":[30,31],"value":1,"_parent":{"__isSmartRef__":true,"id":3070},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3072":{"pos":[36,42],"children":[{"__isSmartRef__":true,"id":3073}],"_parent":{"__isSmartRef__":true,"id":3068},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3073":{"pos":[36,42],"name":"z","val":{"__isSmartRef__":true,"id":3074},"_parent":{"__isSmartRef__":true,"id":3072},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3074":{"pos":[41,42],"value":3,"_parent":{"__isSmartRef__":true,"id":3073},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3075":{"pos":[230,261],"property":{"__isSmartRef__":true,"id":3076},"recv":{"__isSmartRef__":true,"id":3077},"args":[{"__isSmartRef__":true,"id":3080}],"_parent":{"__isSmartRef__":true,"id":3068},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3076":{"pos":[245,251],"value":"invoke","_parent":{"__isSmartRef__":true,"id":3075},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3077":{"pos":[230,244],"slotName":{"__isSmartRef__":true,"id":3078},"obj":{"__isSmartRef__":true,"id":3079},"_parent":{"__isSmartRef__":true,"id":3075},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3078":{"pos":[235,244],"value":"submorphs","_parent":{"__isSmartRef__":true,"id":3077},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3079":{"pos":[230,234],"_parent":{"__isSmartRef__":true,"id":3077},"__LivelyClassName__":"lively.ast.This","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3080":{"pos":[252,260],"value":"remove","_parent":{"__isSmartRef__":true,"id":3075},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3081":{"pos":[18,265],"body":{"__isSmartRef__":true,"id":3068},"args":[],"_parent":{"__isSmartRef__":true,"id":3082},"__LivelyClassName__":"lively.ast.Function","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3082":{"pos":[0,265],"name":"anonymous","val":{"__isSmartRef__":true,"id":3081},"_parent":{"__isSmartRef__":true,"id":3083},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3083":{"pos":[0,265],"children":[{"__isSmartRef__":true,"id":3082}],"source":"function anonymous(){\nvar j = 1;\nvar z = 3;\nfor(var i = 0; i< 70; i++) {\n var m = Morph.makeRectangle(0,0, 10,50)\n m.moveBy(pt(70,70))\n m.rotateBy(i * 0.1)\n m.setFill(Color.rgb(i * 10,0,0))\n this.addMorph(m) \n}\n\nthis.submorphs.invoke('remove')\n\n\n}","__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3084":{"this":{"__isSmartRef__":true,"id":2288},"j":1,"z":3,"i":73,"m":{"__isSmartRef__":true,"id":3014}},"3085":{"values":{"__isSmartRef__":true,"id":3086},"context":[{"__isSmartRef__":true,"id":3100},{"__isSmartRef__":true,"id":3103},{"__isSmartRef__":true,"id":3106},{"__isSmartRef__":true,"id":3109},{"__isSmartRef__":true,"id":3112},{"__isSmartRef__":true,"id":3115},{"__isSmartRef__":true,"id":3118},{"__isSmartRef__":true,"id":3121},{"__isSmartRef__":true,"id":3124},{"__isSmartRef__":true,"id":3127},{"__isSmartRef__":true,"id":3130},{"__isSmartRef__":true,"id":3133},{"__isSmartRef__":true,"id":3136},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3145},{"__isSmartRef__":true,"id":3148},{"__isSmartRef__":true,"id":3151},{"__isSmartRef__":true,"id":3154},{"__isSmartRef__":true,"id":3157},{"__isSmartRef__":true,"id":3160},{"__isSmartRef__":true,"id":3163},{"__isSmartRef__":true,"id":3166},{"__isSmartRef__":true,"id":3169},{"__isSmartRef__":true,"id":3172},{"__isSmartRef__":true,"id":3175},{"__isSmartRef__":true,"id":3178},{"__isSmartRef__":true,"id":3181}],"pc":{"__isSmartRef__":true,"id":3063},"mapping":{"__isSmartRef__":true,"id":3084}},"3086":{"30-31":{"__isSmartRef__":true,"id":3087},"25-31":{"__isSmartRef__":true,"id":3088},"41-42":{"__isSmartRef__":true,"id":3089},"36-42":{"__isSmartRef__":true,"id":3090},"56-57":{"__isSmartRef__":true,"id":3091},"51-57":{"__isSmartRef__":true,"id":3092},"59-60":{"__isSmartRef__":true,"id":3093},"62-64":{"__isSmartRef__":true,"id":3094},"58-64":{"__isSmartRef__":true,"id":3095},"44-228":{"__isSmartRef__":true,"id":3096},"230-234":{"__isSmartRef__":true,"id":3097},"235-244":{"__isSmartRef__":true,"id":3098},"230-244":{"__isSmartRef__":true,"id":3099},"245-251":{"__isSmartRef__":true,"id":3184},"252-260":{"__isSmartRef__":true,"id":3185},"230-261":{"__isSmartRef__":true,"id":3186},"21-262":{"__isSmartRef__":true,"id":3187}},"3087":{"val":1},"3088":{"val":1},"3089":{"val":3},"3090":{"val":3},"3091":{"val":0},"3092":{"val":0},"3093":{"val":70},"3094":{"val":70},"3095":{"val":false},"3096":{},"3097":{"val":{"__isSmartRef__":true,"id":2288}},"3098":{"val":"submorphs"},"3099":{"val":[{"__isSmartRef__":true,"id":2289},{"__isSmartRef__":true,"id":2292},{"__isSmartRef__":true,"id":2295},{"__isSmartRef__":true,"id":2298},{"__isSmartRef__":true,"id":2301},{"__isSmartRef__":true,"id":2304},{"__isSmartRef__":true,"id":2307},{"__isSmartRef__":true,"id":2310},{"__isSmartRef__":true,"id":2313},{"__isSmartRef__":true,"id":2316},{"__isSmartRef__":true,"id":2319},{"__isSmartRef__":true,"id":2322},{"__isSmartRef__":true,"id":2325},{"__isSmartRef__":true,"id":2328},{"__isSmartRef__":true,"id":2331},{"__isSmartRef__":true,"id":2334},{"__isSmartRef__":true,"id":2337},{"__isSmartRef__":true,"id":2340},{"__isSmartRef__":true,"id":2343},{"__isSmartRef__":true,"id":2346},{"__isSmartRef__":true,"id":2349},{"__isSmartRef__":true,"id":2352},{"__isSmartRef__":true,"id":2355},{"__isSmartRef__":true,"id":2358},{"__isSmartRef__":true,"id":2361},{"__isSmartRef__":true,"id":2364},{"__isSmartRef__":true,"id":2367},{"__isSmartRef__":true,"id":2370},{"__isSmartRef__":true,"id":2373},{"__isSmartRef__":true,"id":2376},{"__isSmartRef__":true,"id":2379},{"__isSmartRef__":true,"id":2382},{"__isSmartRef__":true,"id":2385},{"__isSmartRef__":true,"id":2388},{"__isSmartRef__":true,"id":2391},{"__isSmartRef__":true,"id":2394},{"__isSmartRef__":true,"id":3100},{"__isSmartRef__":true,"id":3103},{"__isSmartRef__":true,"id":3106},{"__isSmartRef__":true,"id":3109},{"__isSmartRef__":true,"id":3112},{"__isSmartRef__":true,"id":3115},{"__isSmartRef__":true,"id":3118},{"__isSmartRef__":true,"id":3121},{"__isSmartRef__":true,"id":3124},{"__isSmartRef__":true,"id":3127},{"__isSmartRef__":true,"id":3130},{"__isSmartRef__":true,"id":3133},{"__isSmartRef__":true,"id":3136},{"__isSmartRef__":true,"id":3139},{"__isSmartRef__":true,"id":3142},{"__isSmartRef__":true,"id":3145},{"__isSmartRef__":true,"id":3148},{"__isSmartRef__":true,"id":3151},{"__isSmartRef__":true,"id":3154},{"__isSmartRef__":true,"id":3157},{"__isSmartRef__":true,"id":3160},{"__isSmartRef__":true,"id":3163},{"__isSmartRef__":true,"id":3166},{"__isSmartRef__":true,"id":3169},{"__isSmartRef__":true,"id":3172},{"__isSmartRef__":true,"id":3175},{"__isSmartRef__":true,"id":3178},{"__isSmartRef__":true,"id":3181}]},"3100":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3101},"eventHandler":{"__isSmartRef__":true,"id":3102},"_ClipMode":"visible","derivationIds":["280C01A6-F27C-480D-9EB9-4D0ABAAFB221"],"id":"C14EC212-944F-4151-BBC4-3B541EE567E9","droppingEnabled":true,"halosEnabled":true,"_Rotation":0,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3101":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"3102":{"morph":{"__isSmartRef__":true,"id":3100},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3103":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3104},"eventHandler":{"__isSmartRef__":true,"id":3105},"_ClipMode":"visible","derivationIds":["03AED537-BC89-4088-BE1A-B32971AB607D"],"id":"1A21DD80-B26C-4F01-98EB-EC70DD367C85","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3104":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"3105":{"morph":{"__isSmartRef__":true,"id":3103},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3106":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3107},"eventHandler":{"__isSmartRef__":true,"id":3108},"_ClipMode":"visible","derivationIds":["A1EBDD7F-D729-4898-8BE0-A62E404F4075"],"id":"29FB73D9-DE46-4E63-B7CE-BCF2DDFDDAC5","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3107":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"3108":{"morph":{"__isSmartRef__":true,"id":3106},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3109":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3110},"eventHandler":{"__isSmartRef__":true,"id":3111},"_ClipMode":"visible","derivationIds":["1C323D52-55B9-4EF0-82BB-CD6A69EC60CC"],"id":"2C6CAB02-6505-4398-9298-7A8BBFFCB637","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.30000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3110":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"3111":{"morph":{"__isSmartRef__":true,"id":3109},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3112":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3113},"eventHandler":{"__isSmartRef__":true,"id":3114},"_ClipMode":"visible","derivationIds":["87B2095E-ECC7-4066-A158-4D1ED19FFED4"],"id":"B4C76C36-CF80-4752-8187-0F46224D1771","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.4,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3113":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"3114":{"morph":{"__isSmartRef__":true,"id":3112},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3115":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3116},"eventHandler":{"__isSmartRef__":true,"id":3117},"_ClipMode":"visible","derivationIds":["AB5EAC08-C4EB-4CAA-B139-B042635DB7E6"],"id":"1ADC06F1-C143-44CC-A7DA-6C32A24FFCF1","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3116":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"3117":{"morph":{"__isSmartRef__":true,"id":3115},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3118":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3119},"eventHandler":{"__isSmartRef__":true,"id":3120},"_ClipMode":"visible","derivationIds":["A4C3F241-64EC-4FDC-8F20-801BF461D6F6"],"id":"1F7D6053-C449-4452-A179-AA458F87BCD8","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.6000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3119":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"3120":{"morph":{"__isSmartRef__":true,"id":3118},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3121":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3122},"eventHandler":{"__isSmartRef__":true,"id":3123},"_ClipMode":"visible","derivationIds":["B19A7FCB-0522-46CA-8A0F-D32DAEC51C82"],"id":"179F80A5-0777-43FF-A02A-BECDF87283A4","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.7000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3122":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"3123":{"morph":{"__isSmartRef__":true,"id":3121},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3124":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3125},"eventHandler":{"__isSmartRef__":true,"id":3126},"_ClipMode":"visible","derivationIds":["692629C3-EC8D-49B3-9826-7D221DB02582"],"id":"81C7A423-CE4C-49D4-80D7-541FD9242B2F","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.8,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3125":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"3126":{"morph":{"__isSmartRef__":true,"id":3124},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3127":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3128},"eventHandler":{"__isSmartRef__":true,"id":3129},"_ClipMode":"visible","derivationIds":["C94B4063-BCC7-4E41-96AB-B70D77F65DE6"],"id":"358936F5-EFDE-464A-86A5-8989FFCC4BF7","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.9,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3128":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"3129":{"morph":{"__isSmartRef__":true,"id":3127},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3130":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3131},"eventHandler":{"__isSmartRef__":true,"id":3132},"_ClipMode":"visible","derivationIds":["12EE27B0-C3FC-46DD-A8F7-89843EBD2FC4"],"id":"CAAA5892-DD86-427C-81D5-03BE64D734D0","droppingEnabled":true,"halosEnabled":true,"_Rotation":1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3131":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"3132":{"morph":{"__isSmartRef__":true,"id":3130},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3133":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3134},"eventHandler":{"__isSmartRef__":true,"id":3135},"_ClipMode":"visible","derivationIds":["7EE82974-1BFD-485B-BCDA-0D51FA182D29"],"id":"00402C55-DD69-416E-8102-8CB99EB9C524","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3134":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"3135":{"morph":{"__isSmartRef__":true,"id":3133},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3136":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3137},"eventHandler":{"__isSmartRef__":true,"id":3138},"_ClipMode":"visible","derivationIds":["5346DC23-C71B-4834-A497-83774A04224C"],"id":"71700546-A793-4A0C-8A49-774B7C10517B","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.2000000000000002,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3137":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"3138":{"morph":{"__isSmartRef__":true,"id":3136},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3139":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3140},"eventHandler":{"__isSmartRef__":true,"id":3141},"_ClipMode":"visible","derivationIds":["C967C9E5-9D25-4547-A3B1-8E8DDB8E0C59"],"id":"F4F126A1-0538-4702-A898-32942ED69BFD","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.3,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3140":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"3141":{"morph":{"__isSmartRef__":true,"id":3139},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3142":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3143},"eventHandler":{"__isSmartRef__":true,"id":3144},"_ClipMode":"visible","derivationIds":["D88362A7-6113-45EB-A393-9E60D6495BE2"],"id":"561F824A-E359-4CE1-BC83-5CF08EE5F873","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.4000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3143":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"3144":{"morph":{"__isSmartRef__":true,"id":3142},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3145":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3146},"eventHandler":{"__isSmartRef__":true,"id":3147},"_ClipMode":"visible","derivationIds":["2CCD8B40-46F0-4711-AB01-E1585CC8CF88"],"id":"A25E5EC6-FC00-47DD-9DC5-22F00E9D139C","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3146":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"3147":{"morph":{"__isSmartRef__":true,"id":3145},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3148":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3149},"eventHandler":{"__isSmartRef__":true,"id":3150},"_ClipMode":"visible","derivationIds":["537D0BC8-CB73-4385-8271-6812354EE6C6"],"id":"DA6CACAD-B9F0-441E-9A4B-E1F69A48507F","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.6,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3149":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"3150":{"morph":{"__isSmartRef__":true,"id":3148},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3151":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3152},"eventHandler":{"__isSmartRef__":true,"id":3153},"_ClipMode":"visible","derivationIds":["FACBDE5C-4B86-4612-BF90-6432FB3F7CAA"],"id":"638A23AE-EF6E-459C-ADFB-28251AC89860","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.7000000000000002,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3152":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"3153":{"morph":{"__isSmartRef__":true,"id":3151},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3154":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3155},"eventHandler":{"__isSmartRef__":true,"id":3156},"_ClipMode":"visible","derivationIds":["2ACA8178-C294-4BA1-A3DB-FDD9FF32F313"],"id":"4B7DCAF1-6B3F-47B1-8BB8-BAFFEAF5C5B8","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.8,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3155":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"3156":{"morph":{"__isSmartRef__":true,"id":3154},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3157":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3158},"eventHandler":{"__isSmartRef__":true,"id":3159},"_ClipMode":"visible","derivationIds":["E4EC760B-5530-4295-9E88-58FAA9FCFAB5"],"id":"8ADF458C-3CAC-4CB0-929D-B35B349537D4","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.9000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3158":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"3159":{"morph":{"__isSmartRef__":true,"id":3157},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3160":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3161},"eventHandler":{"__isSmartRef__":true,"id":3162},"_ClipMode":"visible","derivationIds":["57020D8A-88D5-4E0D-80D2-4C0E2E7DA0A7"],"id":"58F7AAF5-B242-49EF-AFB7-844CCAF852FB","droppingEnabled":true,"halosEnabled":true,"_Rotation":2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3161":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"3162":{"morph":{"__isSmartRef__":true,"id":3160},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3163":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3164},"eventHandler":{"__isSmartRef__":true,"id":3165},"_ClipMode":"visible","derivationIds":["2A3C05DA-6FC0-413D-9AB2-C37568B3832F"],"id":"B8C2E131-8771-4BBB-84AA-0EB3749E00C9","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3164":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"3165":{"morph":{"__isSmartRef__":true,"id":3163},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3166":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3167},"eventHandler":{"__isSmartRef__":true,"id":3168},"_ClipMode":"visible","derivationIds":["7B32DEDE-66BD-412E-BEC3-D8237AF01C33"],"id":"66232D48-C32E-404B-BF29-A6D8110D8229","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3167":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"3168":{"morph":{"__isSmartRef__":true,"id":3166},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3169":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3170},"eventHandler":{"__isSmartRef__":true,"id":3171},"_ClipMode":"visible","derivationIds":["7D96512D-AFD5-443E-99CF-469C68BA67B8"],"id":"38F83D78-84E3-428B-A71E-368A5998FC85","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.3000000000000003,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3170":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"3171":{"morph":{"__isSmartRef__":true,"id":3169},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3172":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3173},"eventHandler":{"__isSmartRef__":true,"id":3174},"_ClipMode":"visible","derivationIds":["35570B9F-742E-4354-A660-25DA62DF80DD"],"id":"644D4294-0EFE-4E71-AD3D-F4AF4D368EC7","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.4000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3173":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"3174":{"morph":{"__isSmartRef__":true,"id":3172},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3175":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3176},"eventHandler":{"__isSmartRef__":true,"id":3177},"_ClipMode":"visible","derivationIds":["BDCBC354-8269-4E01-8116-5BEB0EB8623A"],"id":"1C555A5E-64F1-44E0-BA5D-B71D85E5C518","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3176":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"3177":{"morph":{"__isSmartRef__":true,"id":3175},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3178":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3179},"eventHandler":{"__isSmartRef__":true,"id":3180},"_ClipMode":"visible","derivationIds":["F60DA92F-2CB9-41C8-846C-D68B924F825F"],"id":"819ED487-9456-499C-B4FD-4B793E94015E","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.6,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3179":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(262,0,0)"},"3180":{"morph":{"__isSmartRef__":true,"id":3178},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3181":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3182},"eventHandler":{"__isSmartRef__":true,"id":3183},"_ClipMode":"visible","derivationIds":["8EFC3DF7-6935-415B-83A3-CDE6671CF64F"],"id":"AB415EAD-3AF1-4E8A-955D-5E1E93774664","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.7,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3182":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(272,0,0)"},"3183":{"morph":{"__isSmartRef__":true,"id":3181},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3184":{"val":"invoke"},"3185":{"val":"remove"},"3186":{"val":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},"3187":{"val":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},"3188":{"values":{"__isSmartRef__":true,"id":3189},"context":[{"__isSmartRef__":true,"id":3203},{"__isSmartRef__":true,"id":3206},{"__isSmartRef__":true,"id":3209},{"__isSmartRef__":true,"id":3212},{"__isSmartRef__":true,"id":3215},{"__isSmartRef__":true,"id":3218},{"__isSmartRef__":true,"id":3221},{"__isSmartRef__":true,"id":3224},{"__isSmartRef__":true,"id":3227},{"__isSmartRef__":true,"id":3230},{"__isSmartRef__":true,"id":3233},{"__isSmartRef__":true,"id":3236},{"__isSmartRef__":true,"id":3239},{"__isSmartRef__":true,"id":3242},{"__isSmartRef__":true,"id":3245},{"__isSmartRef__":true,"id":3248},{"__isSmartRef__":true,"id":3251},{"__isSmartRef__":true,"id":3254},{"__isSmartRef__":true,"id":3257},{"__isSmartRef__":true,"id":3260},{"__isSmartRef__":true,"id":3263},{"__isSmartRef__":true,"id":3266},{"__isSmartRef__":true,"id":3269},{"__isSmartRef__":true,"id":3272},{"__isSmartRef__":true,"id":3275},{"__isSmartRef__":true,"id":3278},{"__isSmartRef__":true,"id":3281},{"__isSmartRef__":true,"id":3284},{"__isSmartRef__":true,"id":3287},{"__isSmartRef__":true,"id":3290},{"__isSmartRef__":true,"id":3293},{"__isSmartRef__":true,"id":3296},{"__isSmartRef__":true,"id":3299},{"__isSmartRef__":true,"id":3302},{"__isSmartRef__":true,"id":3305},{"__isSmartRef__":true,"id":3308},{"__isSmartRef__":true,"id":3311},{"__isSmartRef__":true,"id":3314},{"__isSmartRef__":true,"id":3317},{"__isSmartRef__":true,"id":3320},{"__isSmartRef__":true,"id":3323},{"__isSmartRef__":true,"id":3326}],"pc":{"__isSmartRef__":true,"id":3035},"mapping":{"__isSmartRef__":true,"id":3084}},"3189":{"30-31":{"__isSmartRef__":true,"id":3190},"25-31":{"__isSmartRef__":true,"id":3191},"41-42":{"__isSmartRef__":true,"id":3192},"36-42":{"__isSmartRef__":true,"id":3193},"56-57":{"__isSmartRef__":true,"id":3194},"51-57":{"__isSmartRef__":true,"id":3195},"59-60":{"__isSmartRef__":true,"id":3196},"62-64":{"__isSmartRef__":true,"id":3197},"58-64":{"__isSmartRef__":true,"id":3198},"44-228":{"__isSmartRef__":true,"id":3199},"230-234":{"__isSmartRef__":true,"id":3200},"235-244":{"__isSmartRef__":true,"id":3201},"230-244":{"__isSmartRef__":true,"id":3202},"245-251":{"__isSmartRef__":true,"id":3329},"252-260":{"__isSmartRef__":true,"id":3330},"230-261":{"__isSmartRef__":true,"id":3331},"21-262":{"__isSmartRef__":true,"id":3332}},"3190":{"val":1},"3191":{"val":1},"3192":{"val":3},"3193":{"val":3},"3194":{"val":0},"3195":{"val":0},"3196":{"val":73},"3197":{"val":70},"3198":{"val":false},"3199":{},"3200":{"val":{"__isSmartRef__":true,"id":2288}},"3201":{"val":"submorphs"},"3202":{"val":[{"__isSmartRef__":true,"id":2289},{"__isSmartRef__":true,"id":2292},{"__isSmartRef__":true,"id":2295},{"__isSmartRef__":true,"id":2298},{"__isSmartRef__":true,"id":2301},{"__isSmartRef__":true,"id":2304},{"__isSmartRef__":true,"id":2307},{"__isSmartRef__":true,"id":2310},{"__isSmartRef__":true,"id":2313},{"__isSmartRef__":true,"id":2316},{"__isSmartRef__":true,"id":2319},{"__isSmartRef__":true,"id":2322},{"__isSmartRef__":true,"id":2325},{"__isSmartRef__":true,"id":2328},{"__isSmartRef__":true,"id":2331},{"__isSmartRef__":true,"id":2334},{"__isSmartRef__":true,"id":2337},{"__isSmartRef__":true,"id":2340},{"__isSmartRef__":true,"id":2343},{"__isSmartRef__":true,"id":2346},{"__isSmartRef__":true,"id":2349},{"__isSmartRef__":true,"id":2352},{"__isSmartRef__":true,"id":2355},{"__isSmartRef__":true,"id":2358},{"__isSmartRef__":true,"id":2361},{"__isSmartRef__":true,"id":2364},{"__isSmartRef__":true,"id":2367},{"__isSmartRef__":true,"id":2370},{"__isSmartRef__":true,"id":2373},{"__isSmartRef__":true,"id":2376},{"__isSmartRef__":true,"id":2379},{"__isSmartRef__":true,"id":2382},{"__isSmartRef__":true,"id":2385},{"__isSmartRef__":true,"id":2388},{"__isSmartRef__":true,"id":2391},{"__isSmartRef__":true,"id":2394},{"__isSmartRef__":true,"id":3203},{"__isSmartRef__":true,"id":3206},{"__isSmartRef__":true,"id":3209},{"__isSmartRef__":true,"id":3212},{"__isSmartRef__":true,"id":3215},{"__isSmartRef__":true,"id":3218},{"__isSmartRef__":true,"id":3221},{"__isSmartRef__":true,"id":3224},{"__isSmartRef__":true,"id":3227},{"__isSmartRef__":true,"id":3230},{"__isSmartRef__":true,"id":3233},{"__isSmartRef__":true,"id":3236},{"__isSmartRef__":true,"id":3239},{"__isSmartRef__":true,"id":3242},{"__isSmartRef__":true,"id":3245},{"__isSmartRef__":true,"id":3248},{"__isSmartRef__":true,"id":3251},{"__isSmartRef__":true,"id":3254},{"__isSmartRef__":true,"id":3257},{"__isSmartRef__":true,"id":3260},{"__isSmartRef__":true,"id":3263},{"__isSmartRef__":true,"id":3266},{"__isSmartRef__":true,"id":3269},{"__isSmartRef__":true,"id":3272},{"__isSmartRef__":true,"id":3275},{"__isSmartRef__":true,"id":3278},{"__isSmartRef__":true,"id":3281},{"__isSmartRef__":true,"id":3284},{"__isSmartRef__":true,"id":3287},{"__isSmartRef__":true,"id":3290},{"__isSmartRef__":true,"id":3293},{"__isSmartRef__":true,"id":3296},{"__isSmartRef__":true,"id":3299},{"__isSmartRef__":true,"id":3302},{"__isSmartRef__":true,"id":3305},{"__isSmartRef__":true,"id":3308},{"__isSmartRef__":true,"id":3311},{"__isSmartRef__":true,"id":3314},{"__isSmartRef__":true,"id":3317},{"__isSmartRef__":true,"id":3320},{"__isSmartRef__":true,"id":3323},{"__isSmartRef__":true,"id":3326},{"__isSmartRef__":true,"id":3014}]},"3203":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3204},"eventHandler":{"__isSmartRef__":true,"id":3205},"_ClipMode":"visible","derivationIds":["280C01A6-F27C-480D-9EB9-4D0ABAAFB221"],"id":"6C59BCE6-B323-4013-82B5-EAAE0F07DEC0","droppingEnabled":true,"halosEnabled":true,"_Rotation":0,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3204":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"3205":{"morph":{"__isSmartRef__":true,"id":3203},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3206":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3207},"eventHandler":{"__isSmartRef__":true,"id":3208},"_ClipMode":"visible","derivationIds":["03AED537-BC89-4088-BE1A-B32971AB607D"],"id":"5F17E912-26DC-497B-8DD6-039BADCDADA3","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3207":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"3208":{"morph":{"__isSmartRef__":true,"id":3206},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3209":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3210},"eventHandler":{"__isSmartRef__":true,"id":3211},"_ClipMode":"visible","derivationIds":["A1EBDD7F-D729-4898-8BE0-A62E404F4075"],"id":"D7D8B8FE-AF8E-4DCB-BA8F-9628A89C0346","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3210":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"3211":{"morph":{"__isSmartRef__":true,"id":3209},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3212":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3213},"eventHandler":{"__isSmartRef__":true,"id":3214},"_ClipMode":"visible","derivationIds":["1C323D52-55B9-4EF0-82BB-CD6A69EC60CC"],"id":"2678326D-50D2-40B5-AF14-DF4BDABF8373","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.30000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3213":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"3214":{"morph":{"__isSmartRef__":true,"id":3212},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3215":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3216},"eventHandler":{"__isSmartRef__":true,"id":3217},"_ClipMode":"visible","derivationIds":["87B2095E-ECC7-4066-A158-4D1ED19FFED4"],"id":"87E0277A-85BD-4F85-A957-937958A47322","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.4,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3216":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"3217":{"morph":{"__isSmartRef__":true,"id":3215},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3218":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3219},"eventHandler":{"__isSmartRef__":true,"id":3220},"_ClipMode":"visible","derivationIds":["AB5EAC08-C4EB-4CAA-B139-B042635DB7E6"],"id":"8204449E-8452-4D6B-84E8-35F9D7FD4DC7","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3219":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"3220":{"morph":{"__isSmartRef__":true,"id":3218},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3221":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3222},"eventHandler":{"__isSmartRef__":true,"id":3223},"_ClipMode":"visible","derivationIds":["A4C3F241-64EC-4FDC-8F20-801BF461D6F6"],"id":"34731F80-2A2A-4047-B246-B6DC88160C5F","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.6000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3222":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"3223":{"morph":{"__isSmartRef__":true,"id":3221},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3224":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3225},"eventHandler":{"__isSmartRef__":true,"id":3226},"_ClipMode":"visible","derivationIds":["B19A7FCB-0522-46CA-8A0F-D32DAEC51C82"],"id":"11607AE3-7FA2-4AB2-9D78-F17FC04B2D38","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.7000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3225":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"3226":{"morph":{"__isSmartRef__":true,"id":3224},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3227":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3228},"eventHandler":{"__isSmartRef__":true,"id":3229},"_ClipMode":"visible","derivationIds":["692629C3-EC8D-49B3-9826-7D221DB02582"],"id":"3F3BF22F-9249-4A97-B24E-1BCBC484D1AC","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.8,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3228":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"3229":{"morph":{"__isSmartRef__":true,"id":3227},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3230":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3231},"eventHandler":{"__isSmartRef__":true,"id":3232},"_ClipMode":"visible","derivationIds":["C94B4063-BCC7-4E41-96AB-B70D77F65DE6"],"id":"792DA213-D16F-46B2-9F1E-8780BD30A40B","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.9,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3231":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"3232":{"morph":{"__isSmartRef__":true,"id":3230},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3233":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3234},"eventHandler":{"__isSmartRef__":true,"id":3235},"_ClipMode":"visible","derivationIds":["12EE27B0-C3FC-46DD-A8F7-89843EBD2FC4"],"id":"3B339C05-C66F-404E-A9E9-5283FAF2474E","droppingEnabled":true,"halosEnabled":true,"_Rotation":1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3234":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"3235":{"morph":{"__isSmartRef__":true,"id":3233},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3236":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3237},"eventHandler":{"__isSmartRef__":true,"id":3238},"_ClipMode":"visible","derivationIds":["7EE82974-1BFD-485B-BCDA-0D51FA182D29"],"id":"03B2F9D6-3C2C-4C65-966F-83FD936B5931","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3237":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"3238":{"morph":{"__isSmartRef__":true,"id":3236},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3239":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3240},"eventHandler":{"__isSmartRef__":true,"id":3241},"_ClipMode":"visible","derivationIds":["5346DC23-C71B-4834-A497-83774A04224C"],"id":"52F7ADF0-8187-4F4A-8948-EB548FD17819","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.2000000000000002,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3240":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"3241":{"morph":{"__isSmartRef__":true,"id":3239},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3242":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3243},"eventHandler":{"__isSmartRef__":true,"id":3244},"_ClipMode":"visible","derivationIds":["C967C9E5-9D25-4547-A3B1-8E8DDB8E0C59"],"id":"09EB1CEA-7FE2-4F3E-AAD9-288904BCF111","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.3,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3243":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"3244":{"morph":{"__isSmartRef__":true,"id":3242},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3245":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3246},"eventHandler":{"__isSmartRef__":true,"id":3247},"_ClipMode":"visible","derivationIds":["D88362A7-6113-45EB-A393-9E60D6495BE2"],"id":"155F00FC-4760-4329-B267-6A3D711A31F2","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.4000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3246":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"3247":{"morph":{"__isSmartRef__":true,"id":3245},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3248":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3249},"eventHandler":{"__isSmartRef__":true,"id":3250},"_ClipMode":"visible","derivationIds":["2CCD8B40-46F0-4711-AB01-E1585CC8CF88"],"id":"83B7C869-EA24-4BB8-9A4E-3FAEF0DAF334","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3249":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"3250":{"morph":{"__isSmartRef__":true,"id":3248},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3251":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3252},"eventHandler":{"__isSmartRef__":true,"id":3253},"_ClipMode":"visible","derivationIds":["537D0BC8-CB73-4385-8271-6812354EE6C6"],"id":"99D6F02F-5D73-4A42-8BDB-E2D9F833AEAF","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.6,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3252":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"3253":{"morph":{"__isSmartRef__":true,"id":3251},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3254":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3255},"eventHandler":{"__isSmartRef__":true,"id":3256},"_ClipMode":"visible","derivationIds":["FACBDE5C-4B86-4612-BF90-6432FB3F7CAA"],"id":"34BF79E6-D1C6-408D-B774-6DFCCB82C6EB","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.7000000000000002,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3255":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"3256":{"morph":{"__isSmartRef__":true,"id":3254},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3257":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3258},"eventHandler":{"__isSmartRef__":true,"id":3259},"_ClipMode":"visible","derivationIds":["2ACA8178-C294-4BA1-A3DB-FDD9FF32F313"],"id":"E2EBABAC-82DB-43D7-8C28-39A1533D3C11","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.8,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3258":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"3259":{"morph":{"__isSmartRef__":true,"id":3257},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3260":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3261},"eventHandler":{"__isSmartRef__":true,"id":3262},"_ClipMode":"visible","derivationIds":["E4EC760B-5530-4295-9E88-58FAA9FCFAB5"],"id":"3D37A9AF-2CD0-4D91-9A18-5E8E5CD1AE86","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.9000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3261":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"3262":{"morph":{"__isSmartRef__":true,"id":3260},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3263":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3264},"eventHandler":{"__isSmartRef__":true,"id":3265},"_ClipMode":"visible","derivationIds":["57020D8A-88D5-4E0D-80D2-4C0E2E7DA0A7"],"id":"CC0BFEDA-87A6-4EA5-A130-C3BC949E580B","droppingEnabled":true,"halosEnabled":true,"_Rotation":2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3264":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"3265":{"morph":{"__isSmartRef__":true,"id":3263},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3266":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3267},"eventHandler":{"__isSmartRef__":true,"id":3268},"_ClipMode":"visible","derivationIds":["2A3C05DA-6FC0-413D-9AB2-C37568B3832F"],"id":"C8FE4F5A-3CC6-4DCB-B920-76C533FD2E1B","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3267":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"3268":{"morph":{"__isSmartRef__":true,"id":3266},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3269":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3270},"eventHandler":{"__isSmartRef__":true,"id":3271},"_ClipMode":"visible","derivationIds":["7B32DEDE-66BD-412E-BEC3-D8237AF01C33"],"id":"9999903E-C11D-468A-8A06-6B3CA17CBBF4","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3270":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"3271":{"morph":{"__isSmartRef__":true,"id":3269},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3272":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3273},"eventHandler":{"__isSmartRef__":true,"id":3274},"_ClipMode":"visible","derivationIds":["7D96512D-AFD5-443E-99CF-469C68BA67B8"],"id":"460928D0-A2C8-46DA-909A-9F76CACBC6F4","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.3000000000000003,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3273":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"3274":{"morph":{"__isSmartRef__":true,"id":3272},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3275":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3276},"eventHandler":{"__isSmartRef__":true,"id":3277},"_ClipMode":"visible","derivationIds":["35570B9F-742E-4354-A660-25DA62DF80DD"],"id":"266C31DB-5C5B-4CAE-AE7B-D1DC1C5992DB","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.4000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3276":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"3277":{"morph":{"__isSmartRef__":true,"id":3275},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3278":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3279},"eventHandler":{"__isSmartRef__":true,"id":3280},"_ClipMode":"visible","derivationIds":["BDCBC354-8269-4E01-8116-5BEB0EB8623A"],"id":"02B315FF-E03F-47B4-A86F-EC876888C0AA","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3279":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"3280":{"morph":{"__isSmartRef__":true,"id":3278},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3281":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3282},"eventHandler":{"__isSmartRef__":true,"id":3283},"_ClipMode":"visible","derivationIds":["F60DA92F-2CB9-41C8-846C-D68B924F825F"],"id":"48D2D807-86ED-45C9-9AAE-0CF4BC55A0B1","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.6,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3282":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(262,0,0)"},"3283":{"morph":{"__isSmartRef__":true,"id":3281},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3284":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3285},"eventHandler":{"__isSmartRef__":true,"id":3286},"_ClipMode":"visible","derivationIds":["8EFC3DF7-6935-415B-83A3-CDE6671CF64F"],"id":"980DF7AA-C6A4-42C6-AB02-87605E0984CB","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.7,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3285":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(272,0,0)"},"3286":{"morph":{"__isSmartRef__":true,"id":3284},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3287":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3288},"eventHandler":{"__isSmartRef__":true,"id":3289},"_ClipMode":"visible","derivationIds":["72486A5F-CFEB-45C9-A58A-C0482BDFF1B1"],"id":"04361B9C-562A-4EB7-96CD-5DE4BED9DCDD","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.8000000000000003,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3288":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(282,0,0)"},"3289":{"morph":{"__isSmartRef__":true,"id":3287},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3290":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3291},"eventHandler":{"__isSmartRef__":true,"id":3292},"_ClipMode":"visible","derivationIds":["D1951511-0528-458C-B9EE-45749DB2E336"],"id":"04D690D1-4F11-40FE-A3C8-2B7B4BD1B736","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.9000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3291":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(292,0,0)"},"3292":{"morph":{"__isSmartRef__":true,"id":3290},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3293":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3294},"eventHandler":{"__isSmartRef__":true,"id":3295},"_ClipMode":"visible","derivationIds":["F1D6F8C4-4CB9-4FBF-8AEA-E4293ECA29A9"],"id":"9290F022-1323-48DC-A2ED-09670E4E2D26","droppingEnabled":true,"halosEnabled":true,"_Rotation":3,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3294":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(302,0,0)"},"3295":{"morph":{"__isSmartRef__":true,"id":3293},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3296":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3297},"eventHandler":{"__isSmartRef__":true,"id":3298},"_ClipMode":"visible","derivationIds":["2D43CB1D-7828-4EB1-AD1C-9E0EDB226C91"],"id":"4E999173-C6DE-4C17-81B6-13EE11759591","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3297":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(312,0,0)"},"3298":{"morph":{"__isSmartRef__":true,"id":3296},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3299":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3300},"eventHandler":{"__isSmartRef__":true,"id":3301},"_ClipMode":"visible","derivationIds":["0079D47D-2270-4451-AC61-60951A2454A7"],"id":"BFB118C1-8B30-4A40-95CC-AC19DAEAC48B","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3300":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(322,0,0)"},"3301":{"morph":{"__isSmartRef__":true,"id":3299},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3302":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3303},"eventHandler":{"__isSmartRef__":true,"id":3304},"_ClipMode":"visible","derivationIds":["67B292A1-2428-4216-8212-E2C28F719DF0"],"id":"A9908A95-EE73-4CA3-862E-6382ED328442","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.3000000000000003,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3303":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(332,0,0)"},"3304":{"morph":{"__isSmartRef__":true,"id":3302},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3305":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3306},"eventHandler":{"__isSmartRef__":true,"id":3307},"_ClipMode":"visible","derivationIds":["FD67C699-EEB1-40EC-B4B9-BBB0C454CE6E"],"id":"8066CC0C-CA1B-4F08-978C-062012DFBEFE","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.4000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3306":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(342,0,0)"},"3307":{"morph":{"__isSmartRef__":true,"id":3305},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3308":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3309},"eventHandler":{"__isSmartRef__":true,"id":3310},"_ClipMode":"visible","derivationIds":["D63C6004-B64F-4663-9D04-0527C827052A"],"id":"56753EC6-BB90-480E-B409-8C094987A412","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3309":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(352,0,0)"},"3310":{"morph":{"__isSmartRef__":true,"id":3308},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3311":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3312},"eventHandler":{"__isSmartRef__":true,"id":3313},"_ClipMode":"visible","derivationIds":["96A8F07B-7174-4828-A709-FFBD4C31AE1E"],"id":"F09C44CC-6532-45BB-974B-1D3F9B95B7E4","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.6,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3312":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(362,0,0)"},"3313":{"morph":{"__isSmartRef__":true,"id":3311},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3314":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3315},"eventHandler":{"__isSmartRef__":true,"id":3316},"_ClipMode":"visible","derivationIds":["6D61411D-7345-4D28-9F41-2AB89CF0CD68"],"id":"1C96D281-8303-42C1-BBC8-863C5AD3DE6B","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.7,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3315":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(372,0,0)"},"3316":{"morph":{"__isSmartRef__":true,"id":3314},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3317":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3318},"eventHandler":{"__isSmartRef__":true,"id":3319},"_ClipMode":"visible","derivationIds":["B21A373D-CA2C-4F94-B2A6-38DE5A99A69E"],"id":"09908EE7-D24D-46C1-92FF-A258B54817AA","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.8000000000000003,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3318":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(382,0,0)"},"3319":{"morph":{"__isSmartRef__":true,"id":3317},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3320":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3321},"eventHandler":{"__isSmartRef__":true,"id":3322},"_ClipMode":"visible","derivationIds":["8137AE1E-8DE1-4229-A2CD-650CE434CCBB"],"id":"9F590935-1742-46B0-9E44-073758A22CED","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.9000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3321":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(392,0,0)"},"3322":{"morph":{"__isSmartRef__":true,"id":3320},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3323":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3324},"eventHandler":{"__isSmartRef__":true,"id":3325},"_ClipMode":"visible","derivationIds":["6F610542-EA56-4CB1-9C6D-68FB5EA8DA47"],"id":"DB7D86CC-122D-40A9-95EB-0C9DCA1A354C","droppingEnabled":true,"halosEnabled":true,"_Rotation":4,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3324":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(402,0,0)"},"3325":{"morph":{"__isSmartRef__":true,"id":3323},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3326":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3327},"eventHandler":{"__isSmartRef__":true,"id":3328},"_ClipMode":"visible","derivationIds":["88A5C220-E029-409D-A4ED-B3BE7EA77892"],"id":"0B068F41-3C0E-480B-AA4B-12F5508635B5","droppingEnabled":true,"halosEnabled":true,"_Rotation":4.1000000000000005,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3327":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(412,0,0)"},"3328":{"morph":{"__isSmartRef__":true,"id":3326},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3329":{"val":"invoke"},"3330":{"val":"remove"},"3331":{"val":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},"3332":{"val":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},"3333":{"values":{"__isSmartRef__":true,"id":3334},"context":[{"__isSmartRef__":true,"id":3348},{"__isSmartRef__":true,"id":3351},{"__isSmartRef__":true,"id":3354},{"__isSmartRef__":true,"id":3357},{"__isSmartRef__":true,"id":3360},{"__isSmartRef__":true,"id":3363},{"__isSmartRef__":true,"id":3366},{"__isSmartRef__":true,"id":3369},{"__isSmartRef__":true,"id":3372},{"__isSmartRef__":true,"id":3375},{"__isSmartRef__":true,"id":3378},{"__isSmartRef__":true,"id":3381},{"__isSmartRef__":true,"id":3384},{"__isSmartRef__":true,"id":3387},{"__isSmartRef__":true,"id":3390},{"__isSmartRef__":true,"id":3393},{"__isSmartRef__":true,"id":3396},{"__isSmartRef__":true,"id":3399},{"__isSmartRef__":true,"id":3402},{"__isSmartRef__":true,"id":3405},{"__isSmartRef__":true,"id":3408},{"__isSmartRef__":true,"id":3411},{"__isSmartRef__":true,"id":3414},{"__isSmartRef__":true,"id":3417},{"__isSmartRef__":true,"id":3420},{"__isSmartRef__":true,"id":3423},{"__isSmartRef__":true,"id":3426},{"__isSmartRef__":true,"id":3429},{"__isSmartRef__":true,"id":3432},{"__isSmartRef__":true,"id":3435},{"__isSmartRef__":true,"id":3438},{"__isSmartRef__":true,"id":3441},{"__isSmartRef__":true,"id":3444},{"__isSmartRef__":true,"id":3447},{"__isSmartRef__":true,"id":3450},{"__isSmartRef__":true,"id":3453},{"__isSmartRef__":true,"id":3456},{"__isSmartRef__":true,"id":3459},{"__isSmartRef__":true,"id":3462},{"__isSmartRef__":true,"id":3465},{"__isSmartRef__":true,"id":3468},{"__isSmartRef__":true,"id":3471},{"__isSmartRef__":true,"id":3474},{"__isSmartRef__":true,"id":3477},{"__isSmartRef__":true,"id":3480},{"__isSmartRef__":true,"id":3483},{"__isSmartRef__":true,"id":3486},{"__isSmartRef__":true,"id":3489},{"__isSmartRef__":true,"id":3492},{"__isSmartRef__":true,"id":3495},{"__isSmartRef__":true,"id":3498},{"__isSmartRef__":true,"id":3501},{"__isSmartRef__":true,"id":3504},{"__isSmartRef__":true,"id":3507},{"__isSmartRef__":true,"id":3510},{"__isSmartRef__":true,"id":3513}],"pc":{"__isSmartRef__":true,"id":3048},"mapping":{"__isSmartRef__":true,"id":3084}},"3334":{"30-31":{"__isSmartRef__":true,"id":3335},"25-31":{"__isSmartRef__":true,"id":3336},"41-42":{"__isSmartRef__":true,"id":3337},"36-42":{"__isSmartRef__":true,"id":3338},"56-57":{"__isSmartRef__":true,"id":3339},"51-57":{"__isSmartRef__":true,"id":3340},"59-60":{"__isSmartRef__":true,"id":3341},"62-64":{"__isSmartRef__":true,"id":3342},"58-64":{"__isSmartRef__":true,"id":3343},"44-228":{"__isSmartRef__":true,"id":3344},"230-234":{"__isSmartRef__":true,"id":3345},"235-244":{"__isSmartRef__":true,"id":3346},"230-244":{"__isSmartRef__":true,"id":3347},"245-251":{"__isSmartRef__":true,"id":3516},"252-260":{"__isSmartRef__":true,"id":3517},"230-261":{"__isSmartRef__":true,"id":3518},"21-262":{"__isSmartRef__":true,"id":3519}},"3335":{"val":1},"3336":{"val":1},"3337":{"val":3},"3338":{"val":3},"3339":{"val":0},"3340":{"val":0},"3341":{"val":72},"3342":{"val":70},"3343":{"val":false},"3344":{},"3345":{"val":{"__isSmartRef__":true,"id":2288}},"3346":{"val":"submorphs"},"3347":{"val":[{"__isSmartRef__":true,"id":2289},{"__isSmartRef__":true,"id":2292},{"__isSmartRef__":true,"id":2295},{"__isSmartRef__":true,"id":2298},{"__isSmartRef__":true,"id":2301},{"__isSmartRef__":true,"id":2304},{"__isSmartRef__":true,"id":2307},{"__isSmartRef__":true,"id":2310},{"__isSmartRef__":true,"id":2313},{"__isSmartRef__":true,"id":2316},{"__isSmartRef__":true,"id":2319},{"__isSmartRef__":true,"id":2322},{"__isSmartRef__":true,"id":2325},{"__isSmartRef__":true,"id":2328},{"__isSmartRef__":true,"id":2331},{"__isSmartRef__":true,"id":2334},{"__isSmartRef__":true,"id":2337},{"__isSmartRef__":true,"id":2340},{"__isSmartRef__":true,"id":2343},{"__isSmartRef__":true,"id":2346},{"__isSmartRef__":true,"id":2349},{"__isSmartRef__":true,"id":2352},{"__isSmartRef__":true,"id":2355},{"__isSmartRef__":true,"id":2358},{"__isSmartRef__":true,"id":2361},{"__isSmartRef__":true,"id":2364},{"__isSmartRef__":true,"id":2367},{"__isSmartRef__":true,"id":2370},{"__isSmartRef__":true,"id":2373},{"__isSmartRef__":true,"id":2376},{"__isSmartRef__":true,"id":2379},{"__isSmartRef__":true,"id":2382},{"__isSmartRef__":true,"id":2385},{"__isSmartRef__":true,"id":2388},{"__isSmartRef__":true,"id":2391},{"__isSmartRef__":true,"id":2394},{"__isSmartRef__":true,"id":3348},{"__isSmartRef__":true,"id":3351},{"__isSmartRef__":true,"id":3354},{"__isSmartRef__":true,"id":3357},{"__isSmartRef__":true,"id":3360},{"__isSmartRef__":true,"id":3363},{"__isSmartRef__":true,"id":3366},{"__isSmartRef__":true,"id":3369},{"__isSmartRef__":true,"id":3372},{"__isSmartRef__":true,"id":3375},{"__isSmartRef__":true,"id":3378},{"__isSmartRef__":true,"id":3381},{"__isSmartRef__":true,"id":3384},{"__isSmartRef__":true,"id":3387},{"__isSmartRef__":true,"id":3390},{"__isSmartRef__":true,"id":3393},{"__isSmartRef__":true,"id":3396},{"__isSmartRef__":true,"id":3399},{"__isSmartRef__":true,"id":3402},{"__isSmartRef__":true,"id":3405},{"__isSmartRef__":true,"id":3408},{"__isSmartRef__":true,"id":3411},{"__isSmartRef__":true,"id":3414},{"__isSmartRef__":true,"id":3417},{"__isSmartRef__":true,"id":3420},{"__isSmartRef__":true,"id":3423},{"__isSmartRef__":true,"id":3426},{"__isSmartRef__":true,"id":3429},{"__isSmartRef__":true,"id":3432},{"__isSmartRef__":true,"id":3435},{"__isSmartRef__":true,"id":3438},{"__isSmartRef__":true,"id":3441},{"__isSmartRef__":true,"id":3444},{"__isSmartRef__":true,"id":3447},{"__isSmartRef__":true,"id":3450},{"__isSmartRef__":true,"id":3453},{"__isSmartRef__":true,"id":3456},{"__isSmartRef__":true,"id":3459},{"__isSmartRef__":true,"id":3462},{"__isSmartRef__":true,"id":3465},{"__isSmartRef__":true,"id":3468},{"__isSmartRef__":true,"id":3471},{"__isSmartRef__":true,"id":3474},{"__isSmartRef__":true,"id":3477},{"__isSmartRef__":true,"id":3480},{"__isSmartRef__":true,"id":3483},{"__isSmartRef__":true,"id":3486},{"__isSmartRef__":true,"id":3489},{"__isSmartRef__":true,"id":3492},{"__isSmartRef__":true,"id":3495},{"__isSmartRef__":true,"id":3498},{"__isSmartRef__":true,"id":3501},{"__isSmartRef__":true,"id":3504},{"__isSmartRef__":true,"id":3507},{"__isSmartRef__":true,"id":3510},{"__isSmartRef__":true,"id":3513},{"__isSmartRef__":true,"id":3014}]},"3348":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3349},"eventHandler":{"__isSmartRef__":true,"id":3350},"_ClipMode":"visible","derivationIds":["280C01A6-F27C-480D-9EB9-4D0ABAAFB221"],"id":"2B2218FB-CC23-45C9-8657-7367463E880A","droppingEnabled":true,"halosEnabled":true,"_Rotation":0,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3349":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"3350":{"morph":{"__isSmartRef__":true,"id":3348},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3351":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3352},"eventHandler":{"__isSmartRef__":true,"id":3353},"_ClipMode":"visible","derivationIds":["03AED537-BC89-4088-BE1A-B32971AB607D"],"id":"A3A73E5F-F48E-4A92-8676-2BDD8E58A810","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3352":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"3353":{"morph":{"__isSmartRef__":true,"id":3351},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3354":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3355},"eventHandler":{"__isSmartRef__":true,"id":3356},"_ClipMode":"visible","derivationIds":["A1EBDD7F-D729-4898-8BE0-A62E404F4075"],"id":"7810F65E-0C8B-4F87-A718-083843D9B650","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3355":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"3356":{"morph":{"__isSmartRef__":true,"id":3354},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3357":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3358},"eventHandler":{"__isSmartRef__":true,"id":3359},"_ClipMode":"visible","derivationIds":["1C323D52-55B9-4EF0-82BB-CD6A69EC60CC"],"id":"8F0FB23C-C290-48FA-885C-6D4B1F0A4EC2","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.30000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3358":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"3359":{"morph":{"__isSmartRef__":true,"id":3357},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3360":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3361},"eventHandler":{"__isSmartRef__":true,"id":3362},"_ClipMode":"visible","derivationIds":["87B2095E-ECC7-4066-A158-4D1ED19FFED4"],"id":"3981BE53-D1EA-4A62-85AB-666E21C4BF00","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.4,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3361":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"3362":{"morph":{"__isSmartRef__":true,"id":3360},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3363":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3364},"eventHandler":{"__isSmartRef__":true,"id":3365},"_ClipMode":"visible","derivationIds":["AB5EAC08-C4EB-4CAA-B139-B042635DB7E6"],"id":"330C62F9-C7EF-4905-83F6-6E757956A7F8","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3364":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"3365":{"morph":{"__isSmartRef__":true,"id":3363},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3366":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3367},"eventHandler":{"__isSmartRef__":true,"id":3368},"_ClipMode":"visible","derivationIds":["A4C3F241-64EC-4FDC-8F20-801BF461D6F6"],"id":"9A1D8D63-9056-44FB-A225-A522DD39279C","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.6000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3367":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"3368":{"morph":{"__isSmartRef__":true,"id":3366},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3369":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3370},"eventHandler":{"__isSmartRef__":true,"id":3371},"_ClipMode":"visible","derivationIds":["B19A7FCB-0522-46CA-8A0F-D32DAEC51C82"],"id":"C04A2015-F373-4E8B-BBF4-A7F389FD450C","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.7000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3370":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"3371":{"morph":{"__isSmartRef__":true,"id":3369},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3372":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3373},"eventHandler":{"__isSmartRef__":true,"id":3374},"_ClipMode":"visible","derivationIds":["692629C3-EC8D-49B3-9826-7D221DB02582"],"id":"1FA36CED-3F9D-4D2C-A949-E4E7B6323C8A","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.8,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3373":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"3374":{"morph":{"__isSmartRef__":true,"id":3372},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3375":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3376},"eventHandler":{"__isSmartRef__":true,"id":3377},"_ClipMode":"visible","derivationIds":["C94B4063-BCC7-4E41-96AB-B70D77F65DE6"],"id":"C3556AAA-CC0B-459F-9AF3-D6C39956B1AF","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.9,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3376":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"3377":{"morph":{"__isSmartRef__":true,"id":3375},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3378":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3379},"eventHandler":{"__isSmartRef__":true,"id":3380},"_ClipMode":"visible","derivationIds":["12EE27B0-C3FC-46DD-A8F7-89843EBD2FC4"],"id":"05A6BEA3-8EE2-4B49-AA00-A7D32E737659","droppingEnabled":true,"halosEnabled":true,"_Rotation":1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3379":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"3380":{"morph":{"__isSmartRef__":true,"id":3378},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3381":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3382},"eventHandler":{"__isSmartRef__":true,"id":3383},"_ClipMode":"visible","derivationIds":["7EE82974-1BFD-485B-BCDA-0D51FA182D29"],"id":"9296C8D6-848E-4D7D-AA9C-CFC3C340E20C","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3382":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"3383":{"morph":{"__isSmartRef__":true,"id":3381},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3384":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3385},"eventHandler":{"__isSmartRef__":true,"id":3386},"_ClipMode":"visible","derivationIds":["5346DC23-C71B-4834-A497-83774A04224C"],"id":"D59F9902-8BF0-4959-8F1E-C0946BD26F78","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.2000000000000002,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3385":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"3386":{"morph":{"__isSmartRef__":true,"id":3384},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3387":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3388},"eventHandler":{"__isSmartRef__":true,"id":3389},"_ClipMode":"visible","derivationIds":["C967C9E5-9D25-4547-A3B1-8E8DDB8E0C59"],"id":"5532A652-444F-4D3B-8D37-0590033E6AEB","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.3,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3388":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"3389":{"morph":{"__isSmartRef__":true,"id":3387},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3390":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3391},"eventHandler":{"__isSmartRef__":true,"id":3392},"_ClipMode":"visible","derivationIds":["D88362A7-6113-45EB-A393-9E60D6495BE2"],"id":"10664DD4-30D0-49E3-B555-8F001463B5DE","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.4000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3391":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"3392":{"morph":{"__isSmartRef__":true,"id":3390},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3393":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3394},"eventHandler":{"__isSmartRef__":true,"id":3395},"_ClipMode":"visible","derivationIds":["2CCD8B40-46F0-4711-AB01-E1585CC8CF88"],"id":"EBDC6D47-79AC-47BC-A624-9B27CAC56A0B","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3394":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"3395":{"morph":{"__isSmartRef__":true,"id":3393},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3396":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3397},"eventHandler":{"__isSmartRef__":true,"id":3398},"_ClipMode":"visible","derivationIds":["537D0BC8-CB73-4385-8271-6812354EE6C6"],"id":"8A4F39D7-1422-4D55-A7B0-30186997FC98","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.6,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3397":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"3398":{"morph":{"__isSmartRef__":true,"id":3396},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3399":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3400},"eventHandler":{"__isSmartRef__":true,"id":3401},"_ClipMode":"visible","derivationIds":["FACBDE5C-4B86-4612-BF90-6432FB3F7CAA"],"id":"C43F670A-FEB0-4953-8889-4F4BFF7ECE34","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.7000000000000002,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3400":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"3401":{"morph":{"__isSmartRef__":true,"id":3399},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3402":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3403},"eventHandler":{"__isSmartRef__":true,"id":3404},"_ClipMode":"visible","derivationIds":["2ACA8178-C294-4BA1-A3DB-FDD9FF32F313"],"id":"77B67CCE-39ED-4534-BEA8-F5192B1EEBF9","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.8,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3403":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"3404":{"morph":{"__isSmartRef__":true,"id":3402},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3405":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3406},"eventHandler":{"__isSmartRef__":true,"id":3407},"_ClipMode":"visible","derivationIds":["E4EC760B-5530-4295-9E88-58FAA9FCFAB5"],"id":"AF1BD46A-DD5A-4A7D-89B7-FF943356D964","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.9000000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3406":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"3407":{"morph":{"__isSmartRef__":true,"id":3405},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3408":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3409},"eventHandler":{"__isSmartRef__":true,"id":3410},"_ClipMode":"visible","derivationIds":["57020D8A-88D5-4E0D-80D2-4C0E2E7DA0A7"],"id":"43BFCF7C-E3F7-4DC4-A155-336F0F02EE08","droppingEnabled":true,"halosEnabled":true,"_Rotation":2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3409":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"3410":{"morph":{"__isSmartRef__":true,"id":3408},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3411":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3412},"eventHandler":{"__isSmartRef__":true,"id":3413},"_ClipMode":"visible","derivationIds":["2A3C05DA-6FC0-413D-9AB2-C37568B3832F"],"id":"2DA9177F-AD45-4AE0-B629-A3ABD16957A3","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3412":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"3413":{"morph":{"__isSmartRef__":true,"id":3411},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3414":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3415},"eventHandler":{"__isSmartRef__":true,"id":3416},"_ClipMode":"visible","derivationIds":["7B32DEDE-66BD-412E-BEC3-D8237AF01C33"],"id":"09D391C8-835C-43BF-AB1B-B419210A477F","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3415":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"3416":{"morph":{"__isSmartRef__":true,"id":3414},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3417":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3418},"eventHandler":{"__isSmartRef__":true,"id":3419},"_ClipMode":"visible","derivationIds":["7D96512D-AFD5-443E-99CF-469C68BA67B8"],"id":"D8F48B53-E075-476A-AB82-07DB9C474109","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.3000000000000003,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3418":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"3419":{"morph":{"__isSmartRef__":true,"id":3417},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3420":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3421},"eventHandler":{"__isSmartRef__":true,"id":3422},"_ClipMode":"visible","derivationIds":["35570B9F-742E-4354-A660-25DA62DF80DD"],"id":"5915674C-7098-4746-93ED-7DB1CBDAEB3A","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.4000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3421":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"3422":{"morph":{"__isSmartRef__":true,"id":3420},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3423":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3424},"eventHandler":{"__isSmartRef__":true,"id":3425},"_ClipMode":"visible","derivationIds":["BDCBC354-8269-4E01-8116-5BEB0EB8623A"],"id":"17411C4D-1C38-42E1-85BB-8EEB540A7A56","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3424":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"3425":{"morph":{"__isSmartRef__":true,"id":3423},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3426":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3427},"eventHandler":{"__isSmartRef__":true,"id":3428},"_ClipMode":"visible","derivationIds":["F60DA92F-2CB9-41C8-846C-D68B924F825F"],"id":"FED0699F-3CDC-41AD-A37A-A887001D208A","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.6,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3427":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(262,0,0)"},"3428":{"morph":{"__isSmartRef__":true,"id":3426},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3429":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3430},"eventHandler":{"__isSmartRef__":true,"id":3431},"_ClipMode":"visible","derivationIds":["8EFC3DF7-6935-415B-83A3-CDE6671CF64F"],"id":"91472C21-0B97-42A5-B01E-4B7EFCC25C08","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.7,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3430":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(272,0,0)"},"3431":{"morph":{"__isSmartRef__":true,"id":3429},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3432":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3433},"eventHandler":{"__isSmartRef__":true,"id":3434},"_ClipMode":"visible","derivationIds":["72486A5F-CFEB-45C9-A58A-C0482BDFF1B1"],"id":"6E11EE1C-1B7D-4602-B8B6-F70CB40B599C","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.8000000000000003,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3433":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(282,0,0)"},"3434":{"morph":{"__isSmartRef__":true,"id":3432},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3435":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3436},"eventHandler":{"__isSmartRef__":true,"id":3437},"_ClipMode":"visible","derivationIds":["D1951511-0528-458C-B9EE-45749DB2E336"],"id":"179F2194-2E4F-467D-93DE-5E76B277D9FF","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.9000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3436":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(292,0,0)"},"3437":{"morph":{"__isSmartRef__":true,"id":3435},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3438":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3439},"eventHandler":{"__isSmartRef__":true,"id":3440},"_ClipMode":"visible","derivationIds":["F1D6F8C4-4CB9-4FBF-8AEA-E4293ECA29A9"],"id":"F4DA934A-E87E-479A-B6DB-A3B1096ED5D5","droppingEnabled":true,"halosEnabled":true,"_Rotation":3,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3439":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(302,0,0)"},"3440":{"morph":{"__isSmartRef__":true,"id":3438},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3441":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3442},"eventHandler":{"__isSmartRef__":true,"id":3443},"_ClipMode":"visible","derivationIds":["2D43CB1D-7828-4EB1-AD1C-9E0EDB226C91"],"id":"3A543180-3904-4773-868A-EA39B33B9D04","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.1,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3442":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(312,0,0)"},"3443":{"morph":{"__isSmartRef__":true,"id":3441},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3444":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3445},"eventHandler":{"__isSmartRef__":true,"id":3446},"_ClipMode":"visible","derivationIds":["0079D47D-2270-4451-AC61-60951A2454A7"],"id":"BC330B1C-D531-426F-AC55-1B800EBB2967","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3445":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(322,0,0)"},"3446":{"morph":{"__isSmartRef__":true,"id":3444},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3447":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3448},"eventHandler":{"__isSmartRef__":true,"id":3449},"_ClipMode":"visible","derivationIds":["67B292A1-2428-4216-8212-E2C28F719DF0"],"id":"212A98E5-90DC-4ACA-AEA2-6AA99C1A7762","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.3000000000000003,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3448":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(332,0,0)"},"3449":{"morph":{"__isSmartRef__":true,"id":3447},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3450":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3451},"eventHandler":{"__isSmartRef__":true,"id":3452},"_ClipMode":"visible","derivationIds":["FD67C699-EEB1-40EC-B4B9-BBB0C454CE6E"],"id":"70A854B4-FA00-48DF-8413-FBEDF2333EA7","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.4000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3451":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(342,0,0)"},"3452":{"morph":{"__isSmartRef__":true,"id":3450},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3453":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3454},"eventHandler":{"__isSmartRef__":true,"id":3455},"_ClipMode":"visible","derivationIds":["D63C6004-B64F-4663-9D04-0527C827052A"],"id":"635BEE17-405A-4655-A2FA-10B82FA3A006","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3454":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(352,0,0)"},"3455":{"morph":{"__isSmartRef__":true,"id":3453},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3456":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3457},"eventHandler":{"__isSmartRef__":true,"id":3458},"_ClipMode":"visible","derivationIds":["96A8F07B-7174-4828-A709-FFBD4C31AE1E"],"id":"EA71843A-6D81-4350-91AE-F03D152767BD","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.6,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3457":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(362,0,0)"},"3458":{"morph":{"__isSmartRef__":true,"id":3456},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3459":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3460},"eventHandler":{"__isSmartRef__":true,"id":3461},"_ClipMode":"visible","derivationIds":["6D61411D-7345-4D28-9F41-2AB89CF0CD68"],"id":"8CFC674C-537B-4E19-B4AA-01026EAC79EE","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.7,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3460":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(372,0,0)"},"3461":{"morph":{"__isSmartRef__":true,"id":3459},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3462":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3463},"eventHandler":{"__isSmartRef__":true,"id":3464},"_ClipMode":"visible","derivationIds":["B21A373D-CA2C-4F94-B2A6-38DE5A99A69E"],"id":"43386FCE-D4DF-4749-8711-B148D8081E3D","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.8000000000000003,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3463":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(382,0,0)"},"3464":{"morph":{"__isSmartRef__":true,"id":3462},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3465":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3466},"eventHandler":{"__isSmartRef__":true,"id":3467},"_ClipMode":"visible","derivationIds":["8137AE1E-8DE1-4229-A2CD-650CE434CCBB"],"id":"A26C0B2B-F337-403B-924A-08FDCFEEFF71","droppingEnabled":true,"halosEnabled":true,"_Rotation":3.9000000000000004,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3466":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(392,0,0)"},"3467":{"morph":{"__isSmartRef__":true,"id":3465},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3468":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3469},"eventHandler":{"__isSmartRef__":true,"id":3470},"_ClipMode":"visible","derivationIds":["6F610542-EA56-4CB1-9C6D-68FB5EA8DA47"],"id":"A87528A5-7B3B-46A4-B846-6AEEF5E45742","droppingEnabled":true,"halosEnabled":true,"_Rotation":4,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3469":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(402,0,0)"},"3470":{"morph":{"__isSmartRef__":true,"id":3468},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3471":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3472},"eventHandler":{"__isSmartRef__":true,"id":3473},"_ClipMode":"visible","derivationIds":["88A5C220-E029-409D-A4ED-B3BE7EA77892"],"id":"8C75B5B6-20E4-46DF-B3A1-F85C79115B09","droppingEnabled":true,"halosEnabled":true,"_Rotation":4.1000000000000005,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3472":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(412,0,0)"},"3473":{"morph":{"__isSmartRef__":true,"id":3471},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3474":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3475},"eventHandler":{"__isSmartRef__":true,"id":3476},"_ClipMode":"visible","derivationIds":["AC68EE77-4710-4824-BFD7-E133310A8C6C"],"id":"E91F0DB9-D3A0-4654-AEEC-F99F19C6C735","droppingEnabled":true,"halosEnabled":true,"_Rotation":4.2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3475":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(422,0,0)"},"3476":{"morph":{"__isSmartRef__":true,"id":3474},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3477":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3478},"eventHandler":{"__isSmartRef__":true,"id":3479},"_ClipMode":"visible","derivationIds":["0861D33A-3A68-4773-9E02-BB99425D4174"],"id":"38642CA0-D7D8-476D-A57C-EABBE0BC7D55","droppingEnabled":true,"halosEnabled":true,"_Rotation":4.3,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3478":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(432,0,0)"},"3479":{"morph":{"__isSmartRef__":true,"id":3477},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3480":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3481},"eventHandler":{"__isSmartRef__":true,"id":3482},"_ClipMode":"visible","derivationIds":["5C6BB2E8-01B2-45A5-ABDC-400921359AE3"],"id":"080FA235-8016-4D8D-8826-E730334713F0","droppingEnabled":true,"halosEnabled":true,"_Rotation":4.4,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3481":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(442,0,0)"},"3482":{"morph":{"__isSmartRef__":true,"id":3480},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3483":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3484},"eventHandler":{"__isSmartRef__":true,"id":3485},"_ClipMode":"visible","derivationIds":["7E2CED7E-3BBA-4B4A-B782-D2B6A6E5BF58"],"id":"0DBD8E59-77D5-455B-8E1C-1FEA61B78E21","droppingEnabled":true,"halosEnabled":true,"_Rotation":4.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3484":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(452,0,0)"},"3485":{"morph":{"__isSmartRef__":true,"id":3483},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3486":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3487},"eventHandler":{"__isSmartRef__":true,"id":3488},"_ClipMode":"visible","derivationIds":["B8FE23EF-8ED0-4910-9289-7322D1385C8F"],"id":"7E36A22B-5943-40CA-887D-7FAD6D101B05","droppingEnabled":true,"halosEnabled":true,"_Rotation":4.6000000000000005,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3487":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(462,0,0)"},"3488":{"morph":{"__isSmartRef__":true,"id":3486},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3489":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3490},"eventHandler":{"__isSmartRef__":true,"id":3491},"_ClipMode":"visible","derivationIds":["B60481D2-D757-4379-8765-485DD40E2BEC"],"id":"B30AD2EA-54E1-481E-88F2-B07239763EA8","droppingEnabled":true,"halosEnabled":true,"_Rotation":4.7,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3490":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(472,0,0)"},"3491":{"morph":{"__isSmartRef__":true,"id":3489},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3492":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3493},"eventHandler":{"__isSmartRef__":true,"id":3494},"_ClipMode":"visible","derivationIds":["560EB9A1-A0C4-4DC2-B065-39817E5083AB"],"id":"7A6699AB-F977-41F4-9261-37F69EF064B9","droppingEnabled":true,"halosEnabled":true,"_Rotation":4.800000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3493":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(482,0,0)"},"3494":{"morph":{"__isSmartRef__":true,"id":3492},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3495":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3496},"eventHandler":{"__isSmartRef__":true,"id":3497},"_ClipMode":"visible","derivationIds":["3130C892-1D49-4312-80CE-0296A8441306"],"id":"A1FC37BB-C75E-42A0-BBFF-8F2C4ECA953D","droppingEnabled":true,"halosEnabled":true,"_Rotation":4.9,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3496":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(492,0,0)"},"3497":{"morph":{"__isSmartRef__":true,"id":3495},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3498":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3499},"eventHandler":{"__isSmartRef__":true,"id":3500},"_ClipMode":"visible","derivationIds":["03E9D63F-4161-4CD3-89EB-F6489A60A963"],"id":"6C025135-4909-4112-B5FF-93B1541584A5","droppingEnabled":true,"halosEnabled":true,"_Rotation":5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3499":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(502,0,0)"},"3500":{"morph":{"__isSmartRef__":true,"id":3498},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3501":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3502},"eventHandler":{"__isSmartRef__":true,"id":3503},"_ClipMode":"visible","derivationIds":["0ED5A70A-4CD6-411C-BC6F-5F7F0C37178D"],"id":"1718B96E-DD43-4199-A8B1-F4577FA7DEDC","droppingEnabled":true,"halosEnabled":true,"_Rotation":5.1000000000000005,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3502":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(512,0,0)"},"3503":{"morph":{"__isSmartRef__":true,"id":3501},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3504":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3505},"eventHandler":{"__isSmartRef__":true,"id":3506},"_ClipMode":"visible","derivationIds":["9E2A2188-7561-4D4F-95D1-51A5F7163D6D"],"id":"D187600E-31E0-4476-92FC-A71D7B206FD9","droppingEnabled":true,"halosEnabled":true,"_Rotation":5.2,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3505":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(524,0,0)"},"3506":{"morph":{"__isSmartRef__":true,"id":3504},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3507":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3508},"eventHandler":{"__isSmartRef__":true,"id":3509},"_ClipMode":"visible","derivationIds":["6E08A034-EE08-4C6A-BF54-0A84F66995B7"],"id":"55FBABDA-86C0-4A8B-9981-69A146A23297","droppingEnabled":true,"halosEnabled":true,"_Rotation":5.300000000000001,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3508":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(534,0,0)"},"3509":{"morph":{"__isSmartRef__":true,"id":3507},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3510":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3511},"eventHandler":{"__isSmartRef__":true,"id":3512},"_ClipMode":"visible","derivationIds":["C75591DA-6768-4ED1-B049-3AF04832394E"],"id":"BA332431-0886-4F96-A562-207F1A16A0C1","droppingEnabled":true,"halosEnabled":true,"_Rotation":5.4,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3511":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(544,0,0)"},"3512":{"morph":{"__isSmartRef__":true,"id":3510},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3513":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3514},"eventHandler":{"__isSmartRef__":true,"id":3515},"_ClipMode":"visible","derivationIds":["95C2F23A-7C26-4C39-8B62-93684DE7D1DB"],"id":"F329D2AD-B38F-41DB-ADC9-0ED4F7A97E82","droppingEnabled":true,"halosEnabled":true,"_Rotation":5.5,"__serializedExpressions__":["_Position"],"name":"Box1","owner":null,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"3514":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(554,0,0)"},"3515":{"morph":{"__isSmartRef__":true,"id":3513},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3516":{"val":"invoke"},"3517":{"val":"remove"},"3518":{"val":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},"3519":{"val":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},"3520":{"onrestore":{"__isSmartRef__":true,"id":3521},"reset":{"__isSmartRef__":true,"id":3529},"onPrepare":{"__isSmartRef__":true,"id":3533},"onSliderStop":{"__isSmartRef__":true,"id":3537},"onRun":{"__isSmartRef__":true,"id":3541},"setFrame":{"__isSmartRef__":true,"id":3545},"valueCopy":{"__isSmartRef__":true,"id":3549},"cachePeriodLength":{"__isSmartRef__":true,"id":3553}},"3521":{"varMapping":{"__isSmartRef__":true,"id":3522},"source":"function onrestore() {\n module('lively.ast.Morphic').load(true)\n \n var self = this;\n cop.createLayer('LiveInterpreterLayer').refineObject(Global.lively.ast, {\n halt: function(frame) {\n self.setFrame(frame);\n return true\n }\n });\n\n cop.createLayer('IntelligentSlider').refineClass(lively.morphic.Slider, {\n onMouseUp : function(proceed, evt) {\n this.isBeingDragged = false;\n proceed(evt);\n },\n onMouseDown : function(proceed, evt) {\n this.isBeingDragged = true; \n proceed(evt); \n }\n });\n\n}","funcProperties":{"__isSmartRef__":true,"id":3527},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3522":{"this":{"__isSmartRef__":true,"id":2277},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3523}},"3523":{"$super":{"__isSmartRef__":true,"id":3524}},"3524":{"varMapping":{"__isSmartRef__":true,"id":3525},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3526},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3525":{"obj":{"__isSmartRef__":true,"id":2277},"name":"onrestore"},"3526":{},"3527":{"timestamp":{"__isSmartRef__":true,"id":3528},"user":"erp","tags":[]},"3528":{"isSerializedDate":true,"string":"Wed Oct 31 2012 12:48:27 GMT+0100 (CET)"},"3529":{"varMapping":{"__isSmartRef__":true,"id":3530},"source":"function reset() {\n this.doNotSerialize = ['lastFrame', 'environmentCache'];\n}","funcProperties":{"__isSmartRef__":true,"id":3531},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3530":{"this":{"__isSmartRef__":true,"id":2277}},"3531":{"timestamp":{"__isSmartRef__":true,"id":3532},"user":"erp","tags":[]},"3532":{"isSerializedDate":true,"string":"Wed Oct 31 2012 16:08:45 GMT+0100 (CET)"},"3533":{"varMapping":{"__isSmartRef__":true,"id":3534},"source":"function onPrepare() {\n\n this.maximumSteps = 1;\n this.environmentCache = [];\n this.stepsToRun = 0;\n \n this.functionSource = \"function(){\\n\" + this.get(\"functionEditor\").textString + \"\\n}\";\n this.functionToDisplay = Function.fromString(this.functionSource).forInterpretation();\n var context = new lively.morphic.Text(pt(0,0).extent(pt(200,100)),\"\");\n\n var self = this;\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.functionToDisplay.startHalted().apply(context, []);\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n\n while(self.lastFrame.hasNextStatement()) {\n this.maximumSteps += 1;\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.lastFrame.stepToNextStatement();\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n if(this.maximumSteps % this.cachePeriodLength() == 0) {\n var values = this.valueCopy(this.lastFrame.values);\n var ctx = context.submorphs.collect(function(each) {\n return each.copy();\n });\n this.environmentCache[this.maximumSteps / this.cachePeriodLength()] = {\n values : values,\n context : ctx,\n pc : self.lastFrame.pc,\n mapping : self.lastFrame.mapping\n };\n }\n };\n \n // Restart the whole thing\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.functionToDisplay.startHalted().apply(context, []);\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n\n}","funcProperties":{"__isSmartRef__":true,"id":3535},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3534":{"this":{"__isSmartRef__":true,"id":2277}},"3535":{"timestamp":{"__isSmartRef__":true,"id":3536},"user":"erp","tags":[]},"3536":{"isSerializedDate":true,"string":"Sat Nov 03 2012 20:56:57 GMT+0100 (CET)"},"3537":{"varMapping":{"__isSmartRef__":true,"id":3538},"source":"function onSliderStop(position) {\n var stepsSlider = this.get(\"stepsSlider\");\n if(!stepsSlider.isBeingDragged) {\n this.oldStepsToRun = this.stepsToRun;\n this.stepsToRun = Math.round(this.maximumSteps * position);\n this.onRun();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":3539},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3538":{"this":{"__isSmartRef__":true,"id":2277}},"3539":{"timestamp":{"__isSmartRef__":true,"id":3540},"user":"erp","tags":[]},"3540":{"isSerializedDate":true,"string":"Sat Nov 03 2012 20:56:46 GMT+0100 (CET)"},"3541":{"varMapping":{"__isSmartRef__":true,"id":3542},"source":"function onRun() {\n \n var context = this.get('contextOfFunction');\n context.submorphs.invoke('remove');\n this.steps = 0;\n \n var self = this;\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.functionToDisplay.startHalted().apply(context, []);\n self.lastFrame.setThis(context);\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n\n var stepDifference = this.stepsToRun - this.oldStepsToRun;\n if(stepDifference < 0 || stepDifference > this.cachePeriodLength) {\n var executionPhase = Math.round((this.stepsToRun / this.cachePeriodLength()) - 0.5);\n if(executionPhase > 0) {\n var env = this.environmentCache[executionPhase];\n this.lastFrame.setPC(env[\"pc\"]);\n this.lastFrame.values = env[\"values\"];\n this.lastFrame.mapping = env[\"mapping\"];\n this.lastFrame.setThis(context);\n \n alertOK(\"Redoing the morphs\");\n env[\"context\"].each(function(each) {\n context.addMorph(each);\n });\n \n self.steps = executionPhase * this.cachePeriodLength();\n };\n };\n \n while(this.steps < this.stepsToRun) {\n this.steps += 1;\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n lively.ast.doWithHalt(function() {\n self.lastFrame.stepToNextStatement();\n });\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n };\n}","funcProperties":{"__isSmartRef__":true,"id":3543},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3542":{"this":{"__isSmartRef__":true,"id":2277}},"3543":{"timestamp":{"__isSmartRef__":true,"id":3544},"user":"erp","tags":[]},"3544":{"isSerializedDate":true,"string":"Sat Nov 03 2012 21:08:30 GMT+0100 (CET)"},"3545":{"varMapping":{"__isSmartRef__":true,"id":3546},"source":"function setFrame(frame) {\n this.lastFrame = frame;\n}","funcProperties":{"__isSmartRef__":true,"id":3547},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3546":{"this":{"__isSmartRef__":true,"id":2277}},"3547":{"timestamp":{"__isSmartRef__":true,"id":3548},"user":"erp","tags":[]},"3548":{"isSerializedDate":true,"string":"Wed Oct 31 2012 12:46:51 GMT+0100 (CET)"},"3549":{"varMapping":{"__isSmartRef__":true,"id":3550},"source":"function valueCopy(obj) {\n if(obj == null || typeof(obj) != 'object') {\n return obj;\n }\n\n if(obj.submorphs != undefined) {\n return obj.copy();\n }\n\n var temp = obj.constructor();\n if(temp == undefined) {\n temp = {};\n }\n \n for(var key in obj) {\n temp[key] = this.valueCopy(obj[key]);\n }\n \n return temp;\n}","funcProperties":{"__isSmartRef__":true,"id":3551},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3550":{"this":{"__isSmartRef__":true,"id":2277}},"3551":{"timestamp":{"__isSmartRef__":true,"id":3552},"user":"erp","tags":[]},"3552":{"isSerializedDate":true,"string":"Wed Oct 31 2012 13:30:27 GMT+0100 (CET)"},"3553":{"varMapping":{"__isSmartRef__":true,"id":3554},"source":"function cachePeriodLength() {\n return 100;\n}","funcProperties":{"__isSmartRef__":true,"id":3555},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3554":{"this":{"__isSmartRef__":true,"id":2277}},"3555":{"timestamp":{"__isSmartRef__":true,"id":3556},"user":"erp","tags":[]},"3556":{"isSerializedDate":true,"string":"Sat Nov 03 2012 20:52:23 GMT+0100 (CET)"},"3557":{"submorphs":[{"__isSmartRef__":true,"id":3558},{"__isSmartRef__":true,"id":3880},{"__isSmartRef__":true,"id":3946}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3974},"derivationIds":[null,"284842C2-3DB7-4DCD-8BE4-2FFE4B777B30","FD939D7D-A4C4-4C7E-8B70-B2A742C598EF","CB077F21-134D-4E48-9EFB-964119F7F013","6515A032-3ABC-4CF9-96B6-73DA59C5EAC3","92E4EA0B-E0C9-42C8-81A0-A8FD0DF7BA68","D1DBAB51-FE28-42CE-82DD-651B8999BA35","C25A864D-6861-4ECD-BB55-E925318EB70F","5152D76A-32BC-4B63-8764-25BC40CA0D5A","5EB17C45-41C8-4663-91CC-96642E9A54D9"],"id":"A94D0388-5591-4048-BEBE-60AF6BBC7DA3","eventHandler":{"__isSmartRef__":true,"id":3975},"_ClipMode":"visible","droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":3976},"LK2":true,"__serializedExpressions__":["_Position","contentOffset","prevDragPos"],"targetMorph":{"__isSmartRef__":true,"id":3558},"reframeHandle":{"__isSmartRef__":true,"id":3946},"titleBar":{"__isSmartRef__":true,"id":3880},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"highlighted":false,"isBeingDragged":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":3977},"name":"Debugger","moved":true,"_Rotation":0,"_Scale":1,"owner":{"__isSmartRef__":true,"id":0},"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withoutLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(1344.3,20.0)","contentOffset":"lively.pt(0.0,21.0)","prevDragPos":"lively.pt(913.0,178.0)"},"3558":{"submorphs":[{"__isSmartRef__":true,"id":3559},{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3686},{"__isSmartRef__":true,"id":3703}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3843},"derivationIds":[null,"709E7C40-7177-48FE-B7ED-7DAFE44A556B","10DAF0D3-F3FE-4840-94BA-72A907E05388","B3DBAA52-8C70-443C-88DB-7A287107445F","FB5C5BCC-F9A9-41CF-B0CE-2CECA5673FED","0B7EBAF8-DA17-4DFD-84DA-241BB555080D","268F8088-6A50-4E33-8442-BE7FAB419CB2","5007A269-6824-4C95-9BDD-85F45C168F80","EE4AC97B-44D5-40BA-9613-535F1C8C23C2","247E4C8F-B72A-4DE0-B595-299F53D1D5A9"],"id":"1528FE49-D884-47B4-BCC1-52595EB21F29","eventHandler":{"__isSmartRef__":true,"id":3844},"_ClipMode":"visible","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"doNotSerialize":["topFrame","currentFrame"],"owner":{"__isSmartRef__":true,"id":3557},"showsHalos":false,"name":"Debugger","layout":{"__isSmartRef__":true,"id":3845},"isInLayoutCycle":false,"isBeingDragged":false,"isCopyMorphRef":true,"morphRefId":2,"#startLetters":"with","_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3847},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,21.0)"},"3559":{"submorphs":[],"scripts":[],"id":"869EF40E-7606-426D-86C3-5D6E3804C436","shape":{"__isSmartRef__":true,"id":3560},"droppingEnabled":true,"halosEnabled":true,"itemList":[{"__isSmartRef__":true,"id":3561}],"showsHalos":false,"name":"FrameList","partsBinMetaInfo":{"__isSmartRef__":true,"id":3579},"_ClipMode":"auto","eventHandler":{"__isSmartRef__":true,"id":3580},"attributeConnections":[{"__isSmartRef__":true,"id":3581}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"isBeingDragged":false,"__serializedExpressions__":["_Position","distanceToDragEvent"],"owner":{"__isSmartRef__":true,"id":3558},"derivationIds":[2612,"A0AD9581-213C-48C8-BC1F-A161F650CAA5","F5C6D69A-B788-4463-BDD2-79F0CA5759C6","575747D5-C10C-4A02-B97C-9043A46716E2","3EBF1234-BFC4-4834-A105-424718894E3B","D4DEF292-8EE8-4D5F-BE2A-D64A7C4E73B6","0BA69281-38E4-42EE-9F3E-759B3AA53094","9D688D21-1679-4EF0-B520-15C5330FDBFC","9B6355B8-775E-4DB3-A39E-2A4CF57D8AB1","F65CE66D-94AB-4B54-85BA-4394E51687B7","4350E587-A4BA-4B2F-A59E-954C7259DE17","60567B75-E84B-4E15-A68B-98A796C47A3B","38ACC1A8-D41A-48E0-A0B2-29B6B4DBCCA0","2E9F3D78-243A-4729-B894-8E1D770FB07F","D07B5007-FC30-4745-85ED-37504C49D80B","40CA7EAE-3E86-46F6-AA7A-711EDBE5BCC3","5EEF0201-2D82-4368-B38A-C5CCD3E934AF","B986773F-CFFF-45E5-BB80-27C67D88DCC6","AF7902A0-7F69-4AEC-8AAE-6734ECDAE011","2F970EA8-BC31-4CBB-A9AE-0D2EFB3B8EBA","B2A051F5-43A4-4C58-A0A4-E11F9E44CE65","DC08B18E-A927-425C-8E8D-B1C492185044","EFF207E6-BE16-484C-BC6A-ABB01965E3C6","00885B9B-E9B7-4AC9-B8CB-0FF8E5448727","CD7D6476-1DE2-4EEE-80B1-33C4FEDB28AA","1E916687-567A-4D0B-8EDA-705D5E654935","B64B6405-FABC-4A2B-91A1-D33B18E5FA32","46C16933-EBDA-4BA0-B616-CA2D55FBBEAE","D42C6EE2-4092-41F1-8BC1-16A80A14C143","A96D59B8-5E5D-449C-A6BB-6019B0924973","DF60DEE8-B9E9-44FF-9AE3-5FA07724E006","CDE3B236-0F7E-4A75-80D2-D5DB2F4704DC","B83448F8-C5CD-48B7-971A-499010FC39DE","F403D4D6-2372-432C-BCCE-8C893B6A4344","233235AB-F827-4122-B7C9-58C4D26593AF","E1A78B99-CA64-41DA-95D7-F257EA1E7684","AD55BE7D-9C47-4F7D-BE69-63EB2BC6A673","33DC2A0E-F6B6-4C3A-AA43-492FBC7C65C1","F059B1A9-BCE8-43CA-B36E-F2D6FAF55793"],"changeTriggered":true,"layout":{"__isSmartRef__":true,"id":3583},"selectedLineNo":0,"selection":{"__isSmartRef__":true,"id":3562},"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(9.5,9.5)","distanceToDragEvent":"lively.pt(305.3,-12.1)"},"3560":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(684.1,106.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)","_Padding":"lively.rect(0,0,0,0)"},"3561":{"isListItem":true,"string":"anonymous","value":{"__isSmartRef__":true,"id":3562}},"3562":{"mapping":{"__isSmartRef__":true,"id":3563},"returnTriggered":false,"breakTriggered":false,"continueTriggered":false,"findSetterMode":false,"breakAtCalls":false,"pc":{"__isSmartRef__":true,"id":3564},"bp":null,"values":{"__isSmartRef__":true,"id":3574},"containingScope":{"__isSmartRef__":true,"id":3577},"arguments":[],"__LivelyClassName__":"lively.ast.Interpreter.Frame","__SourceModuleName__":"Global.lively.ast.Interpreter"},"3563":{"this":{"__isSmartRef__":true,"id":2278},"j":1},"3564":{"pos":[36,42],"name":"z","val":{"__isSmartRef__":true,"id":3565},"_parent":{"__isSmartRef__":true,"id":3566},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3565":{"pos":[41,42],"value":3,"_parent":{"__isSmartRef__":true,"id":3564},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3566":{"pos":[36,42],"children":[{"__isSmartRef__":true,"id":3564}],"_parent":{"__isSmartRef__":true,"id":3567},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3567":{"pos":[21,43],"children":[{"__isSmartRef__":true,"id":3568},{"__isSmartRef__":true,"id":3566}],"_parent":{"__isSmartRef__":true,"id":3571},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3568":{"pos":[25,31],"children":[{"__isSmartRef__":true,"id":3569}],"_parent":{"__isSmartRef__":true,"id":3567},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3569":{"pos":[25,31],"name":"j","val":{"__isSmartRef__":true,"id":3570},"_parent":{"__isSmartRef__":true,"id":3568},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3570":{"pos":[30,31],"value":1,"_parent":{"__isSmartRef__":true,"id":3569},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3571":{"pos":[18,45],"body":{"__isSmartRef__":true,"id":3567},"args":[],"_parent":{"__isSmartRef__":true,"id":3572},"__LivelyClassName__":"lively.ast.Function","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3572":{"pos":[0,45],"name":"anonymous","val":{"__isSmartRef__":true,"id":3571},"_parent":{"__isSmartRef__":true,"id":3573},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3573":{"pos":[0,45],"children":[{"__isSmartRef__":true,"id":3572}],"source":"function anonymous(){\nvar j = 1;\nvar z = 3;\n}","__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3574":{"30-31":{"__isSmartRef__":true,"id":3575},"25-31":{"__isSmartRef__":true,"id":3576}},"3575":{"val":1},"3576":{"val":1},"3577":{"func":null,"returnTriggered":false,"breakTriggered":false,"continueTriggered":false,"findSetterMode":false,"breakAtCalls":false,"pc":null,"bp":null,"values":{"__isSmartRef__":true,"id":3578},"__LivelyClassName__":"lively.ast.Interpreter.Frame","__SourceModuleName__":"Global.lively.ast.Interpreter"},"3578":{},"3579":{"partsSpaceName":"PartsBin/Basic","migrationLevel":2,"partName":"List","comment":"a list morph","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"3580":{"morph":{"__isSmartRef__":true,"id":3559},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3581":{"sourceObj":{"__isSmartRef__":true,"id":3559},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":3558},"targetMethodName":"setCurrentFrame","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3582},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3582":{"source":{"__isSmartRef__":true,"id":3559},"target":{"__isSmartRef__":true,"id":3558}},"3583":{"resizeWidth":true},"3584":{"submorphs":[{"__isSmartRef__":true,"id":3585}],"scripts":[],"id":"6FFAD933-7CF4-4F06-BE77-32E733E342D3","shape":{"__isSmartRef__":true,"id":3663},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position"],"showsHalos":false,"name":"FrameSourcePane","partsBinMetaInfo":{"__isSmartRef__":true,"id":3664},"eventHandler":{"__isSmartRef__":true,"id":3679},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C","49474CF4-0C81-4877-95D8-B2AD0043998B","50E8C822-52CB-49D8-9102-2525171CD14D","FBC7E939-2900-4969-A72F-3CE9832A7495","2CD10024-B03C-4B8B-93FD-1F9495E8EC62","C5FC1A12-299F-4529-B963-D237408FA469","0309EA43-F417-4AD6-ADF9-264F493B8D72","38593EC8-E7C3-4008-BC64-C86604C0EEB4","5C8619C7-4306-46F6-9F54-871C039AFD1A","32FFF0F2-5D8E-48D3-B3C5-49AD239494EE","EAC017DA-ADA9-49B7-A32C-627D35805120","59742DE0-650E-4999-B61E-55FE4C298D3E","4925F144-2676-4E5A-9FD9-3269D5336AB9","4BB272BC-81C7-4CD6-B299-3D9ABF7F30A9","11CAB79F-E477-4C54-842F-B5344B940F74","78412728-0E0A-4728-BA24-CED440F95184","0E069552-35A8-4F55-9839-6B0B9C3F0835","8F4AFE3D-B5DF-49B9-BD17-9C8335DA28D4","5280445F-E4C8-4A38-B023-B22B587669FB"],"partTests":{"__isSmartRef__":true,"id":3680},"_ClipMode":"auto","moved":true,"owner":{"__isSmartRef__":true,"id":3558},"layout":{"__isSmartRef__":true,"id":3685},"isBeingDragged":false,"isCopyMorphRef":true,"morphRefId":2,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(9.5,160.2)"},"3585":{"submorphs":[{"__isSmartRef__":true,"id":3586}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3591},"derivationIds":[null,"2A563F1F-D23C-46DC-B9CE-A7531291F5A3","9469F478-0BA4-404F-95BF-E31E856E2D42","7F54634B-AE70-4F7B-80CA-BAB88E9E9996","4C82AAA6-407A-4222-829B-9E85892AA3FC","84EAFDD1-9D70-4B6D-94CB-11CC775A96BE","E592A9E7-786A-411B-B6B0-DDD43A01F9C7","A7AAB0DC-F62C-476A-B6FD-5534DAF2C7C2","ACDEF400-31CD-47AF-A171-9EB08E1C0052","E6A50A5B-0464-4F4F-B7BF-62A2BAB0850D","88156070-7D43-47A6-B7F6-F0DE22972550","87D8BD41-2E23-4640-872C-E20F6A451358","7036C4E3-870F-4E3A-AB31-3DE5447B75B4","A82BFB44-CA6D-4F98-BCCD-3826F39E7FD7","6333CD07-51B2-44CF-9A11-51DEFC61CFDE","7F483D37-A33F-4891-BFD0-D6DE573EC758","EBF24C42-8962-46A3-9CEF-FF8AD78EA304","12CAF9A7-AB38-4148-81A5-641E47647028","0CDA3DA8-4ADE-4F73-A130-EFD450A721A4","060C48CC-640B-4F7D-AC49-3BBD98C90AF7","C510612A-EBE2-4588-B34F-9AF8F1D651FF","FB052164-C1C1-4838-9BB7-E77E1B1C0460","18AE3FCC-5FAC-4064-81F7-03021D57C917","F4DAA8D0-F1EB-4E14-B7BF-A5102526A0D4","5573124B-9FEF-4AEB-99BE-51291BD11B3D","0B841E38-7C4C-4421-BE59-A0C38B8D708A","D927B3E1-4EF1-469F-AE59-6F12C9E2B720","CA0FCF6E-E306-4E0E-ADB6-60751C285388","3F38034A-077A-49DC-823B-52D365FCAEE1","81F54E5B-8818-4BA0-9FC9-002F8C041B2A","0C4B9C91-845A-46F9-8089-31CA9C141F7F","BFF94627-D882-4A9A-BADE-B6E1F366140A"],"id":"4C655DA1-67C5-4A42-B374-A4AE0BCA80B1","_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":3592},{"__isSmartRef__":true,"id":3594},{"__isSmartRef__":true,"id":3596},{"__isSmartRef__":true,"id":3598},{"__isSmartRef__":true,"id":3600},{"__isSmartRef__":true,"id":3602},{"__isSmartRef__":true,"id":3604},{"__isSmartRef__":true,"id":3606},{"__isSmartRef__":true,"id":3608},{"__isSmartRef__":true,"id":3610},{"__isSmartRef__":true,"id":3612},{"__isSmartRef__":true,"id":3614},{"__isSmartRef__":true,"id":3616}],"eventHandler":{"__isSmartRef__":true,"id":3618},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"_InputAllowed":true,"allowInput":true,"_FontFamily":"monospace","_FontSize":10,"evalEnabled":false,"__serializedExpressions__":["_Position"],"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"layout":{"__isSmartRef__":true,"id":3619},"syntaxHighlightingWhileTyping":true,"doNotSerialize":["parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","$$textString"],"lastSyntaxHighlightTime":10,"accessibleInInactiveWindow":true,"charsReplaced":" ","lastFindLoc":77,"showsHalos":false,"name":"FrameSource","owner":{"__isSmartRef__":true,"id":3584},"_syntaxHighlightTimeout":null,"specialHighlighting":"topLevel","#startLetters":"setWhi","isBeingDragged":false,"savedTextString":"","previousSelection":[55,55],"syntaxHighlightingMaxDelay":0,"_Rotation":0,"_Scale":1,"syntaxHighlighter":{"__isSmartRef__":true,"id":3620},"attributeConnections":[{"__isSmartRef__":true,"id":3629}],"doNotCopyProperties":["$$textString"],"textString":"function anonymous(){\nvar j = 1;\nvar z = 3;\n}","_lastSyntaxHighlightTime":13,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3630},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(1.0,1.1)"},"3586":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3587},"derivationIds":[null,"CB07F16D-FD2A-4C95-8224-8CFAE8608037","8CF02679-BBA5-438E-8477-DFBA03DC86CE","C9C960F2-8B76-41A8-B177-E4B919476FFD","6B612EBB-F636-427C-947F-90B084AB73DF","27D3276C-5CF0-44B9-8BE4-A34CDB5FBAC5","68940C84-3B57-43FF-B8FB-47C5085CB8D9","D697BE6B-6992-46E0-82B4-4CF91F90BC63","86DB2670-158D-4917-9528-4C465480FA51","A5794FF5-6DCA-4366-BA78-AAB3783B022E","C4541B3A-3327-4615-9759-095DF67E69B4","75DB58F3-BFD0-4BF8-BC49-B4E98E428E37","97D9E522-30B8-463C-9987-F591A2B18DCC","9D6C787F-D211-4569-93EF-DC494E9E7C82","6296899D-1009-4278-BC1E-78A436A82719","94CFE08E-B5CD-47EE-9066-BAC26F5146D0","F73AFEFA-39A2-45AC-99F0-1A7C58A60F2F","7169F4E4-359D-4093-A4D2-4BF8739FD4C9","2CDED7D8-8F3B-4D0A-B99C-CEC38F08F32F"],"id":"41DB00FB-4D83-4940-A3E3-730C8873C782","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3588}],"eventHandler":{"__isSmartRef__":true,"id":3590},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":true,"allowInput":true,"_FontFamily":"monospace","_FontSize":10,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3585},"_MaxTextWidth":8,"_MinTextWidth":8,"_MaxTextHeight":null,"_MinTextHeight":null,"#startLetters":"setAl","eventsAreDisabled":true,"_HandStyle":"default","_PointerEvents":"none","__serializedExpressions__":["_Position","_TextColor"],"_Align":"right","_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,1.0)","_TextColor":"Color.rgb(128,128,128)"},"3587":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["morph","text"],"_NodeId":"morph-cb07f16d-fd2a-4c95-8224-8cfae8608037","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(16.0,30.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3588":{"style":{"__isSmartRef__":true,"id":3589},"chunkOwner":{"__isSmartRef__":true,"id":3586},"_id":"_2276","storedString":"1\n2\n3\n4","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3589":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3590":{"morph":{"__isSmartRef__":true,"id":3586},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3591":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_BorderRadius":4,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(196.0,100.0)","_Padding":"lively.rect(20,2,-12,0)","_BorderColor":"Color.rgb(95,94,95)"},"3592":{"style":{"__isSmartRef__":true,"id":3593},"chunkOwner":{"__isSmartRef__":true,"id":3585},"_id":"_2275","storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3593":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"3594":{"_id":"_2277","style":{"__isSmartRef__":true,"id":3595},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":" anonymous()","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3595":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3596":{"_id":"_2278","style":{"__isSmartRef__":true,"id":3597},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3597":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3598":{"_id":"_2279","style":{"__isSmartRef__":true,"id":3599},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3599":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3600":{"_id":"_2280","style":{"__isSmartRef__":true,"id":3601},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3601":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3602":{"_id":"_2281","style":{"__isSmartRef__":true,"id":3603},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":" j = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3603":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3604":{"_id":"_2282","style":{"__isSmartRef__":true,"id":3605},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3605":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"3606":{"_id":"_2283","style":{"__isSmartRef__":true,"id":3607},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3607":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3608":{"_id":"_2284","style":{"__isSmartRef__":true,"id":3609},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3609":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3610":{"_id":"_2285","style":{"__isSmartRef__":true,"id":3611},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":" z = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3611":{"__serializedExpressions__":["color","backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)","backgroundColor":"Color.rgb(255,255,127)"},"3612":{"_id":"_2286","style":{"__isSmartRef__":true,"id":3613},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":"3","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3613":{"__serializedExpressions__":["color","backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)","backgroundColor":"Color.rgb(255,255,127)"},"3614":{"_id":"_2287","style":{"__isSmartRef__":true,"id":3615},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3615":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3616":{"_id":"_2288","style":{"__isSmartRef__":true,"id":3617},"chunkOwner":{"__isSmartRef__":true,"id":3585},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3617":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3618":{"morph":{"__isSmartRef__":true,"id":3585},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3619":{"resizeWidth":true,"resizeHeight":true},"3620":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3621},"__LivelyClassName__":"lively.ast.JSSyntaxHighlighter","__SourceModuleName__":"Global.lively.ast.IDESupport"},"3621":{"styleTextMorph":{"__isSmartRef__":true,"id":3622}},"3622":{"varMapping":{"__isSmartRef__":true,"id":3623},"source":"function styleTextMorph(target) {\n var domChangedPass1 = $super(target);\n var domChangedPass2 = target.highlightPC(target);\n return domChangedPass1 || domChangedPass2;\n }","funcProperties":{"__isSmartRef__":true,"id":3628},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3623":{"this":{"__isSmartRef__":true,"id":3620},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3624}},"3624":{"$super":{"__isSmartRef__":true,"id":3625}},"3625":{"varMapping":{"__isSmartRef__":true,"id":3626},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3627},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3626":{"obj":{"__isSmartRef__":true,"id":3620},"name":"styleTextMorph"},"3627":{},"3628":{},"3629":{"sourceObj":{"__isSmartRef__":true,"id":3585},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":3585},"targetMethodName":"showLineNumbers","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3630":{"reset":{"__isSmartRef__":true,"id":3631},"showLineNumbers":{"__isSmartRef__":true,"id":3635},"boundEval":{"__isSmartRef__":true,"id":3639},"debugSelection":{"__isSmartRef__":true,"id":3647},"showSource":{"__isSmartRef__":true,"id":3655},"highlightPC":{"__isSmartRef__":true,"id":3659}},"3631":{"varMapping":{"__isSmartRef__":true,"id":3632},"source":"function reset() {\n lively.bindings.disconnectAll(this);\n this.textString = '';\n this.savedTextString = '';\n this.submorphs[0].textString = '';\n this.setExtent(pt(100,100));\n lively.bindings.connect(this, 'textString', this, 'showLineNumbers');\n}","funcProperties":{"__isSmartRef__":true,"id":3633},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3632":{"this":{"__isSmartRef__":true,"id":3585}},"3633":{"timestamp":{"__isSmartRef__":true,"id":3634},"user":"cschuster","tags":[]},"3634":{"isSerializedDate":true,"string":"Fri Jun 22 2012 01:55:44 GMT+0200 (CEST)"},"3635":{"varMapping":{"__isSmartRef__":true,"id":3636},"source":"function showLineNumbers() {\n this.setWhiteSpaceHandling(\"pre\");\n var lines = this.textString.split(\"\\n\");\n var numLines = lines.length - (lines.last() == \"\" ? 1 : 0);\n var maxDigits = String(numLines).length;\n this.setPadding(new Rectangle(maxDigits * 12 + 8, 2, maxDigits * -12, 0));\n this.submorphs[0].setExtent(pt(maxDigits * 12 + 4, 30));\n var str = Array.range(1,numLines).join(\"\\n\");\n this.submorphs[0].textString = str;\n}","funcProperties":{"__isSmartRef__":true,"id":3637},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3636":{"this":{"__isSmartRef__":true,"id":3585}},"3637":{"timestamp":{"__isSmartRef__":true,"id":3638},"user":"cschuster","tags":[]},"3638":{"isSerializedDate":true,"string":"Fri Jun 22 2012 01:58:12 GMT+0200 (CEST)"},"3639":{"varMapping":{"__isSmartRef__":true,"id":3640},"source":"function boundEval(str) {\n var frame = this.get(\"Debugger\").currentFrame;\n if (!frame) return;\n var str = \"function(){\\n\" + str + \"\\n}\";\n var fun = Function.fromString(str).forInterpretation();\n fun.lexicalScope = frame;\n fun.basicApply = function(f) {\n f.mapping = frame.mapping;\n return lively.ast.Function.prototype.basicApply.call(this, f);\n };\n try {\n return fun.call(frame.getThis());\n } finally {\n this.get(\"MappingList\").updateList(\n frame.listItemsForIntrospection()\n );\n }\n}","funcProperties":{"__isSmartRef__":true,"id":3645},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3640":{"this":{"__isSmartRef__":true,"id":3585},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3641}},"3641":{"$super":{"__isSmartRef__":true,"id":3642}},"3642":{"varMapping":{"__isSmartRef__":true,"id":3643},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3644},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3643":{"obj":{"__isSmartRef__":true,"id":3585},"name":"boundEval"},"3644":{},"3645":{"timestamp":{"__isSmartRef__":true,"id":3646},"user":"cschuster","tags":[]},"3646":{"isSerializedDate":true,"string":"Fri Jun 22 2012 01:57:12 GMT+0200 (CEST)"},"3647":{"varMapping":{"__isSmartRef__":true,"id":3648},"source":"function debugSelection() {\n var frame = this.get(\"Debugger\").currentFrame;\n if (!frame) return;\n var str = \"function(){\\n\" + this.getSelectionOrLineString() + \"\\n}\";\n var fun = Function.fromString(str).forInterpretation();\n fun.lexicalScope = frame;\n try {\n return fun.apply(frame.getThis(), [], {breakAtCalls:true});\n } catch(e) {\n if (e.isUnwindException) {\n lively.ast.openDebugger(e.topFrame);\n } else {\n this.showError(e);\n }\n } finally {\n this.get(\"MappingList\").updateList(\n frame.listItemsForIntrospection()\n );\n }\n}","funcProperties":{"__isSmartRef__":true,"id":3653},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3648":{"this":{"__isSmartRef__":true,"id":3585},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3649}},"3649":{"$super":{"__isSmartRef__":true,"id":3650}},"3650":{"varMapping":{"__isSmartRef__":true,"id":3651},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3652},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3651":{"obj":{"__isSmartRef__":true,"id":3585},"name":"debugSelection"},"3652":{},"3653":{"timestamp":{"__isSmartRef__":true,"id":3654},"user":"cschuster","tags":[]},"3654":{"isSerializedDate":true,"string":"Fri Jun 22 2012 01:57:12 GMT+0200 (CEST)"},"3655":{"varMapping":{"__isSmartRef__":true,"id":3656},"source":"function showSource(frame) {\n this.textString = frame.getFuncSource();\n this.highlightJavaScriptSyntax();\n}","funcProperties":{"__isSmartRef__":true,"id":3657},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3656":{"this":{"__isSmartRef__":true,"id":3585}},"3657":{"timestamp":{"__isSmartRef__":true,"id":3658},"user":"cschuster","tags":[]},"3658":{"isSerializedDate":true,"string":"Fri Jun 22 2012 02:30:22 GMT+0200 (CEST)"},"3659":{"varMapping":{"__isSmartRef__":true,"id":3660},"source":"function highlightPC(target) {\n var frame = this.get(\"Debugger\").currentFrame;\n if (frame && frame.pc !== null) {\n var style = { backgroundColor: Color.rgb(255,255,127) };\n target.emphasize(style, frame.pc.pos[0], frame.pc.pos[1]);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":3661},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3660":{"this":{"__isSmartRef__":true,"id":3585}},"3661":{"timestamp":{"__isSmartRef__":true,"id":3662},"user":"cschuster","tags":[]},"3662":{"isSerializedDate":true,"string":"Sun Sep 23 2012 21:59:36 GMT+0200 (CEST)"},"3663":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":6,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(684.1,245.5)","_BorderColor":"Color.rgb(95,94,95)","_Fill":"Color.rgb(243,243,243)","_Padding":"lively.rect(0,0,0,0)"},"3664":{"partsSpaceName":"PartsBin/Basic","comment":"A simple box morph. A really orange one. Its amazing what you can build out of simple boxes.... Who needs stars when you got orange rectangles!","migrationLevel":4,"partName":"Rectangle","changes":[{"__isSmartRef__":true,"id":3665},{"__isSmartRef__":true,"id":3667},{"__isSmartRef__":true,"id":3669},{"__isSmartRef__":true,"id":3671},{"__isSmartRef__":true,"id":3673},{"__isSmartRef__":true,"id":3675},{"__isSmartRef__":true,"id":3677}],"revisionOnLoad":171602,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"3665":{"date":{"__isSmartRef__":true,"id":3666},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"3666":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"3667":{"date":{"__isSmartRef__":true,"id":3668},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"3668":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"3669":{"date":{"__isSmartRef__":true,"id":3670},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"3670":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"3671":{"date":{"__isSmartRef__":true,"id":3672},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"3672":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"3673":{"date":{"__isSmartRef__":true,"id":3674},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"3674":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"3675":{"date":{"__isSmartRef__":true,"id":3676},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"3676":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"3677":{"date":{"__isSmartRef__":true,"id":3678},"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8"},"3678":{"isSerializedDate":true,"string":"Mon Jun 18 2012 19:35:08 GMT+0200 (CEST)"},"3679":{"morph":{"__isSmartRef__":true,"id":3584},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3680":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3681}},"3681":{"test01IsMorph":{"__isSmartRef__":true,"id":3682}},"3682":{"varMapping":{"__isSmartRef__":true,"id":3683},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":3684},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3683":{"this":{"__isSmartRef__":true,"id":3680}},"3684":{},"3685":{"resizeWidth":true,"resizeHeight":true},"3686":{"submorphs":[],"scripts":[],"id":"F80A771E-8BFA-4D85-9CC4-9C19F40AC0E0","shape":{"__isSmartRef__":true,"id":3687},"droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"itemList":[{"__isSmartRef__":true,"id":3688},{"__isSmartRef__":true,"id":3689},{"__isSmartRef__":true,"id":3690}],"selection":null,"selectedLineNo":-1,"showsHalos":false,"name":"MappingList","partsBinMetaInfo":{"__isSmartRef__":true,"id":3691},"_ClipMode":"auto","eventHandler":{"__isSmartRef__":true,"id":3692},"owner":{"__isSmartRef__":true,"id":3558},"isBeingDragged":false,"derivationIds":[3850,"9C195314-C68E-4CCC-90F0-DD570454DE9D","CA1DEC4D-1986-4260-A661-9F6AD5D4F341","26083E11-7C55-4774-9DCE-45FCA905B858","7203FE45-0D62-4A75-9F4D-3C1071BF401E","4B2A12CE-2771-4C82-9C4D-8DAF3EA863C8","5F1F4DE5-86E1-4E1C-A826-CE7DEEADB2D2","CE30FE53-FCD5-49AA-8AA8-08C014394A9F","9369AEC4-7BF1-42AC-9696-36ABD1C5E7E9","0A365098-FAEA-4B90-B3AF-B07C1ABF9D4A","F7989B33-5763-4E4B-8D8C-B066D54F28B4","722B8CE2-23E7-4E08-A926-D30FF2EF95CF","3225AA57-8EA4-4546-A9FC-E387605DE648","86C1990D-C7C8-4D57-8152-4D7E789494AE","04F0DD65-C69E-4AC8-9C01-00BB0AC63EF1","1B216779-84A0-43F7-B9C7-194539A78BA9","643841EB-7195-447A-AC67-6A107CA453B4","1AD5C4B9-9430-4CEE-B545-1609B48C123B","CDA285F9-73A6-4796-9D30-75DE9F55EAB9","342020A5-3C6F-4042-9BCD-3D2832094E4A","67F3EF1C-6BD8-4613-A1A0-011E59D0FBCE","0BE0A9E5-6CA2-4870-B1A7-7A9A6452B31C","4A619320-B364-450A-861A-D7CF22392EEC","9D648BEA-6C80-43AF-B74B-EE5415A2CEB5","89908F8A-6A40-4FAA-9FE8-915A11593E50","2E0D2567-5E75-44D0-A820-03BF9ECF4279","BE1B154F-F1CD-46A4-9DDB-99C837C128F7","73E547FA-900A-4A63-99AB-9BEDBE4199D5","432160B7-1002-4741-9DCB-65A0D411257E","6D723E41-9AF7-44AD-9F1A-68CAEC0573EF","39316B34-B06A-43DC-BCC4-CFBBFC39E46F","4C4F57FC-FC7C-4A14-A6FB-2372E1952E9C","AF1358F2-0605-413B-9B78-1F551D31C262","11940A43-EBFD-4876-8538-CDE499EC7322","1D343DF4-9342-46EF-B09B-C6B97195CAA9","7A09928F-ECC8-45D1-ACD9-714B10BD0403","FAD81705-4C07-4851-B0A4-3B779AD9F566","DD049757-6BB0-47C3-A6E3-3D66404E8835","71687B7A-B9CE-4DC2-A173-40C2E00F244E"],"changeTriggered":true,"layout":{"__isSmartRef__":true,"id":3693},"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3694},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(9.5,413.5)","distanceToDragEvent":"lively.pt(289.4,-8.4)"},"3687":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(684.1,99.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)","_Padding":"lively.rect(0,0,0,0)"},"3688":{"isListItem":true,"string":"this: ","value":{"__isSmartRef__":true,"id":2278}},"3689":{"isListItem":true,"string":"j: 1","value":1},"3690":{"isListItem":true,"string":"[[containing scope]]"},"3691":{"partsSpaceName":"PartsBin/Basic","migrationLevel":2,"partName":"List","comment":"a list morph","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"3692":{"morph":{"__isSmartRef__":true,"id":3686},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3693":{"resizeWidth":true,"moveVertical":true},"3694":{"updateSelectionAndLineNoProperties":{"__isSmartRef__":true,"id":3695}},"3695":{"varMapping":{"__isSmartRef__":true,"id":3696},"source":"function updateSelectionAndLineNoProperties(idx) {\n var item = this.itemList[idx];\n if (item && item.value) {\n this.world().openInspectorFor(item.value);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":3701},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3696":{"this":{"__isSmartRef__":true,"id":3686},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3697}},"3697":{"$super":{"__isSmartRef__":true,"id":3698}},"3698":{"varMapping":{"__isSmartRef__":true,"id":3699},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3700},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3699":{"obj":{"__isSmartRef__":true,"id":3686},"name":"updateSelectionAndLineNoProperties"},"3700":{},"3701":{"timestamp":{"__isSmartRef__":true,"id":3702},"user":"cschuster","tags":[]},"3702":{"isSerializedDate":true,"string":"Sun Feb 12 2012 20:59:45 GMT+0100 (CET)"},"3703":{"submorphs":[{"__isSmartRef__":true,"id":3704},{"__isSmartRef__":true,"id":3731},{"__isSmartRef__":true,"id":3758},{"__isSmartRef__":true,"id":3785},{"__isSmartRef__":true,"id":3812}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3839},"derivationIds":[null,"3E7444D4-C751-49B9-82CE-ECEA12453DAD","B7D6D4C7-C23A-41BF-9D62-0064D32F538F","490578F3-C456-4315-939E-790DA8F4B807","EEC79903-6ACA-4155-82BB-9F473DF03E81","62B8F8EE-CEEA-4AC4-8860-3FEAEFCBDC1D","44B57DF1-28FD-494E-9373-79A24C0D4736","AE5B49E6-0D94-4BD6-9E8E-2E31F716DF6A","3861590B-49CD-4690-9CFC-D177DD03978E","5465C1F3-B319-45E3-AE22-AE9207C4F9CA"],"id":"939BE97C-9B73-4643-A376-44A6B94B7A9F","eventHandler":{"__isSmartRef__":true,"id":3840},"_ClipMode":"visible","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"owner":{"__isSmartRef__":true,"id":3558},"showsHalos":false,"layout":{"__isSmartRef__":true,"id":3841},"isInLayoutCycle":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(9.5,123.3)"},"3704":{"submorphs":[{"__isSmartRef__":true,"id":3705}],"scripts":[],"id":"4B23D4C6-81F9-444E-9195-8B25424E8894","shape":{"__isSmartRef__":true,"id":3710},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3716},"lighterFill":{"__isSmartRef__":true,"id":3721},"label":{"__isSmartRef__":true,"id":3705},"name":"ContinueButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":3726},"attributeConnections":[{"__isSmartRef__":true,"id":3727}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":3729},"__serializedExpressions__":["distanceToDragEvent","_Position"],"isCopyMorphRef":true,"morphRefId":1,"owner":{"__isSmartRef__":true,"id":3703},"derivationIds":[5351,"A51F08C0-FC9B-4C51-B48D-3A513CDD8803","24AD2155-C763-4F2D-B6E1-A27055239A1F","98EE426C-6397-4DFD-AA77-B613B6C337C5","F2F8F58C-BCFE-440B-8578-4D1D635F5A08","4FF992F4-0E06-4BD1-B656-25651AFAA229","54B917F7-45D5-4759-92CE-D014F25478D6","9E5696A3-04E8-425E-8574-CE7245D9B8FA","AC88BB0B-08EC-4A8D-9BAA-53B9F818BEC5","B88358E1-EAE8-4A56-B4BA-C3A6A2545F52","A2CB1572-E196-435A-BC2C-7615DA330734","D2C92B9E-95A8-4DFC-B073-18FB7CB448EB","DD71EDB6-105E-4938-B934-5383A9F51022","33CC9491-04D6-4386-88F0-DDE4A78B735A","949D3E9A-A18D-4A77-87EF-A983E9058863","DDA9DBBB-7BD5-4D4C-9C96-83CD3A157322","5F2B4F8E-E636-415F-B6C9-2FBD0260F495","3BDA1391-A3A7-4E4E-87D6-8892C2534E5A","DCE62994-B0AA-4FB2-A593-A7D29F19E671","8BAB506B-F33F-4405-8878-E0F15DE96529","9770C542-FC51-432B-8574-7DBCF607428D","EFDE5869-BB13-4146-9F22-AC69373C4BA8","80D7752F-1264-44C6-B03B-806754D17949","472B2199-0635-4C45-BC40-0E1DBF5B735A","71602CE7-3119-40F1-B055-03AEF69CBA8D","692CB325-5355-491B-8268-0AF809F69CEA","EF1E3326-BF66-451B-B6F4-9B818B3AC8BB","FDABC2BE-C53C-4A27-B11E-79035782231F","2378D266-E221-4A86-92E5-3186338A581B","19749B21-D9A1-4829-B024-3841C4A1DCB0","60406505-A1A5-4E83-A02F-0FFECE2A1D5A","1D4FD756-1150-4381-8FF6-E84E9828300E","FE2FAE6E-C30C-43A0-A214-F8AEB63D0986","15A5A2BA-8D3B-4488-9F97-E124E51FC368","68E48D49-EE6A-4A66-BC27-F5272F365305","7026B8E1-C0BB-4238-8407-7B3316D33777","B3DFAB94-037A-4533-9460-5AF8D10ED3D9","9BE9DECE-FEE8-4499-87DA-C3800F9A2AEC","A98C20CE-10DF-442C-91A3-A48AF9C186B0"],"_ClipMode":"visible","isPressed":false,"layout":{"__isSmartRef__":true,"id":3730},"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","distanceToDragEvent":"lively.pt(54.9,-11.0)","_Position":"lively.pt(1.6,1.6)"},"3705":{"submorphs":[],"scripts":[],"id":"6EB27627-8D8F-4E6C-90D3-D265028BFAEF","shape":{"__isSmartRef__":true,"id":3706},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","padding","_Padding"],"_MaxTextWidth":132.44,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":3704},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":3707}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":3709},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":132.44,"_MinTextHeight":null,"derivationIds":[5352,"7AA7E25F-3143-4838-BF47-FB26AFE6525C","B6FCEDF6-AF21-44B7-88F1-F7D45EAF0DAB","806F5506-4A2E-4285-9537-4539B3A33753","CA28D071-C44A-4766-8DC8-ACF5C4B86717","235BD7B5-D2A0-4BF5-8F14-2C5DA08A3CEA","05A6A2DD-E65D-4CF6-BAFE-879EDFCF394B","9A402E87-108C-4DB7-A468-CDF10A8AE5AB","94F783E2-4CF9-4FB3-9974-6882692D6B0D","347D3E95-303C-413C-B8F3-A19ED49496A3","015461C4-444A-4B9D-B91A-575FA163542D","19A517E1-1D3D-416B-B65D-C81997145CFD","3642290A-DFFD-4CF4-902D-019F79C2D880","29154238-8A8A-4DE5-AC15-BD4291E07246","7E54B0BD-A9EB-4F2B-8400-4010F0BF01C0","01AEBC48-5DF3-41E8-B952-ADBE0A3BD117","3B7A40C5-144A-4B7F-964B-87BA10E41CAA","982B0CD2-60CD-4822-8324-B8655C4E2A28","7B812AAF-71FE-4822-B0E2-E22868ABF2E6","C6FAA5ED-4690-4606-93B1-D4B6452C1D89","43BA06F4-7019-472C-9E1C-170F18BB4ACE","902C899D-3043-4CFA-9AF6-3A297E0E2281","BDBF82D3-022A-4A4E-8C43-48764D803642","FAABAA62-F974-4E81-A23A-BD89605BE8EE","C55297D6-92C2-4B68-83BE-4BA5E30FF565","D03DE16B-D233-4DCA-8653-AAE36E2C9E3F","DAF7F4C8-CB30-4E15-B140-390D216266B6","83635F47-D14C-450B-9FA2-76C46E447006","014D84DC-D33C-4C2A-9985-B8435E073EE1","7D8B01C4-B812-4918-8B83-0A39005FDA76","F96AE5CE-131B-4D6C-B578-6C7F26F1ACC5","EA07A309-14CA-4055-A879-C0508A5019B9","6F8A153F-AB57-4A32-8D52-BCB6BA642BC3","9E42DBFD-F3E1-4A36-92A5-7EDCCB1CAE70","282DD1C6-4A56-424E-8BF1-71E40BF3778C","7A45C812-29EE-4E0A-8900-0160FB652847","33F3E3E8-F33A-4206-9E86-57CC40C0406E","D0FDE867-CFAA-4B4C-9A4C-01A7B5A1CE7A","D4A9FDFE-3980-402D-8308-936EFCB4A58B"],"_Scale":1,"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)"},"3706":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(132.4,25.8)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"3707":{"style":{"__isSmartRef__":true,"id":3708},"chunkOwner":{"__isSmartRef__":true,"id":3705},"storedString":"continue","_id":"_207","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3708":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3709":{"morph":{"__isSmartRef__":true,"id":3705},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3710":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":3711},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(132.4,25.8)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"3711":{"stops":[{"__isSmartRef__":true,"id":3712},{"__isSmartRef__":true,"id":3713},{"__isSmartRef__":true,"id":3714},{"__isSmartRef__":true,"id":3715}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3712":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3713":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3714":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3715":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"3716":{"stops":[{"__isSmartRef__":true,"id":3717},{"__isSmartRef__":true,"id":3718},{"__isSmartRef__":true,"id":3719},{"__isSmartRef__":true,"id":3720}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3717":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3718":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"3719":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"3720":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"3721":{"stops":[{"__isSmartRef__":true,"id":3722},{"__isSmartRef__":true,"id":3723},{"__isSmartRef__":true,"id":3724},{"__isSmartRef__":true,"id":3725}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3722":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"3723":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"3724":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"3725":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"3726":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"3727":{"sourceObj":{"__isSmartRef__":true,"id":3704},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3558},"targetMethodName":"resume","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3728},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3728":{"source":{"__isSmartRef__":true,"id":3704},"target":{"__isSmartRef__":true,"id":3558}},"3729":{"morph":{"__isSmartRef__":true,"id":3704},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3730":{"resizeWidth":true,"resizeHeight":true},"3731":{"submorphs":[{"__isSmartRef__":true,"id":3732}],"scripts":[],"id":"40D3D1DF-2150-4397-839A-DBC89D3BC848","shape":{"__isSmartRef__":true,"id":3737},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3743},"lighterFill":{"__isSmartRef__":true,"id":3748},"label":{"__isSmartRef__":true,"id":3732},"name":"StepIntoButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":3753},"attributeConnections":[{"__isSmartRef__":true,"id":3754}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":3756},"owner":{"__isSmartRef__":true,"id":3703},"layout":{"__isSmartRef__":true,"id":3757},"derivationIds":[5592,"A458EF63-A0F3-4C6E-AAEA-139CC9DBC75E","E9CADD12-542B-449C-97D5-8CFA2D1DF330","9FE5DFDC-8F25-40CC-99C4-B967C477CA0C","2BB8490B-6426-434F-9A70-F7A4588DC134","034467E2-73A4-498C-8420-5E063DB03EEA","8743AEBF-4BCD-437B-9591-B5D86A88F23B","38828C1E-E132-4C8A-B19A-5426E351C796","A08C74BE-2610-4E20-B32D-CF81C7879C64","9AC3711F-D274-41E5-987E-9ED63CF436FB","09C0322B-29DA-446D-9F72-C3A1F3B11D24","60FD4B0B-1683-4D36-9613-4E5C4B24654B","03394592-2106-41EE-B26C-659101A00298","F3252784-4EA1-4B77-9D94-1751218932AC","08CF7A52-A3C2-4C6D-B3AF-20BA297AD497","557409FC-61C9-4CDF-834B-E65BEE4B4EF6","B47DB16D-4D3A-45D4-90E5-AE9AA00CEF49","EC55444A-208E-4779-B23D-E0574F79D7FF","A729BE39-D4EF-47B9-9221-33FB0D0ACE60","728DEBB9-2A6E-40C4-9D27-7E7DC5B30559","7A1CF542-75C9-40C6-976E-AD6FBEB38AA5","9B7969B1-9DDD-46B6-BD7B-BC24CE975E5A","F8968735-02B9-4C31-98DE-6F36CE12BF28","1AD9CAE8-D9B5-4B53-804A-7E97D7214BD0","7372A508-9D30-4979-96D5-E13C00C7B52B","349ED3F0-2132-4415-9972-C8F8C58E98A7","AE270EF3-6988-4448-996E-A1E02FD14B19","70A52F1A-AB49-42E9-8717-74BACAD33C5C","EA7A6BC2-A243-4FAF-828B-8B56A048C6C9","60772471-545A-42C1-A738-07E3346F5326","8156779C-29DF-40CC-A6E8-8A9FC1F2B7CC","EA18EAE8-4D1A-4A87-9D19-8264FDF050C0","19585F46-510D-4BE6-8CA8-17A9DB61B002","F7E3847E-FCA8-4D18-AE84-E684F2E1296A","00820438-97E5-4A1A-BC9D-3BA541C3D798","5197A908-8A49-4313-8D0D-C4A4C39C7B08","A68100D8-21A2-4D58-8C8C-3E1CAC71BD2A","E54E340B-A454-4D2B-AAF1-D50C8C671B07","46C2C2AF-F1A1-4AE2-BB30-3392E3EB5134"],"_ClipMode":"visible","isPressed":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(138.7,1.6)","distanceToDragEvent":"lively.pt(54.9,-11.0)"},"3732":{"submorphs":[],"scripts":[],"id":"361EA276-BE79-4C67-ADFE-13BD859B2CC1","shape":{"__isSmartRef__":true,"id":3733},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","padding","_Padding"],"_MaxTextWidth":132.44,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":3731},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":3734}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":3736},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":132.44,"_MinTextHeight":null,"derivationIds":[5593,"35923AD0-DAE4-4B82-88B7-9FF27A2BB25F","9D3E2172-F29B-41ED-ADE5-956AD4DEAEBA","965F7DB8-ECBB-47DD-B459-E79F8BAEA1EC","BF341C8E-4F1C-40AA-91E6-B16DCEB2FE4A","24870F01-02B0-4E46-92B9-D6F1883F0C31","CCCAD133-8234-4DAB-A40B-2A862C16870B","F885025E-B76D-4E1C-AB7C-3F88D02FA5A2","33814D10-C356-43BD-BFD9-A18937A3B933","5F4DC149-9AF4-4D58-A732-F9534A762D67","02ED8CE7-6F51-4F45-BE68-5E51FAC3B626","A4FCBD6B-3302-45B8-BAF2-9A4D3D7BC597","EA27573A-05E4-435B-B192-7A5FF1B2F1F8","2986758C-639E-456B-AED1-0E531C388A52","8FA567BF-277B-4FF8-9814-DD681D50FB77","E811E5CD-59EC-428F-BFD9-A1CFE311FAA3","F87BD701-DAE1-4EE7-9535-AC6624E27131","59AE063A-5E57-48F8-A6DD-B936349B4E51","A3EB7EA8-AC01-4F7B-9FDF-853E4EDABD1D","0A31CA58-3500-4A55-A125-B9FCD4709D99","D5D1A6F9-AF27-41AC-B24F-9BF797FE11F5","28D3C824-972A-4885-86EF-8DBC4F1EB99F","E30C4CB5-B54A-4298-BA14-D42452D232F3","5EA5C45A-51A3-4806-8628-48501CD3DEDC","E334CD06-650A-4633-8FDB-16F0E638FE01","719855DC-7B6F-4AA2-9840-53E72388872C","54A99B78-BC4A-4590-9587-0758CE973979","D3A0D42A-88A7-442D-9B4F-EEC3B87615CC","8F469568-EEBD-47FE-868D-A9AB63649A3C","53B31D96-8020-49CC-81EE-5DDEDFA62EC3","3BB15996-9CE8-443D-81BA-6C6A4F3D75B2","96468F3A-FF35-492B-BEF0-1BC3404643DE","2370E64B-E0D3-49D3-B5C1-876E98BECA2D","4588F10E-A949-4A1D-BBF2-ACC8BE5D94BF","56C02E23-286C-4C8E-B40B-3C3D6BB4B03C","3E69DA3C-5EC9-45B9-87E4-52A944AB915E","376D236F-C563-4C4F-A360-0046D096023E","95FE8965-68CE-4E2A-8355-B2DE6A0445C3","9ED64166-92B7-4878-85AB-49315211FA65"],"_Scale":1,"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)"},"3733":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(132.4,25.8)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"3734":{"style":{"__isSmartRef__":true,"id":3735},"chunkOwner":{"__isSmartRef__":true,"id":3732},"storedString":"step into","_id":"_208","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3735":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3736":{"morph":{"__isSmartRef__":true,"id":3732},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3737":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":3738},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(132.4,25.8)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"3738":{"stops":[{"__isSmartRef__":true,"id":3739},{"__isSmartRef__":true,"id":3740},{"__isSmartRef__":true,"id":3741},{"__isSmartRef__":true,"id":3742}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3739":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3740":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3741":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3742":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"3743":{"stops":[{"__isSmartRef__":true,"id":3744},{"__isSmartRef__":true,"id":3745},{"__isSmartRef__":true,"id":3746},{"__isSmartRef__":true,"id":3747}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3744":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3745":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"3746":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"3747":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"3748":{"stops":[{"__isSmartRef__":true,"id":3749},{"__isSmartRef__":true,"id":3750},{"__isSmartRef__":true,"id":3751},{"__isSmartRef__":true,"id":3752}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3749":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"3750":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"3751":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"3752":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"3753":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"3754":{"sourceObj":{"__isSmartRef__":true,"id":3731},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3558},"targetMethodName":"stepInto","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3755},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3755":{"source":{"__isSmartRef__":true,"id":3731},"target":{"__isSmartRef__":true,"id":3558}},"3756":{"morph":{"__isSmartRef__":true,"id":3731},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3757":{"resizeWidth":true,"resizeHeight":true},"3758":{"submorphs":[{"__isSmartRef__":true,"id":3759}],"scripts":[],"id":"26603657-B0DF-4E91-B9A5-223CB8243752","shape":{"__isSmartRef__":true,"id":3764},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3770},"lighterFill":{"__isSmartRef__":true,"id":3775},"label":{"__isSmartRef__":true,"id":3759},"name":"StepOverButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":3780},"attributeConnections":[{"__isSmartRef__":true,"id":3781}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":3783},"__serializedExpressions__":["distanceToDragEvent","_Position"],"isCopyMorphRef":true,"morphRefId":1,"owner":{"__isSmartRef__":true,"id":3703},"derivationIds":[10239,"0D171D50-5EE7-438B-938F-21F23AE8D86F","B847D9EE-8E1B-4BF4-8F1E-EFAE1F9F28D8","22E024F8-62B4-44E4-A9C2-4FFFF4926855","E0E44B1B-FA92-485E-A932-641B86C954AF","F49E59B8-8654-4423-8E90-B9E554AA8BDA","736BBFAF-9373-4C45-8790-01E9D81F0221","242B5DBF-5C62-4B77-BCBF-1EF272D1A8D7","FACF9E84-CA9F-4A54-A25A-1F71F1A590C4","B060AEC9-FC23-4160-97BD-0EA6D02EF65F","F9B9CD4A-97A4-4C66-A5E2-0B00F30BC671","C9849C79-3846-46D0-80BA-BA261D8E478B","A10D7D62-90AC-46B5-A30C-82BB510B8963","84A8D731-A0DD-4003-A0BB-9347DCBF851D","2BF8CD79-EEA1-432C-9F92-95AE879C3127","D604C877-0B58-4A31-A32F-2EE3DBD33AD8","E385E3E1-9E7F-469E-88A1-F8E3748BDE1C","537EB808-1B64-4548-8FA0-30E87736F2BB","8D41242B-2739-42EF-8E55-6D60FCC14325","F5CB6D3E-B508-4C48-8518-D7CD265D53C0","66AF9BB4-15CD-4F78-B66D-8E4416F04854","FA1BD18C-103D-45A8-8B41-C5189F2F9DD5","A83C1D4B-9056-4E9B-ABF7-299A8C9D4C20","BFE0783C-CDC4-4A17-A24D-2096078B0BC9","B8027BBF-A892-4630-9155-A149DCBB47AE","7339746F-2EE4-4D72-97BE-DEC3D90F90FF","E6D109C5-9AC9-4882-BE23-370DE5708179","79D3222D-6F7E-4C22-A7C1-1E85871D9004","74961272-5817-4837-8767-661FCDDCF0B2","917BA83A-65E5-4E49-BE14-8D2B9EECD23C","C2FF7232-947B-4D4E-9FCC-2989E1E160EC","243C1C41-0C3B-4823-9809-877A3AF72D31","4D7D5E01-4B30-43A7-B5F9-9371360936C2","DA2F94E0-D0F7-4D10-835D-93242B2CFE08","40DB8CC0-0302-418F-87D6-2CA973AD869B","9E88D2CE-E362-47D6-9584-8A4CC963B8B3","7FF0A950-4962-4D81-93FC-1E2C5FFC0C39","5AB0D778-4A31-4CBE-90C0-BAFE26192195","8080EBA2-1258-4E47-A8B0-693EA7717F4D"],"_ClipMode":"visible","isPressed":false,"layout":{"__isSmartRef__":true,"id":3784},"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","distanceToDragEvent":"lively.pt(54.9,-11.0)","_Position":"lively.pt(275.8,1.6)"},"3759":{"submorphs":[],"scripts":[],"id":"F9F4D90A-7525-4FF9-BD5C-6F77C9444884","shape":{"__isSmartRef__":true,"id":3760},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","padding","_Padding"],"_MaxTextWidth":132.44,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":3758},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":3761}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":3763},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":132.44,"_MinTextHeight":null,"derivationIds":[10240,"AA394563-1FE1-46BE-A302-CDF1F1698FF9","BA77FDFB-DCF3-4B29-9E35-3EF885AB13E1","34730F21-CF6D-441C-AA28-A129C2D0D547","DE85B79E-5780-4D75-9FFC-C4F19B0C5623","6EC51558-7C5D-4360-8E07-EC94D308F8C9","B638F982-D190-42F4-B954-6EB4473A2BCA","75991A7A-F155-4DC4-AA4A-CA97ABBE5293","77A09ABE-AD2C-4FB0-8014-523DEE67BE9C","762B7392-905B-4D97-B038-6D6DADAFE751","F6FB38EF-789B-4BF6-8579-3BB973540799","B00DE7AB-1FB9-4DF2-9935-7D964CD4E254","21C741A3-F652-4D6A-B27C-686499B089AC","955C1040-A6DF-4766-9E40-73E4BD0F33C7","8B39A4D4-38BE-4BC0-BBFF-6C78B8BC3D3F","AB5988E6-6A57-4E11-BF4E-671609BF85FB","38207FEB-CD6E-4651-B8B8-FFECC5DD4CF2","DD28F7D4-5CD6-436A-8FB0-E4D4F2AC9D6F","179D510E-3EC3-4D5E-94AA-4E982979410D","69B36BBD-5A83-42FF-9E43-48B7A9E826B6","8461D336-DB2B-4FF7-B666-75C832875BAA","CCB0FA12-241D-4E18-9343-F348070EB4EC","4E38E6E7-2A73-4927-80A5-C2EE178486C9","D03DDAAE-78D8-43A7-B8E5-BCEFB5FA2B67","326E49EC-17E9-4E31-A5A1-57187E3C5DC4","D51BA0C6-08B4-4964-BA8D-08C11DA14A9E","7A353454-3454-4B7F-8628-462A88F01E8F","D8014B95-256F-417B-9237-A4DD7FDF6E63","87D87893-FAF2-4168-96EB-5912481725A8","57287A20-82AD-4007-AFAC-26B396DA5D0E","360A71B5-1EE1-4C54-8F1D-2208F2D5639A","AD8D6B99-C573-48E4-BA99-2F0FF17018C4","0F964045-D3C2-4FF8-8080-4CCF9F29C557","3FC73231-32B5-44CF-A9F9-4B503CC97819","13164724-D65E-43A0-B381-70B978A3FBB3","13496C30-6784-4C57-A319-3D7B4EE41B5E","36102DFD-62FE-48BB-A369-7EB33975218B","D8E4475D-C055-460A-A351-2EA348E030AF","963818CE-DF11-4256-87B1-4AAAB573497F"],"_Scale":1,"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)"},"3760":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(132.4,25.8)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"3761":{"style":{"__isSmartRef__":true,"id":3762},"chunkOwner":{"__isSmartRef__":true,"id":3759},"storedString":"step over","_id":"_209","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3762":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3763":{"morph":{"__isSmartRef__":true,"id":3759},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3764":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":3765},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(132.4,25.8)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"3765":{"stops":[{"__isSmartRef__":true,"id":3766},{"__isSmartRef__":true,"id":3767},{"__isSmartRef__":true,"id":3768},{"__isSmartRef__":true,"id":3769}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3766":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3767":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3768":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3769":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"3770":{"stops":[{"__isSmartRef__":true,"id":3771},{"__isSmartRef__":true,"id":3772},{"__isSmartRef__":true,"id":3773},{"__isSmartRef__":true,"id":3774}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3771":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3772":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"3773":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"3774":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"3775":{"stops":[{"__isSmartRef__":true,"id":3776},{"__isSmartRef__":true,"id":3777},{"__isSmartRef__":true,"id":3778},{"__isSmartRef__":true,"id":3779}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3776":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"3777":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"3778":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"3779":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"3780":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"3781":{"sourceObj":{"__isSmartRef__":true,"id":3758},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3558},"targetMethodName":"stepOver","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3782},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3782":{"source":{"__isSmartRef__":true,"id":3758},"target":{"__isSmartRef__":true,"id":3558}},"3783":{"morph":{"__isSmartRef__":true,"id":3758},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3784":{"resizeWidth":true,"resizeHeight":true},"3785":{"submorphs":[{"__isSmartRef__":true,"id":3786}],"scripts":[],"id":"69ECFBC2-4245-4C1B-9005-A689AA983E6B","shape":{"__isSmartRef__":true,"id":3791},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3797},"lighterFill":{"__isSmartRef__":true,"id":3802},"label":{"__isSmartRef__":true,"id":3786},"name":"RestartButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":3807},"attributeConnections":[{"__isSmartRef__":true,"id":3808}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":3810},"__serializedExpressions__":["distanceToDragEvent","_Position"],"isCopyMorphRef":true,"morphRefId":1,"derivationIds":[10239,"0D171D50-5EE7-438B-938F-21F23AE8D86F","B847D9EE-8E1B-4BF4-8F1E-EFAE1F9F28D8","22E024F8-62B4-44E4-A9C2-4FFFF4926855","E0E44B1B-FA92-485E-A932-641B86C954AF","F49E59B8-8654-4423-8E90-B9E554AA8BDA","736BBFAF-9373-4C45-8790-01E9D81F0221","242B5DBF-5C62-4B77-BCBF-1EF272D1A8D7","FACF9E84-CA9F-4A54-A25A-1F71F1A590C4","B060AEC9-FC23-4160-97BD-0EA6D02EF65F","F9B9CD4A-97A4-4C66-A5E2-0B00F30BC671","C9849C79-3846-46D0-80BA-BA261D8E478B","A10D7D62-90AC-46B5-A30C-82BB510B8963","84A8D731-A0DD-4003-A0BB-9347DCBF851D","2BF8CD79-EEA1-432C-9F92-95AE879C3127","D604C877-0B58-4A31-A32F-2EE3DBD33AD8","E385E3E1-9E7F-469E-88A1-F8E3748BDE1C","537EB808-1B64-4548-8FA0-30E87736F2BB","8D41242B-2739-42EF-8E55-6D60FCC14325","F5CB6D3E-B508-4C48-8518-D7CD265D53C0","66AF9BB4-15CD-4F78-B66D-8E4416F04854","FA1BD18C-103D-45A8-8B41-C5189F2F9DD5","A83C1D4B-9056-4E9B-ABF7-299A8C9D4C20","BFE0783C-CDC4-4A17-A24D-2096078B0BC9","B8027BBF-A892-4630-9155-A149DCBB47AE","7339746F-2EE4-4D72-97BE-DEC3D90F90FF","E6D109C5-9AC9-4882-BE23-370DE5708179","79D3222D-6F7E-4C22-A7C1-1E85871D9004","74961272-5817-4837-8767-661FCDDCF0B2","00A282DA-E6E4-444F-8C50-BB5A1AD2B0E3","56D09BCA-B3F0-4A14-B0FD-4B1EA62347CF","6CE8A34F-991C-42C5-8F02-F1917B29FDB6","3F9FB08E-B24D-4F4E-BFFD-AD2E1934F637","ACD8E7FB-97EF-431A-A484-D2E31B5698DE","FFD3B291-B327-417A-B11A-2D867A2CEB3C","00F69A3C-BC33-4C10-9CDE-7DE188C8F161","9AB1519C-21EA-49C5-BCCA-ECD4164EBFAB","EDDBFFBC-F2C0-44F7-AA19-63BACB29C8D1","33AE3E05-0BDC-4832-BC3F-FB861772D052","D6FABACD-9FCE-41A8-A91C-DE0FB1BCC94A"],"owner":{"__isSmartRef__":true,"id":3703},"_ClipMode":"visible","isPressed":false,"layout":{"__isSmartRef__":true,"id":3811},"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","distanceToDragEvent":"lively.pt(54.9,-11.0)","_Position":"lively.pt(412.9,1.6)"},"3786":{"submorphs":[],"scripts":[],"id":"7F8A2653-BA76-4E08-9E3D-A28A653A509F","shape":{"__isSmartRef__":true,"id":3787},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","padding","_Padding"],"_MaxTextWidth":132.44,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":3785},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":3788}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":3790},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":132.44,"_MinTextHeight":null,"derivationIds":[10240,"AA394563-1FE1-46BE-A302-CDF1F1698FF9","BA77FDFB-DCF3-4B29-9E35-3EF885AB13E1","34730F21-CF6D-441C-AA28-A129C2D0D547","DE85B79E-5780-4D75-9FFC-C4F19B0C5623","6EC51558-7C5D-4360-8E07-EC94D308F8C9","B638F982-D190-42F4-B954-6EB4473A2BCA","75991A7A-F155-4DC4-AA4A-CA97ABBE5293","77A09ABE-AD2C-4FB0-8014-523DEE67BE9C","762B7392-905B-4D97-B038-6D6DADAFE751","F6FB38EF-789B-4BF6-8579-3BB973540799","B00DE7AB-1FB9-4DF2-9935-7D964CD4E254","21C741A3-F652-4D6A-B27C-686499B089AC","955C1040-A6DF-4766-9E40-73E4BD0F33C7","8B39A4D4-38BE-4BC0-BBFF-6C78B8BC3D3F","AB5988E6-6A57-4E11-BF4E-671609BF85FB","38207FEB-CD6E-4651-B8B8-FFECC5DD4CF2","DD28F7D4-5CD6-436A-8FB0-E4D4F2AC9D6F","179D510E-3EC3-4D5E-94AA-4E982979410D","69B36BBD-5A83-42FF-9E43-48B7A9E826B6","8461D336-DB2B-4FF7-B666-75C832875BAA","CCB0FA12-241D-4E18-9343-F348070EB4EC","4E38E6E7-2A73-4927-80A5-C2EE178486C9","D03DDAAE-78D8-43A7-B8E5-BCEFB5FA2B67","326E49EC-17E9-4E31-A5A1-57187E3C5DC4","D51BA0C6-08B4-4964-BA8D-08C11DA14A9E","7A353454-3454-4B7F-8628-462A88F01E8F","D8014B95-256F-417B-9237-A4DD7FDF6E63","87D87893-FAF2-4168-96EB-5912481725A8","9798DAB8-B7B4-40D3-B124-73494B64B818","5BD4E7F2-CE67-45A6-8DA0-D2225B4D9DF6","15812EA4-DDBD-43FA-8194-789D6B56429F","AFD05303-CEF2-4A60-8F67-28FC81B1AF13","34113AD0-1B30-4226-B26B-08E6A0AC757C","676F9C0E-0911-46C0-9799-49DB014C5687","F56E0F29-40CA-43F2-9CF9-C2B8CB6986B6","F511CA14-E55B-41D0-A76C-1484BF297430","6AE3778F-075C-4209-97E7-6FCE5271D8E3","1322A333-F66D-4602-B1D7-73B0121CA044","5370B8CE-DD74-4878-AF81-9CC70B027AC8"],"_Scale":1,"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)"},"3787":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(132.4,25.8)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"3788":{"style":{"__isSmartRef__":true,"id":3789},"chunkOwner":{"__isSmartRef__":true,"id":3786},"storedString":"restart","_id":"_210","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3789":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3790":{"morph":{"__isSmartRef__":true,"id":3786},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3791":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":3792},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(132.4,25.8)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"3792":{"stops":[{"__isSmartRef__":true,"id":3793},{"__isSmartRef__":true,"id":3794},{"__isSmartRef__":true,"id":3795},{"__isSmartRef__":true,"id":3796}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3793":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3794":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3795":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3796":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"3797":{"stops":[{"__isSmartRef__":true,"id":3798},{"__isSmartRef__":true,"id":3799},{"__isSmartRef__":true,"id":3800},{"__isSmartRef__":true,"id":3801}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3798":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3799":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"3800":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"3801":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"3802":{"stops":[{"__isSmartRef__":true,"id":3803},{"__isSmartRef__":true,"id":3804},{"__isSmartRef__":true,"id":3805},{"__isSmartRef__":true,"id":3806}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3803":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"3804":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"3805":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"3806":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"3807":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"3808":{"sourceObj":{"__isSmartRef__":true,"id":3785},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3558},"targetMethodName":"restart","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3809},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3809":{"source":{"__isSmartRef__":true,"id":3785},"target":{"__isSmartRef__":true,"id":3558}},"3810":{"morph":{"__isSmartRef__":true,"id":3785},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3811":{"resizeWidth":true,"resizeHeight":true},"3812":{"submorphs":[{"__isSmartRef__":true,"id":3813}],"scripts":[],"id":"3900C443-E4A1-4480-BD6D-F01B16AB47F6","shape":{"__isSmartRef__":true,"id":3818},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3824},"lighterFill":{"__isSmartRef__":true,"id":3829},"label":{"__isSmartRef__":true,"id":3813},"name":"BrowseButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":3834},"attributeConnections":[{"__isSmartRef__":true,"id":3835}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":3837},"__serializedExpressions__":["distanceToDragEvent","_Position"],"isCopyMorphRef":true,"morphRefId":1,"derivationIds":[10239,"0D171D50-5EE7-438B-938F-21F23AE8D86F","B847D9EE-8E1B-4BF4-8F1E-EFAE1F9F28D8","22E024F8-62B4-44E4-A9C2-4FFFF4926855","E0E44B1B-FA92-485E-A932-641B86C954AF","F49E59B8-8654-4423-8E90-B9E554AA8BDA","736BBFAF-9373-4C45-8790-01E9D81F0221","242B5DBF-5C62-4B77-BCBF-1EF272D1A8D7","FACF9E84-CA9F-4A54-A25A-1F71F1A590C4","B060AEC9-FC23-4160-97BD-0EA6D02EF65F","F9B9CD4A-97A4-4C66-A5E2-0B00F30BC671","C9849C79-3846-46D0-80BA-BA261D8E478B","A10D7D62-90AC-46B5-A30C-82BB510B8963","84A8D731-A0DD-4003-A0BB-9347DCBF851D","2BF8CD79-EEA1-432C-9F92-95AE879C3127","D604C877-0B58-4A31-A32F-2EE3DBD33AD8","E385E3E1-9E7F-469E-88A1-F8E3748BDE1C","537EB808-1B64-4548-8FA0-30E87736F2BB","8D41242B-2739-42EF-8E55-6D60FCC14325","F5CB6D3E-B508-4C48-8518-D7CD265D53C0","66AF9BB4-15CD-4F78-B66D-8E4416F04854","FA1BD18C-103D-45A8-8B41-C5189F2F9DD5","A83C1D4B-9056-4E9B-ABF7-299A8C9D4C20","BFE0783C-CDC4-4A17-A24D-2096078B0BC9","B8027BBF-A892-4630-9155-A149DCBB47AE","7339746F-2EE4-4D72-97BE-DEC3D90F90FF","E6D109C5-9AC9-4882-BE23-370DE5708179","79D3222D-6F7E-4C22-A7C1-1E85871D9004","74961272-5817-4837-8767-661FCDDCF0B2","00A282DA-E6E4-444F-8C50-BB5A1AD2B0E3","56D09BCA-B3F0-4A14-B0FD-4B1EA62347CF","6CE8A34F-991C-42C5-8F02-F1917B29FDB6","3F9FB08E-B24D-4F4E-BFFD-AD2E1934F637","ACD8E7FB-97EF-431A-A484-D2E31B5698DE","FFD3B291-B327-417A-B11A-2D867A2CEB3C","00F69A3C-BC33-4C10-9CDE-7DE188C8F161","9AB1519C-21EA-49C5-BCCA-ECD4164EBFAB","EDDBFFBC-F2C0-44F7-AA19-63BACB29C8D1","33AE3E05-0BDC-4832-BC3F-FB861772D052","6E5ED403-A7BE-4D6C-8137-4A3A215DBF43","04078B12-CBAF-4B40-A455-A903324FE6EC"],"_ClipMode":"visible","isPressed":false,"layout":{"__isSmartRef__":true,"id":3838},"owner":{"__isSmartRef__":true,"id":3703},"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","distanceToDragEvent":"lively.pt(54.9,-11.0)","_Position":"lively.pt(550.0,1.6)"},"3813":{"submorphs":[],"scripts":[],"id":"AC5B35E0-B76C-4F57-8B43-A61B58AFA315","shape":{"__isSmartRef__":true,"id":3814},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","padding","_Padding"],"_MaxTextWidth":132.44,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":3812},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":3815}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":3817},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":132.44,"_MinTextHeight":null,"derivationIds":[10240,"AA394563-1FE1-46BE-A302-CDF1F1698FF9","BA77FDFB-DCF3-4B29-9E35-3EF885AB13E1","34730F21-CF6D-441C-AA28-A129C2D0D547","DE85B79E-5780-4D75-9FFC-C4F19B0C5623","6EC51558-7C5D-4360-8E07-EC94D308F8C9","B638F982-D190-42F4-B954-6EB4473A2BCA","75991A7A-F155-4DC4-AA4A-CA97ABBE5293","77A09ABE-AD2C-4FB0-8014-523DEE67BE9C","762B7392-905B-4D97-B038-6D6DADAFE751","F6FB38EF-789B-4BF6-8579-3BB973540799","B00DE7AB-1FB9-4DF2-9935-7D964CD4E254","21C741A3-F652-4D6A-B27C-686499B089AC","955C1040-A6DF-4766-9E40-73E4BD0F33C7","8B39A4D4-38BE-4BC0-BBFF-6C78B8BC3D3F","AB5988E6-6A57-4E11-BF4E-671609BF85FB","38207FEB-CD6E-4651-B8B8-FFECC5DD4CF2","DD28F7D4-5CD6-436A-8FB0-E4D4F2AC9D6F","179D510E-3EC3-4D5E-94AA-4E982979410D","69B36BBD-5A83-42FF-9E43-48B7A9E826B6","8461D336-DB2B-4FF7-B666-75C832875BAA","CCB0FA12-241D-4E18-9343-F348070EB4EC","4E38E6E7-2A73-4927-80A5-C2EE178486C9","D03DDAAE-78D8-43A7-B8E5-BCEFB5FA2B67","326E49EC-17E9-4E31-A5A1-57187E3C5DC4","D51BA0C6-08B4-4964-BA8D-08C11DA14A9E","7A353454-3454-4B7F-8628-462A88F01E8F","D8014B95-256F-417B-9237-A4DD7FDF6E63","87D87893-FAF2-4168-96EB-5912481725A8","9798DAB8-B7B4-40D3-B124-73494B64B818","5BD4E7F2-CE67-45A6-8DA0-D2225B4D9DF6","15812EA4-DDBD-43FA-8194-789D6B56429F","AFD05303-CEF2-4A60-8F67-28FC81B1AF13","34113AD0-1B30-4226-B26B-08E6A0AC757C","676F9C0E-0911-46C0-9799-49DB014C5687","F56E0F29-40CA-43F2-9CF9-C2B8CB6986B6","F511CA14-E55B-41D0-A76C-1484BF297430","6AE3778F-075C-4209-97E7-6FCE5271D8E3","1322A333-F66D-4602-B1D7-73B0121CA044","311B4E39-79B1-47C9-BED8-57F9A0CE0FCE","F2C68368-EFB8-426E-AE91-3FDEC04FA674"],"_Scale":1,"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)"},"3814":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(132.4,25.8)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"3815":{"style":{"__isSmartRef__":true,"id":3816},"chunkOwner":{"__isSmartRef__":true,"id":3813},"storedString":"browse","_id":"_211","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3816":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3817":{"morph":{"__isSmartRef__":true,"id":3813},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3818":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":3819},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(132.4,25.8)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"3819":{"stops":[{"__isSmartRef__":true,"id":3820},{"__isSmartRef__":true,"id":3821},{"__isSmartRef__":true,"id":3822},{"__isSmartRef__":true,"id":3823}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3820":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3821":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3822":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3823":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"3824":{"stops":[{"__isSmartRef__":true,"id":3825},{"__isSmartRef__":true,"id":3826},{"__isSmartRef__":true,"id":3827},{"__isSmartRef__":true,"id":3828}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3825":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3826":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"3827":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"3828":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"3829":{"stops":[{"__isSmartRef__":true,"id":3830},{"__isSmartRef__":true,"id":3831},{"__isSmartRef__":true,"id":3832},{"__isSmartRef__":true,"id":3833}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3830":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"3831":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"3832":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"3833":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"3834":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"3835":{"sourceObj":{"__isSmartRef__":true,"id":3812},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3558},"targetMethodName":"browse","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3836},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3836":{"source":{"__isSmartRef__":true,"id":3812},"target":{"__isSmartRef__":true,"id":3558}},"3837":{"morph":{"__isSmartRef__":true,"id":3812},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3838":{"resizeWidth":true,"resizeHeight":true},"3839":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"_NodeClass":["morph","box"],"_NodeId":"morph-3e7444d4-c751-49b9-82ce-ecea12453dad","_Fill":null,"_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(684.1,29.0)","_Padding":"lively.rect(0,0,0,0)"},"3840":{"morph":{"__isSmartRef__":true,"id":3703},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3841":{"layouter":{"__isSmartRef__":true,"id":3842},"resizeWidth":true,"__serializedExpressions__":["extentWithoutPlaceholder"],"extentWithoutPlaceholder":"lively.pt(684.1,29.0)"},"3842":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":1.59,"spacing":4.670000000000001,"container":{"__isSmartRef__":true,"id":3703},"__LivelyClassName__":"lively.morphic.Layout.HorizontalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"3843":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill","_BorderColor"],"_NodeClass":["morph","box"],"_NodeId":"morph-709e7c40-7177-48fe-b7ed-7dafe44a556b","_BorderWidth":1,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(703.0,522.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(255,255,255)","_BorderColor":"Color.rgb(95,94,95)"},"3844":{"morph":{"__isSmartRef__":true,"id":3558},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3845":{"layouter":{"__isSmartRef__":true,"id":3846},"__serializedExpressions__":["extentWithoutPlaceholder"],"resizeWidth":true,"resizeHeight":true,"extentWithoutPlaceholder":"lively.pt(703.0,522.0)"},"3846":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":9.47,"spacing":7.845000000000001,"container":{"__isSmartRef__":true,"id":3558},"__LivelyClassName__":"lively.morphic.Layout.VerticalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"3847":{"reset":{"__isSmartRef__":true,"id":3848},"restart":{"__isSmartRef__":true,"id":3852},"resume":{"__isSmartRef__":true,"id":3856},"setCurrentFrame":{"__isSmartRef__":true,"id":3860},"setTopFrame":{"__isSmartRef__":true,"id":3864},"stepInto":{"__isSmartRef__":true,"id":3868},"stepOver":{"__isSmartRef__":true,"id":3872},"browse":{"__isSmartRef__":true,"id":3876}},"3848":{"varMapping":{"__isSmartRef__":true,"id":3849},"source":"function reset() {\n this.doNotSerialize = ['topFrame', 'currentFrame'];\n this.get(\"FrameList\").setList([]);\n this.get(\"FrameSource\").reset();\n this.get(\"MappingList\").setList([]);\n}","funcProperties":{"__isSmartRef__":true,"id":3850},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3849":{"this":{"__isSmartRef__":true,"id":3558}},"3850":{"timestamp":{"__isSmartRef__":true,"id":3851},"user":"cschuster","tags":[]},"3851":{"isSerializedDate":true,"string":"Fri Jun 22 2012 02:18:58 GMT+0200 (CEST)"},"3852":{"varMapping":{"__isSmartRef__":true,"id":3853},"source":"function restart() {\n var frame = this.currentFrame;\n lively.ast.doWithHalt(function() {\n frame.restart();\n }, this.setTopFrame.bind(this));\n}","funcProperties":{"__isSmartRef__":true,"id":3854},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3853":{"this":{"__isSmartRef__":true,"id":3558}},"3854":{"timestamp":{"__isSmartRef__":true,"id":3855},"user":"cschuster","tags":[]},"3855":{"isSerializedDate":true,"string":"Wed Jun 27 2012 01:49:33 GMT+0200 (CEST)"},"3856":{"varMapping":{"__isSmartRef__":true,"id":3857},"source":"function resume() {\n lively.ast.doWithHalt((function() {\n this.topFrame.resume();\n this.owner.remove(); // Close debugger upon successful execution\n }).bind(this), this.setTopFrame.bind(this));\n}","funcProperties":{"__isSmartRef__":true,"id":3858},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3857":{"this":{"__isSmartRef__":true,"id":3558}},"3858":{"timestamp":{"__isSmartRef__":true,"id":3859},"user":"cschuster","tags":[]},"3859":{"isSerializedDate":true,"string":"Wed Jun 27 2012 01:49:49 GMT+0200 (CEST)"},"3860":{"varMapping":{"__isSmartRef__":true,"id":3861},"source":"function setCurrentFrame(frame) {\n this.currentFrame = frame;\n this.get(\"FrameSource\").showSource(frame);\n this.get(\"MappingList\").updateList(\n frame.listItemsForIntrospection()\n );\n if (frame.isResuming()) {\n this.get(\"ContinueButton\").isActive = true;\n this.get(\"StepIntoButton\").isActive = true;\n this.get(\"StepOverButton\").isActive = true;\n this.get(\"RestartButton\").isActive = true;\n } else {\n this.get(\"ContinueButton\").isActive = false;\n this.get(\"StepIntoButton\").isActive = false;\n this.get(\"StepOverButton\").isActive = false;\n this.get(\"RestartButton\").isActive = false;\n }\n}","funcProperties":{"__isSmartRef__":true,"id":3862},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3861":{"this":{"__isSmartRef__":true,"id":3558}},"3862":{"timestamp":{"__isSmartRef__":true,"id":3863},"user":"cschuster","tags":[]},"3863":{"isSerializedDate":true,"string":"Fri Jun 22 2012 02:12:24 GMT+0200 (CEST)"},"3864":{"varMapping":{"__isSmartRef__":true,"id":3865},"source":"function setTopFrame(topFrame) {\n this.topFrame = topFrame;\n var frames = [];\n var frame = topFrame;\n do {\n var name = frame.getFuncName();\n frames.push({\n isListItem: true,\n string: frame.isResuming() ? name : name + \" [native]\",\n value: frame\n });\n } while (frame = frame.getCaller());\n this.get(\"FrameList\").updateList(frames);\n this.get(\"FrameList\").setSelection(topFrame);\n return true;\n}","funcProperties":{"__isSmartRef__":true,"id":3866},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3865":{"this":{"__isSmartRef__":true,"id":3558}},"3866":{"timestamp":{"__isSmartRef__":true,"id":3867},"user":"cschuster","tags":[]},"3867":{"isSerializedDate":true,"string":"Wed Jun 27 2012 01:53:45 GMT+0200 (CEST)"},"3868":{"varMapping":{"__isSmartRef__":true,"id":3869},"source":"function stepInto() {\n var frame = this.currentFrame;\n lively.ast.doWithHalt(function() {\n frame.stepToNextStatement(true);\n }, this.setTopFrame.bind(this));\n}","funcProperties":{"__isSmartRef__":true,"id":3870},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3869":{"this":{"__isSmartRef__":true,"id":3558}},"3870":{"timestamp":{"__isSmartRef__":true,"id":3871},"user":"cschuster","tags":[]},"3871":{"isSerializedDate":true,"string":"Wed Jun 27 2012 01:50:05 GMT+0200 (CEST)"},"3872":{"varMapping":{"__isSmartRef__":true,"id":3873},"source":"function stepOver() {\n var frame = this.currentFrame;\n lively.ast.doWithHalt(function() {\n frame.stepToNextStatement();\n }, this.setTopFrame.bind(this));\n}","funcProperties":{"__isSmartRef__":true,"id":3874},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3873":{"this":{"__isSmartRef__":true,"id":3558}},"3874":{"timestamp":{"__isSmartRef__":true,"id":3875},"user":"cschuster","tags":[]},"3875":{"isSerializedDate":true,"string":"Wed Jun 27 2012 01:50:11 GMT+0200 (CEST)"},"3876":{"varMapping":{"__isSmartRef__":true,"id":3877},"source":"function browse() {\n this.currentFrame && this.currentFrame.func.browse();\n}","funcProperties":{"__isSmartRef__":true,"id":3878},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3877":{"this":{"__isSmartRef__":true,"id":3558}},"3878":{"timestamp":{"__isSmartRef__":true,"id":3879},"user":"cschuster","tags":[]},"3879":{"isSerializedDate":true,"string":"Wed Jun 27 2012 02:27:39 GMT+0200 (CEST)"},"3880":{"submorphs":[{"__isSmartRef__":true,"id":3881},{"__isSmartRef__":true,"id":3887},{"__isSmartRef__":true,"id":3905},{"__isSmartRef__":true,"id":3922}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3940},"derivationIds":[null,"87D50AB5-0AD7-477C-842B-91D9B3B1C3A1","0F9428A1-0E40-4190-8036-8E64AEFC6998","33A707C6-2582-4804-9C66-EA949DA15C3F"],"id":"941C1DCD-9259-4291-8111-AE310C32E2AC","eventHandler":{"__isSmartRef__":true,"id":3944},"_ClipMode":"visible","droppingEnabled":false,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":3945},"__serializedExpressions__":["_Position"],"windowMorph":{"__isSmartRef__":true,"id":3557},"label":{"__isSmartRef__":true,"id":3881},"closeButton":{"__isSmartRef__":true,"id":3887},"menuButton":{"__isSmartRef__":true,"id":3905},"collapseButton":{"__isSmartRef__":true,"id":3922},"owner":{"__isSmartRef__":true,"id":3557},"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"3881":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3882},"derivationIds":[null,"E9CF0F1C-52D9-468B-852E-66A19C00A329","4506C4FD-BF9E-44E7-A01E-A664A2F587F1","461A7BE9-809C-4BF3-AE05-A034D02B5CA5"],"id":"33ACB607-EC1B-41A2-99F5-9B1FCA856474","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3883}],"eventHandler":{"__isSmartRef__":true,"id":3885},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":3886},"__serializedExpressions__":["_TextColor","_Position"],"_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3880},"_MaxTextWidth":645.4712,"_MinTextWidth":645.4712,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","showsHalos":false,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(102,102,102)","_Position":"lively.pt(20.0,3.0)"},"3882":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["morph","text"],"_NodeId":"morph-e9cf0f1c-52d9-468b-852e-66a19c00a329","_BorderRadius":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(645.5,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3883":{"style":{"__isSmartRef__":true,"id":3884},"chunkOwner":{"__isSmartRef__":true,"id":3881},"_id":"_1508","storedString":"Debugger","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3884":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","fontWeight":"normal","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3885":{"morph":{"__isSmartRef__":true,"id":3881},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3886":{"resizeWidth":true},"3887":{"submorphs":[{"__isSmartRef__":true,"id":3888}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3893},"derivationIds":[null,"434EA8EA-31DA-421C-A89A-1A8DE590183B","EDA1452E-FCA0-417F-81AF-357DF0860EA4","63CB3C4A-3281-4B89-8F1E-2A5F8A762F62"],"id":"E3D0D20F-AC68-4C92-9B2E-0C57AF1BBB72","eventHandler":{"__isSmartRef__":true,"id":3899},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3888},"owner":{"__isSmartRef__":true,"id":3880},"layout":{"__isSmartRef__":true,"id":3900},"attributeConnections":[{"__isSmartRef__":true,"id":3901},{"__isSmartRef__":true,"id":3903}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(684.5,3.0)"},"3888":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3889},"derivationIds":[null,"21793BA9-7623-471E-A8A9-F968CE35CDF1","80D5246A-D46A-4ACB-9A5E-6EA8122FEA1F","76BE97C9-F83A-454A-9C4C-F38EB413F03F"],"id":"15BE3C91-865C-484B-BD09-530CED640EF2","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3890}],"eventHandler":{"__isSmartRef__":true,"id":3892},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3887},"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3889":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["morph","text"],"_NodeId":"morph-21793ba9-7623-471e-a8a9-f968ce35cdf1","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(15.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3890":{"style":{"__isSmartRef__":true,"id":3891},"chunkOwner":{"__isSmartRef__":true,"id":3888},"storedString":"X","_id":"_213","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3891":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3892":{"morph":{"__isSmartRef__":true,"id":3888},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3893":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_StrokeOpacity":0,"_BorderRadius":5,"_NodeClass":["morph","button","windowcontrol"],"_NodeId":"morph-434ea8ea-31da-421c-a89a-1a8de590183b","_Fill":{"__isSmartRef__":true,"id":3894},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3894":{"stops":[{"__isSmartRef__":true,"id":3895},{"__isSmartRef__":true,"id":3896},{"__isSmartRef__":true,"id":3897},{"__isSmartRef__":true,"id":3898}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3895":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3896":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3897":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3898":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"3899":{"morph":{"__isSmartRef__":true,"id":3887},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3900":{"moveHorizontal":true},"3901":{"sourceObj":{"__isSmartRef__":true,"id":3887},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3557},"targetMethodName":"getCloseHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3902},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3902":{"source":{"__isSmartRef__":true,"id":3887},"target":{"__isSmartRef__":true,"id":3557}},"3903":{"sourceObj":{"__isSmartRef__":true,"id":3887},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3557},"targetMethodName":"initiateShutdown","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3904},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3904":{"source":{"__isSmartRef__":true,"id":3887},"target":{"__isSmartRef__":true,"id":3557}},"3905":{"submorphs":[{"__isSmartRef__":true,"id":3906}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3911},"derivationIds":[null,"61664F00-2715-4415-9B91-F4B3319C66E0","2E52C7C1-C1D4-4545-B815-792DCE85FDDB","C803FBED-EB59-49C5-80E2-85A2A1A86C79"],"id":"173452A0-B553-4629-BD9F-15F279647D0F","eventHandler":{"__isSmartRef__":true,"id":3917},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3906},"owner":{"__isSmartRef__":true,"id":3880},"attributeConnections":[{"__isSmartRef__":true,"id":3918},{"__isSmartRef__":true,"id":3920}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"3906":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3907},"derivationIds":[null,"CD9D4D1A-B4B7-4CF5-B4FC-19ABEA546843","1408012A-0311-4472-8017-A8F70758335C","3A29A442-FA17-4B32-8D79-861BA886225F"],"id":"80F5587F-DE03-423E-B83C-1BDA741F07E2","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3908}],"eventHandler":{"__isSmartRef__":true,"id":3910},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3905},"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedExpressions__":["_TextColor"],"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"3907":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["morph","text"],"_NodeId":"morph-cd9d4d1a-b4b7-4cf5-b4fc-19abea546843","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(16.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3908":{"style":{"__isSmartRef__":true,"id":3909},"chunkOwner":{"__isSmartRef__":true,"id":3906},"storedString":"M","_id":"_214","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3909":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3910":{"morph":{"__isSmartRef__":true,"id":3906},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3911":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_StrokeOpacity":0,"_BorderRadius":5,"_NodeClass":["morph","button","windowcontrol"],"_NodeId":"morph-61664f00-2715-4415-9b91-f4b3319c66e0","_Fill":{"__isSmartRef__":true,"id":3912},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3912":{"stops":[{"__isSmartRef__":true,"id":3913},{"__isSmartRef__":true,"id":3914},{"__isSmartRef__":true,"id":3915},{"__isSmartRef__":true,"id":3916}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3913":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3914":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3915":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3916":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"3917":{"morph":{"__isSmartRef__":true,"id":3905},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3918":{"sourceObj":{"__isSmartRef__":true,"id":3905},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3557},"targetMethodName":"getMenuHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3919},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3919":{"source":{"__isSmartRef__":true,"id":3905},"target":{"__isSmartRef__":true,"id":3557}},"3920":{"sourceObj":{"__isSmartRef__":true,"id":3905},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3557},"targetMethodName":"showTargetMorphMenu","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3921},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3921":{"source":{"__isSmartRef__":true,"id":3905},"target":{"__isSmartRef__":true,"id":3557}},"3922":{"submorphs":[{"__isSmartRef__":true,"id":3923}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3928},"derivationIds":[null,"E489F3EA-E148-4F82-BEDC-5EF8FAD6F91B","006791D4-600D-4F4B-B9F1-CFABCF193F45","62B505C9-1A15-4D5D-B23D-175DC6BC04FA"],"id":"2CA78354-48E1-4497-AEA0-E405A4F63BFB","eventHandler":{"__isSmartRef__":true,"id":3934},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3923},"owner":{"__isSmartRef__":true,"id":3880},"layout":{"__isSmartRef__":true,"id":3935},"attributeConnections":[{"__isSmartRef__":true,"id":3936},{"__isSmartRef__":true,"id":3938}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(665.5,3.0)"},"3923":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3924},"derivationIds":[null,"FA5DF48F-8143-4CB3-AC1D-61DED4778A28","23C23F4B-DDC7-4DE9-A3E5-1D913A2870FC","3629E366-84F6-4141-B026-63B27888238F"],"id":"4FBAC4A3-ABAB-4CDD-9D1E-26DAA242CFDF","_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3925}],"eventHandler":{"__isSmartRef__":true,"id":3927},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3922},"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3924":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"_NodeClass":["morph","text"],"_NodeId":"morph-fa5df48f-8143-4cb3-ac1d-61ded4778a28","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3925":{"style":{"__isSmartRef__":true,"id":3926},"chunkOwner":{"__isSmartRef__":true,"id":3923},"storedString":"–","_id":"_215","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3926":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3927":{"morph":{"__isSmartRef__":true,"id":3923},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3928":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_StrokeOpacity":0,"_BorderRadius":5,"_NodeClass":["morph","button","windowcontrol"],"_NodeId":"morph-e489f3ea-e148-4f82-bedc-5ef8fad6f91b","_Fill":{"__isSmartRef__":true,"id":3929},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3929":{"stops":[{"__isSmartRef__":true,"id":3930},{"__isSmartRef__":true,"id":3931},{"__isSmartRef__":true,"id":3932},{"__isSmartRef__":true,"id":3933}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3930":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"3931":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3932":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"3933":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"3934":{"morph":{"__isSmartRef__":true,"id":3922},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3935":{"moveHorizontal":true},"3936":{"sourceObj":{"__isSmartRef__":true,"id":3922},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3557},"targetMethodName":"getCollapseHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3937},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3937":{"source":{"__isSmartRef__":true,"id":3922},"target":{"__isSmartRef__":true,"id":3557}},"3938":{"sourceObj":{"__isSmartRef__":true,"id":3922},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3557},"targetMethodName":"toggleCollapse","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3939},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3939":{"source":{"__isSmartRef__":true,"id":3922},"target":{"__isSmartRef__":true,"id":3557}},"3940":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":3941},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","_NodeClass":["morph","box","titlebar"],"_NodeId":"morph-87d50ab5-0ad7-477c-842b-91d9b3b1c3a1","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(704.5,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(102,102,102)"},"3941":{"stops":[{"__isSmartRef__":true,"id":3942},{"__isSmartRef__":true,"id":3943}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"3942":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(255,255,255)"},"3943":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(163,163,163)"},"3944":{"morph":{"__isSmartRef__":true,"id":3880},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3945":{"resizeWidth":true,"adjustForNewBounds":true},"3946":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3947},"derivationIds":[null,"C80B49C9-DE41-436D-A838-4AC41BE6202B","B92E6C43-D989-4F7E-8126-7DCC0D18318D","ED74D7F3-F740-45A2-9A99-1DF7EE50D1F3","5918A330-89C8-4260-B441-FBD3D4EED182","871EE244-F4F0-4623-9DA7-AADA9701D371","9A9E733D-D2D2-477A-9846-C4E38DD15C1F","4BEBCEB4-9A74-413B-BCC1-0CCD2D322F63","A3E594EF-1961-4B8E-AEE7-C9E7B05383BB","1B552F69-4D70-4C0A-92CE-13F054BBD790"],"id":"8A025150-5A88-40F4-A913-B80113A52DA1","eventHandler":{"__isSmartRef__":true,"id":3951},"_ClipMode":"visible","droppingEnabled":true,"halosEnabled":true,"owner":{"__isSmartRef__":true,"id":3557},"__serializedExpressions__":["_Position"],"dragStartPoint":null,"originalTargetExtent":null,"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3952},"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","_Position":"lively.pt(690.5,529.0)"},"3947":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":3948},{"__isSmartRef__":true,"id":3949},{"__isSmartRef__":true,"id":3950}],"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill"],"_BorderWidth":0,"_BorderColor":null,"_NodeClass":["morph","path"],"_NodeId":"morph-c80b49c9-de41-436d-a838-4ac41be6202b","__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(-1.0,-1.0)","_Extent":"lively.pt(15.0,15.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(204,204,204)"},"3948":{"isAbsolute":true,"x":14,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"3949":{"isAbsolute":true,"x":14,"y":14,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"3950":{"isAbsolute":true,"x":0,"y":14,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"3951":{"morph":{"__isSmartRef__":true,"id":3946},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3952":{"onDragStart":{"__isSmartRef__":true,"id":3953},"onDrag":{"__isSmartRef__":true,"id":3960},"onDragEnd":{"__isSmartRef__":true,"id":3967}},"3953":{"varMapping":{"__isSmartRef__":true,"id":3954},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3959},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3954":{"this":{"__isSmartRef__":true,"id":3946},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3955}},"3955":{"$super":{"__isSmartRef__":true,"id":3956}},"3956":{"varMapping":{"__isSmartRef__":true,"id":3957},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3958},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3957":{"obj":{"__isSmartRef__":true,"id":3946},"name":"onDragStart"},"3958":{},"3959":{},"3960":{"varMapping":{"__isSmartRef__":true,"id":3961},"source":"function onDrag(evt) {\n var moveDelta = evt.mousePoint.subPt(this.dragStartPoint)\n if (evt.isShiftDown()) {\n var maxDelta = Math.max(moveDelta.x, moveDelta.y);\n\t moveDelta = pt(maxDelta, maxDelta);\n };\n this.owner.setExtent(this.originalTargetExtent.addPt(moveDelta));\n this.align(this.bounds().bottomRight(), this.owner.getExtent());\n }","funcProperties":{"__isSmartRef__":true,"id":3966},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3961":{"this":{"__isSmartRef__":true,"id":3946},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3962}},"3962":{"$super":{"__isSmartRef__":true,"id":3963}},"3963":{"varMapping":{"__isSmartRef__":true,"id":3964},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3965},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3964":{"obj":{"__isSmartRef__":true,"id":3946},"name":"onDrag"},"3965":{},"3966":{},"3967":{"varMapping":{"__isSmartRef__":true,"id":3968},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n }","funcProperties":{"__isSmartRef__":true,"id":3973},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3968":{"this":{"__isSmartRef__":true,"id":3946},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3969}},"3969":{"$super":{"__isSmartRef__":true,"id":3970}},"3970":{"varMapping":{"__isSmartRef__":true,"id":3971},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3972},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3971":{"obj":{"__isSmartRef__":true,"id":3946},"name":"onDragEnd"},"3972":{},"3973":{},"3974":{"__serializedExpressions__":["_Padding","_Extent"],"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_NodeClass":["morph","window"],"_NodeId":"morph-284842c2-3db7-4dcd-8be4-2ffe4b777b30","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Padding":"lively.rect(0,0,0,0)","_Extent":"lively.pt(704.5,543.0)"},"3975":{"morph":{"__isSmartRef__":true,"id":3557},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3976":{"adjustForNewBounds":true},"3977":{"partName":"Debugger","requiredModules":[],"comment":"The sixth revision of the Debugger. Supports stepping, eval, restarting and browsing.","changes":[{"__isSmartRef__":true,"id":3978},{"__isSmartRef__":true,"id":3980},{"__isSmartRef__":true,"id":3982},{"__isSmartRef__":true,"id":3984},{"__isSmartRef__":true,"id":3986},{"__isSmartRef__":true,"id":3988},{"__isSmartRef__":true,"id":3990},{"__isSmartRef__":true,"id":3992},{"__isSmartRef__":true,"id":3994},{"__isSmartRef__":true,"id":3996},{"__isSmartRef__":true,"id":3998},{"__isSmartRef__":true,"id":4000},{"__isSmartRef__":true,"id":4002}],"migrationLevel":4,"partsSpaceName":"PartsBin/Debugging","revisionOnLoad":181787,"lastModifiedDate":{"__isSmartRef__":true,"id":4004},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"3978":{"date":{"__isSmartRef__":true,"id":3979},"author":"cschuster","message":"added browse button","id":"0135F838-986A-45C9-AAEC-6E7A685143A2"},"3979":{"isSerializedDate":true,"string":"Wed Jun 27 2012 02:28:09 GMT+0200 (CEST)"},"3980":{"date":{"__isSmartRef__":true,"id":3981},"author":"cschuster","message":"reset scale to 1","id":"82A92460-7A98-4E96-B7ED-4D0D64367CEC"},"3981":{"isSerializedDate":true,"string":"Mon Jun 25 2012 23:17:14 GMT+0200 (CEST)"},"3982":{"date":{"__isSmartRef__":true,"id":3983},"author":"cschuster","message":"fixed remove bug","id":"E178FC7D-9B61-424E-B828-920C08EE4EB6"},"3983":{"isSerializedDate":true,"string":"Fri Jun 22 2012 02:41:19 GMT+0200 (CEST)"},"3984":{"date":{"__isSmartRef__":true,"id":3985},"author":"cschuster","message":"refurbished user interface","id":"94312EE8-D835-49B5-A843-341EF2C34B24"},"3985":{"isSerializedDate":true,"string":"Fri Jun 22 2012 02:21:05 GMT+0200 (CEST)"},"3986":{"date":{"__isSmartRef__":true,"id":3987},"author":"cschuster","message":"fixed bug","id":"A130E659-A8B0-46AB-9439-BD0260EDCB2F"},"3987":{"isSerializedDate":true,"string":"Fri Jun 22 2012 02:31:31 GMT+0200 (CEST)"},"3988":{"date":{"__isSmartRef__":true,"id":3989},"author":"cschuster","message":"fixed other old stuff","id":"75B8C540-9B3A-49FD-B4D2-312D74BF0D47"},"3989":{"isSerializedDate":true,"string":"Fri Jun 22 2012 02:36:28 GMT+0200 (CEST)"},"3990":{"date":{"__isSmartRef__":true,"id":3991},"author":"cschuster","message":"increased window size","id":"663F56B8-5FA3-48BB-8547-4CFC1D4AC224"},"3991":{"isSerializedDate":true,"string":"Fri Jun 22 2012 23:36:22 GMT+0200 (CEST)"},"3992":{"date":{"__isSmartRef__":true,"id":3993},"author":"cschuster","message":"improved halting behavior","id":"379C0236-7447-4F94-BE87-A409F51986BA"},"3993":{"isSerializedDate":true,"string":"Wed Jun 27 2012 01:50:58 GMT+0200 (CEST)"},"3994":{"date":{"__isSmartRef__":true,"id":3995},"author":"cschuster","message":"fixed halting behavior","id":"1E479FEC-B1AC-49BF-AB67-D87670B170A3"},"3995":{"isSerializedDate":true,"string":"Wed Jun 27 2012 01:54:24 GMT+0200 (CEST)"},"3996":{"date":{"__isSmartRef__":true,"id":3997},"author":"cschuster","message":"disabled bouncing timeout for javascript highlighting behavior.","id":"71595FD8-8418-48E7-BD6F-28C152861F64"},"3997":{"isSerializedDate":true,"string":"Wed Jun 27 2012 02:01:26 GMT+0200 (CEST)"},"3998":{"date":{"__isSmartRef__":true,"id":3999},"author":"cschuster","message":"fixed the highlighting of the current PC according to the new syntax highlighting API.","id":"ECC3AC85-4368-46B1-9E47-47AB593D717A"},"3999":{"isSerializedDate":true,"string":"Sun Sep 23 2012 22:00:41 GMT+0200 (CEST)"},"4000":{"date":{"__isSmartRef__":true,"id":4001},"author":"cschuster","message":"fixed syntaxHighlighter implementation","id":"14BD2D8D-4219-4382-857E-D7D5DEDC1346"},"4001":{"isSerializedDate":true,"string":"Sun Sep 23 2012 22:21:28 GMT+0200 (CEST)"},"4002":{"date":{"__isSmartRef__":true,"id":4003},"author":"cschuster","message":"changes syntaxhighlighter implementation","id":"ADAF7C1F-9E76-4BA6-AFB4-3283FA1ACA2F"},"4003":{"isSerializedDate":true,"string":"Sun Sep 23 2012 22:42:35 GMT+0200 (CEST)"},"4004":{"isSerializedDate":true,"string":"Sun Sep 23 2012 22:42:43 GMT+0200 (CEST)"},"4005":{"submorphs":[{"__isSmartRef__":true,"id":4006},{"__isSmartRef__":true,"id":5261},{"__isSmartRef__":true,"id":5292}],"scripts":[],"shape":{"__isSmartRef__":true,"id":5340},"id":"A8D2CB0C-BDA2-4CCB-81A5-0C062B66EAE9","eventHandler":{"__isSmartRef__":true,"id":5341},"droppingEnabled":true,"halosEnabled":true,"__layered_draggingEnabled__":true,"layout":{"__isSmartRef__":true,"id":5342},"LK2":true,"targetMorph":{"__isSmartRef__":true,"id":4006},"titleBar":{"__isSmartRef__":true,"id":5292},"collapsedTransform":{"__isSmartRef__":true,"id":5343},"expandedTransform":{"__isSmartRef__":true,"id":5344},"ignoreEventsOnExpand":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":5345},"name":"ObjectEditor","highlighted":false,"cameForward":false,"showsHalos":false,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"prevScroll":[0,0],"isCopyMorphRef":true,"morphRefId":16,"derivationIds":[205,"2951753B-EB95-4093-A0DD-249E83AC2204","A32DE788-E06D-492C-B2E6-19C3710B5AE0","96D56291-98FB-42C4-A247-0A20B4183B14","1E6BCC46-3FE3-4950-AE50-9751458F7E18","22248328-5B04-4E39-ADDE-460C107C790F","2F4F6161-9F4C-469E-AF56-24765FF03B72","88EF08D5-C1E7-4B5B-B393-FFF5921009D7","FF731ED6-5217-4053-9B85-77F1BF344BF3","496332F8-A328-4625-A7D5-0DCE90C3D2AE","E57F1D4E-AE08-4CAA-A62D-4E69FC0BFF47","94783CDE-55B0-4198-8477-C0756F2C812F","F03206B8-2964-470C-A335-FF321C7743E5","C60ABA94-4D2A-4524-9239-9B7EA074A0B5","D3FBB0FA-2BFF-4D8C-9632-41EEEDB053AE","FDF9A68D-1149-4666-9946-600CCA238B76","118B9F76-0089-47CC-9C18-9F9FF646339B","B0FFB231-7805-4F89-B4B3-4ACD87687613","76631A8F-F752-4DB8-93ED-1496BC458DF0","04D3062E-744B-4E3D-8B25-5602772A307B","89687ECD-A53A-4C95-B6E8-235EBB9198E9","612A25B8-60DC-488D-AD81-1BFA6E48A0D4","08ED6CF8-0A8B-4DC5-AA4D-6499033DFCEC","9771786C-46ED-4C4F-A876-F8CF0B84E769","5DCB36B2-C2B7-49A2-AB12-014B2944C328","D05AAF5D-5660-4158-8BBA-3F564F04AF6F","885F1822-564C-4189-9B13-6D3D8D7CEFCF","8BEEB84F-C547-44B8-9A1E-4586D5236462","5F90A8DF-CB92-4CD6-803F-F082D3A5C1E1","75E80C8F-4DC1-4C89-8CA2-23A70FDEB44F","776DB695-E9C5-410B-9B3D-A492EE5196F1"],"moved":true,"_ClipMode":"visible","_Rotation":0,"_Scale":1.0100552207170073,"__serializedExpressions__":["contentOffset","collapsedExtent","expandedExtent","prevDragPos","expandedPosition","collapsedPosition","minSize","minExtent","_Position"],"owner":{"__isSmartRef__":true,"id":0},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5493},"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withoutLayers":["Global.lively.morphic.GrabbingLayer"],"contentOffset":"lively.pt(0.0,22.0)","collapsedExtent":"lively.pt(723.0,268.0)","expandedExtent":"lively.pt(729.0,365.0)","prevDragPos":"lively.pt(1948.0,176.0)","expandedPosition":"lively.pt(26.0,125.0)","collapsedPosition":"lively.pt(21.0,92.9)","minSize":"lively.pt(500.0,300.0)","minExtent":"lively.pt(455.0,268.0)","_Position":"lively.pt(1293.0,104.2)"},"4006":{"submorphs":[{"__isSmartRef__":true,"id":4007},{"__isSmartRef__":true,"id":4621},{"__isSmartRef__":true,"id":4456},{"__isSmartRef__":true,"id":4627},{"__isSmartRef__":true,"id":4634},{"__isSmartRef__":true,"id":4656},{"__isSmartRef__":true,"id":4677},{"__isSmartRef__":true,"id":4704},{"__isSmartRef__":true,"id":4241},{"__isSmartRef__":true,"id":4377},{"__isSmartRef__":true,"id":4735},{"__isSmartRef__":true,"id":4826},{"__isSmartRef__":true,"id":4832},{"__isSmartRef__":true,"id":4894},{"__isSmartRef__":true,"id":4937},{"__isSmartRef__":true,"id":4980},{"__isSmartRef__":true,"id":5001}],"scripts":[{"__isSmartRef__":true,"id":5148}],"id":"4B570335-1782-43C0-A354-683857AB0F9E","shape":{"__isSmartRef__":true,"id":5149},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"ObjectEditorPane","partsBinMetaInfo":{"__isSmartRef__":true,"id":5150},"eventHandler":{"__isSmartRef__":true,"id":5153},"layout":{"__isSmartRef__":true,"id":5154},"target":{"__isSmartRef__":true,"id":3558},"scriptPane":{"__isSmartRef__":true,"id":4241},"scriptList":{"__isSmartRef__":true,"id":4007},"connectionList":{"__isSmartRef__":true,"id":4456},"morphSelector":{"__isSmartRef__":true,"id":4735},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"changeIndicator":{"__isSmartRef__":true,"id":4377},"isBeingDragged":false,"prevScroll":[0,0],"grabbingEnabled":false,"draggingEnabled":false,"currentCategory":null,"tagChooser":{"__isSmartRef__":true,"id":4832},"currentTag":null,"derivationIds":[206,"3BDE080D-3D60-4BB9-A690-E6001350F596","00E28CBF-E803-4BC0-93CC-651AC21008A5","1B7E7936-0145-47E4-8433-DFE58134E74B","422B98E3-E52B-4057-9C28-865873682DE1","BCDE8D30-ECC2-4883-9587-2518B6822233","BA6D5198-5AC2-4A63-9597-D4CF98A99CA9","17E22972-5EBC-4511-9779-05E9E665D899","C6F34039-F423-4223-8D6A-85611A138372","7EC3BECE-1BDA-471D-B14C-C4FB822AA55C","88F702A6-6067-4160-8561-54FAD27ADB17","738F5E09-C109-4CD0-B5F5-418A6227ABA0","0DC59884-6397-4391-A9A7-FB6F9F97E5AD","14C76016-3134-4E27-8E8F-AF9EE6ACCF4E","FEB1641E-DEA0-449B-B5E5-D3946457A986","5A09E61D-0939-46DD-B099-6337F45EAD81","42A37CDC-8F21-49BA-A701-B98418EF4AEC","FCE84B47-1667-482B-B035-D2C3C7F53837","F49E6D79-2AEB-41FC-8057-A25A4C7D4F92","7B115C74-E409-42A1-9FCB-2DEB53C88CD6","1D3B45A6-5E60-4FD3-900A-288DB80F5262","5BC7B59B-3F80-49C6-BF71-F3777B7D4867","22651992-9C38-474F-B720-F2FC4B1D9A0E","80BF85C2-6727-4766-861C-09C225341FEA","ADC6838F-0BD6-456E-8BD7-A62A9A80285C","9BBAD88A-5DC6-4051-A7CA-4C3F918DD733","0C73D724-E7A5-4AAE-9449-D414B1F3E04E","B341D9BF-D6FF-4ED9-A0AE-A8BDA4C1C35F","19CCEF38-2A49-48DF-BEFD-D5096BA3A758","CB78359F-A158-4EA7-8E3D-8F2C1B6580E5","AB0C1CCE-1EC7-4625-84BF-C9306D62D81B"],"owner":{"__isSmartRef__":true,"id":4005},"partTests":{"__isSmartRef__":true,"id":5155},"_ClipMode":"visible","_Rotation":0,"_Scale":1,"__serializedExpressions__":["distanceToDragEvent","_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5156},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","distanceToDragEvent":"lively.pt(350.2,-3.2)","_Position":"lively.pt(1.0,21.5)"},"4007":{"submorphs":[],"scripts":[],"id":"BAF16287-8888-434B-B693-674B8412E199","shape":{"__isSmartRef__":true,"id":4008},"droppingEnabled":true,"halosEnabled":true,"itemList":["-- ALL --","browse","reset","restart","resume","setCurrentFrame","setTopFrame","stepInto","stepOver"],"selectedLineNo":5,"showsHalos":false,"name":"ObjectEditorScriptList","partsBinMetaInfo":{"__isSmartRef__":true,"id":4009},"_ClipMode":"auto","owner":{"__isSmartRef__":true,"id":4006},"prevScroll":[0,16],"attributeConnections":[{"__isSmartRef__":true,"id":4010}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"layout":{"__isSmartRef__":true,"id":4012},"doitContext":{"__isSmartRef__":true,"id":4013},"eventHandler":{"__isSmartRef__":true,"id":4612},"_FontSize":10,"isBeingDragged":false,"grabbingEnabled":false,"draggingEnabled":false,"isCopyMorphRef":true,"morphRefId":17,"currentCategory":null,"derivationIds":[207,"D87334B5-DFB8-438D-8038-D2C55A798E3B","4242A24B-D284-4130-BB19-C1AB8C7E96CB","1F2230C1-4745-4EED-8827-5D3FC0EA8D8A","1260A8AA-AD41-451A-A761-BE75A33282E8","11AABB24-1595-4EDC-95DF-8BC66785F47A","CA99FFE7-13DD-4721-8DE2-6A587B0C65D9","E01A3DAA-0001-4C7C-A6A7-449C3945A3E6","8C3C70BF-E1CE-4FB9-8407-24EA990D4E49","D70897C1-82FA-42AD-9D81-A0698E9072CC","69BB0838-2830-4831-A681-185E03308396","434D4493-4DD6-466F-A202-7364A5829C52","93D99F39-CC07-45EB-9459-5230A80A20D2","4756DE7D-3422-46FC-B24B-5565F597D490","7AF59BEC-20A9-4451-AD6E-39E86979D18D","07109F49-B19B-4C20-8632-697478AA1FFB","DD6C1E85-89E4-4619-A9B8-6CF6A5E7AD71","C9C566DA-2167-4866-B606-6D9467CC5763","43A75FC1-E0E6-4B7B-84B5-382D18881361","1EE4A800-07BC-4687-B972-0360A139A335","52766A7B-F1AC-4B5D-AFA9-3CBEC45A4175","500ABFF2-CC61-403C-B40B-C38B13EB829E","CCC6F1D7-B08E-4106-A54C-3CB27FAE885A","DD77BBCF-FA2D-4EEF-80E5-DFD0CFAC257E","FBF51FE1-3F15-48F1-9968-35CE0F17558A","0435127D-922E-4618-BBE2-72674C58772C","7A26603F-1566-41BE-B32D-6B17A7FAF107","236EA689-19AE-4C3D-BA95-EA5786184C70","331932E3-0E70-4FF1-8CD0-11921E2FF30E","B826CD75-9134-4A06-BC7D-791974BC6735","63898451-C4BE-41C7-B09C-31F71CA4B63C"],"selection":"setCurrentFrame","_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4613},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(10.0,63.0)","distanceToDragEvent":"lively.pt(126.0,-14.4)"},"4008":{"_BorderWidth":1,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(180.0,242.8)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)","_Padding":"lively.rect(0,0,0,0)"},"4009":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4010":{"sourceObj":{"__isSmartRef__":true,"id":4007},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":4006},"targetMethodName":"displaySourceForScript","converterString":"function (value) {\n return (value === '-- ALL --') ? null : value;\n}","updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4011},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4011":{"source":{"__isSmartRef__":true,"id":4007},"target":{"__isSmartRef__":true,"id":4006}},"4012":{"resizeHeight":true},"4013":{"submorphs":[],"scripts":[],"id":836,"shape":{"__isSmartRef__":true,"id":4014},"droppingEnabled":true,"halosEnabled":true,"__layered_draggingEnabled__":true,"layout":{"__isSmartRef__":true,"id":4015},"titleBar":{"__isSmartRef__":true,"id":4016},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":{"__isSmartRef__":true,"id":4081},"highlighted":true,"_Rotation":0,"_Scale":1,"showsHalos":false,"name":"ObjectEditor","target":{"__isSmartRef__":true,"id":4082},"partsBinMetaInfo":{"__isSmartRef__":true,"id":4240},"scriptList":{"__isSmartRef__":true,"id":4007},"scriptPane":{"__isSmartRef__":true,"id":4241},"classButton":{"__isSmartRef__":true,"id":4436},"connectionList":{"__isSmartRef__":true,"id":4456},"targetButton":{"__isSmartRef__":true,"id":4468},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"morphSelector":{"__isSmartRef__":true,"id":4486},"eventHandler":{"__isSmartRef__":true,"id":4559},"cameForward":false,"isCopyMorphRef":true,"morphRefId":1,"__serializedExpressions__":["contentOffset","expandedExtent","prevDragPos","expandedPosition","_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4560},"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withoutLayers":["Global.lively.morphic.GrabbingLayer"],"contentOffset":"lively.pt(0.0,22.0)","expandedExtent":"lively.pt(861.5,575.2)","prevDragPos":"lively.pt(613.0,129.0)","expandedPosition":"lively.pt(377.7,419.5)","_Position":"lively.pt(715.5,73.9)"},"4014":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":9.25,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["_Fill","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Fill":"Color.rgb(255,255,255)","_Extent":"lively.pt(981.0,585.2)","_BorderColor":"Color.rgb(0,0,0)"},"4015":{"adjustForNewBounds":true},"4016":{"submorphs":[{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4022},{"__isSmartRef__":true,"id":4043},{"__isSmartRef__":true,"id":4058}],"scripts":[],"id":837,"shape":{"__isSmartRef__":true,"id":4074},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":4079},"eventsAreIgnored":true,"windowMorph":{"__isSmartRef__":true,"id":4013},"label":{"__isSmartRef__":true,"id":4017},"closeButton":{"__isSmartRef__":true,"id":4022},"menuButton":{"__isSmartRef__":true,"id":4043},"collapseButton":{"__isSmartRef__":true,"id":4058},"owner":null,"name":"ObjectEditorTitleBar","_Scale":1,"eventHandler":{"__isSmartRef__":true,"id":4080},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"4017":{"submorphs":[],"scripts":[],"id":838,"shape":{"__isSmartRef__":true,"id":4018},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":4019}],"evalEnabled":false,"isLabel":true,"eventsAreIgnored":true,"_FontSize":10,"_Align":"center","owner":{"__isSmartRef__":true,"id":4016},"_Scale":1,"eventHandler":{"__isSmartRef__":true,"id":4021},"_HandStyle":"default","_PointerEvents":"none","__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(20.0,3.0)"},"4018":{"_BorderWidth":0,"_Fill":null,"_BorderRadius":0,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(922.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4019":{"style":{"__isSmartRef__":true,"id":4020},"chunkOwner":{"__isSmartRef__":true,"id":4017},"storedString":"","_id":"_1341","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4020":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4021":{"morph":{"__isSmartRef__":true,"id":4017},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4022":{"submorphs":[{"__isSmartRef__":true,"id":4023}],"scripts":[],"id":839,"shape":{"__isSmartRef__":true,"id":4028},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4029},"lighterFill":{"__isSmartRef__":true,"id":4034},"label":{"__isSmartRef__":true,"id":4023},"owner":{"__isSmartRef__":true,"id":4016},"layout":{"__isSmartRef__":true,"id":4039},"attributeConnections":[{"__isSmartRef__":true,"id":4040},{"__isSmartRef__":true,"id":4041}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"_Scale":1,"eventHandler":{"__isSmartRef__":true,"id":4042},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(961.0,3.0)"},"4023":{"submorphs":[],"scripts":[],"id":840,"shape":{"__isSmartRef__":true,"id":4024},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":4025}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4022},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"_Scale":1,"eventHandler":{"__isSmartRef__":true,"id":4027},"_HandStyle":"default","_PointerEvents":"none","__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(5,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"4024":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4025":{"style":{"__isSmartRef__":true,"id":4026},"chunkOwner":{"__isSmartRef__":true,"id":4023},"storedString":"","_id":"_1342","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4026":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4027":{"morph":{"__isSmartRef__":true,"id":4023},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4028":{"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":4029},"_StrokeOpacity":0,"_BorderRadius":5,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(189,190,192)"},"4029":{"stops":[{"__isSmartRef__":true,"id":4030},{"__isSmartRef__":true,"id":4031},{"__isSmartRef__":true,"id":4032},{"__isSmartRef__":true,"id":4033}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4030":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"4031":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4032":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4033":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"4034":{"stops":[{"__isSmartRef__":true,"id":4035},{"__isSmartRef__":true,"id":4036},{"__isSmartRef__":true,"id":4037},{"__isSmartRef__":true,"id":4038}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4035":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4036":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4037":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4038":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4039":{"moveHorizontal":true},"4040":{"sourceObj":{"__isSmartRef__":true,"id":4022},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4013},"targetMethodName":"getCloseHelp","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4041":{"sourceObj":{"__isSmartRef__":true,"id":4022},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4013},"targetMethodName":"initiateShutdown","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4042":{"morph":{"__isSmartRef__":true,"id":4022},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4043":{"submorphs":[{"__isSmartRef__":true,"id":4044}],"scripts":[],"id":841,"shape":{"__isSmartRef__":true,"id":4049},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4029},"lighterFill":{"__isSmartRef__":true,"id":4050},"label":{"__isSmartRef__":true,"id":4044},"owner":{"__isSmartRef__":true,"id":4016},"attributeConnections":[{"__isSmartRef__":true,"id":4055},{"__isSmartRef__":true,"id":4056}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"showsHalos":false,"_Scale":1,"eventHandler":{"__isSmartRef__":true,"id":4057},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"4044":{"submorphs":[],"scripts":[],"id":842,"shape":{"__isSmartRef__":true,"id":4045},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":4046}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4043},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"_Scale":1,"eventHandler":{"__isSmartRef__":true,"id":4048},"_HandStyle":"default","_PointerEvents":"none","__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(5,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"4045":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4046":{"style":{"__isSmartRef__":true,"id":4047},"chunkOwner":{"__isSmartRef__":true,"id":4044},"storedString":"","_id":"_1343","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4047":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4048":{"morph":{"__isSmartRef__":true,"id":4044},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4049":{"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":4029},"_StrokeOpacity":0,"_BorderRadius":5,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(189,190,192)"},"4050":{"stops":[{"__isSmartRef__":true,"id":4051},{"__isSmartRef__":true,"id":4052},{"__isSmartRef__":true,"id":4053},{"__isSmartRef__":true,"id":4054}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4051":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4052":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4053":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4054":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4055":{"sourceObj":{"__isSmartRef__":true,"id":4043},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4013},"targetMethodName":"getMenuHelp","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4056":{"sourceObj":{"__isSmartRef__":true,"id":4043},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4013},"targetMethodName":"showTargetMorphMenu","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4057":{"morph":{"__isSmartRef__":true,"id":4043},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4058":{"submorphs":[{"__isSmartRef__":true,"id":4059}],"scripts":[],"id":843,"shape":{"__isSmartRef__":true,"id":4064},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4029},"lighterFill":{"__isSmartRef__":true,"id":4065},"label":{"__isSmartRef__":true,"id":4059},"owner":{"__isSmartRef__":true,"id":4016},"layout":{"__isSmartRef__":true,"id":4070},"attributeConnections":[{"__isSmartRef__":true,"id":4071},{"__isSmartRef__":true,"id":4072}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"_Scale":1,"eventHandler":{"__isSmartRef__":true,"id":4073},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(942.0,3.0)"},"4059":{"submorphs":[],"scripts":[],"id":844,"shape":{"__isSmartRef__":true,"id":4060},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":4061}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4058},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"_Scale":1,"eventHandler":{"__isSmartRef__":true,"id":4063},"_HandStyle":"default","_PointerEvents":"none","__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(5,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"4060":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4061":{"style":{"__isSmartRef__":true,"id":4062},"chunkOwner":{"__isSmartRef__":true,"id":4059},"storedString":"","_id":"_1344","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4062":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4063":{"morph":{"__isSmartRef__":true,"id":4059},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4064":{"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":4029},"_StrokeOpacity":0,"_BorderRadius":5,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(189,190,192)"},"4065":{"stops":[{"__isSmartRef__":true,"id":4066},{"__isSmartRef__":true,"id":4067},{"__isSmartRef__":true,"id":4068},{"__isSmartRef__":true,"id":4069}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4066":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4067":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4068":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4069":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4070":{"moveHorizontal":true},"4071":{"sourceObj":{"__isSmartRef__":true,"id":4058},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4013},"targetMethodName":"getCollapseHelp","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4072":{"sourceObj":{"__isSmartRef__":true,"id":4058},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4013},"targetMethodName":"toggleCollapse","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4073":{"morph":{"__isSmartRef__":true,"id":4058},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4074":{"_BorderWidth":2,"_Fill":{"__isSmartRef__":true,"id":4075},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(981.0,22.0)","_BorderColor":"Color.rgb(102,102,102)"},"4075":{"stops":[{"__isSmartRef__":true,"id":4076},{"__isSmartRef__":true,"id":4077},{"__isSmartRef__":true,"id":4078}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,1,0,-1)"},"4076":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(184,184,184)"},"4077":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(230,230,230)"},"4078":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(184,184,184)"},"4079":{"resizeWidth":true,"adjustForNewBounds":true},"4080":{"morph":{"__isSmartRef__":true,"id":4016},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4081":{"a":1,"b":0,"c":0,"d":1,"e":377.6609726943286,"f":419.5142810783999,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"4082":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4083},"id":394,"textChunks":[{"__isSmartRef__":true,"id":4084}],"eventHandler":{"__isSmartRef__":true,"id":4086},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"auto","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_MaxTextWidth":500,"_MaxTextHeight":200,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4087},"layout":{"__isSmartRef__":true,"id":4159},"doitContext":{"__isSmartRef__":true,"id":4160},"priorSelectionRange":[0,36],"charsReplaced":"","lastFindLoc":20,"showsHalos":false,"__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(2,1,0,0)","_Position":"lively.pt(0.0,22.0)"},"4083":{"_BorderWidth":2,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(500.0,200.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"4084":{"style":{"__isSmartRef__":true,"id":4085},"chunkOwner":{"__isSmartRef__":true,"id":4082},"storedString":"","_id":"_1353","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4085":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4086":{"morph":{"__isSmartRef__":true,"id":4082},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4087":{"submorphs":[{"__isSmartRef__":true,"id":4082},{"__isSmartRef__":true,"id":4088}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4156},"id":395,"eventHandler":{"__isSmartRef__":true,"id":4157},"droppingEnabled":true,"halosEnabled":true,"__layered_draggingEnabled__":true,"layout":{"__isSmartRef__":true,"id":4158},"LK2":true,"targetMorph":{"__isSmartRef__":true,"id":4082},"titleBar":{"__isSmartRef__":true,"id":4088},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"highlighted":true,"_Rotation":0,"_Scale":1,"cameForward":false,"showsHalos":false,"__serializedExpressions__":["_Position","contentOffset","prevDragPos"],"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withoutLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(1234.0,448.0)","contentOffset":"lively.pt(0.0,22.0)","prevDragPos":"lively.pt(1478.0,453.0)"},"4088":{"submorphs":[{"__isSmartRef__":true,"id":4089},{"__isSmartRef__":true,"id":4095},{"__isSmartRef__":true,"id":4118},{"__isSmartRef__":true,"id":4135}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4153},"id":396,"eventHandler":{"__isSmartRef__":true,"id":4154},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":4155},"windowMorph":{"__isSmartRef__":true,"id":4087},"label":{"__isSmartRef__":true,"id":4089},"closeButton":{"__isSmartRef__":true,"id":4095},"menuButton":{"__isSmartRef__":true,"id":4118},"collapseButton":{"__isSmartRef__":true,"id":4135},"owner":{"__isSmartRef__":true,"id":4087},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"4089":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4090},"id":397,"textChunks":[{"__isSmartRef__":true,"id":4091}],"eventHandler":{"__isSmartRef__":true,"id":4093},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":4094},"_FontSize":10,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":4088},"_MaxTextWidth":441,"_MaxTextHeight":17,"__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(20.0,3.0)"},"4090":{"_BorderWidth":0,"_Fill":null,"_BorderRadius":0,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(441.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4091":{"style":{"__isSmartRef__":true,"id":4092},"chunkOwner":{"__isSmartRef__":true,"id":4089},"storedString":"","_id":"_1345","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4092":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4093":{"morph":{"__isSmartRef__":true,"id":4089},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4094":{"resizeWidth":true},"4095":{"submorphs":[{"__isSmartRef__":true,"id":4096}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4101},"id":398,"eventHandler":{"__isSmartRef__":true,"id":4107},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4102},"lighterFill":{"__isSmartRef__":true,"id":4108},"label":{"__isSmartRef__":true,"id":4096},"owner":{"__isSmartRef__":true,"id":4088},"layout":{"__isSmartRef__":true,"id":4113},"attributeConnections":[{"__isSmartRef__":true,"id":4114},{"__isSmartRef__":true,"id":4116}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(480.0,3.0)"},"4096":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4097},"id":399,"textChunks":[{"__isSmartRef__":true,"id":4098}],"eventHandler":{"__isSmartRef__":true,"id":4100},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4095},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,3,0,0)","_Position":"lively.pt(0.0,0.0)"},"4097":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4098":{"style":{"__isSmartRef__":true,"id":4099},"chunkOwner":{"__isSmartRef__":true,"id":4096},"storedString":"","_id":"_1346","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4099":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4100":{"morph":{"__isSmartRef__":true,"id":4096},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4101":{"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":4102},"_StrokeOpacity":0,"_BorderRadius":5,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(189,190,192)"},"4102":{"stops":[{"__isSmartRef__":true,"id":4103},{"__isSmartRef__":true,"id":4104},{"__isSmartRef__":true,"id":4105},{"__isSmartRef__":true,"id":4106}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4103":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"4104":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4105":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4106":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"4107":{"morph":{"__isSmartRef__":true,"id":4095},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4108":{"stops":[{"__isSmartRef__":true,"id":4109},{"__isSmartRef__":true,"id":4110},{"__isSmartRef__":true,"id":4111},{"__isSmartRef__":true,"id":4112}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4109":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4110":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4111":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4112":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4113":{"moveHorizontal":true},"4114":{"sourceObj":{"__isSmartRef__":true,"id":4095},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4087},"targetMethodName":"getCloseHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4115},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4115":{"source":{"__isSmartRef__":true,"id":4095},"target":{"__isSmartRef__":true,"id":4087}},"4116":{"sourceObj":{"__isSmartRef__":true,"id":4095},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4087},"targetMethodName":"initiateShutdown","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4117},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4117":{"source":{"__isSmartRef__":true,"id":4095},"target":{"__isSmartRef__":true,"id":4087}},"4118":{"submorphs":[{"__isSmartRef__":true,"id":4119}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4124},"id":400,"eventHandler":{"__isSmartRef__":true,"id":4125},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4102},"lighterFill":{"__isSmartRef__":true,"id":4126},"label":{"__isSmartRef__":true,"id":4119},"owner":{"__isSmartRef__":true,"id":4088},"attributeConnections":[{"__isSmartRef__":true,"id":4131},{"__isSmartRef__":true,"id":4133}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"4119":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4120},"id":401,"textChunks":[{"__isSmartRef__":true,"id":4121}],"eventHandler":{"__isSmartRef__":true,"id":4123},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4118},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,3,0,0)","_Position":"lively.pt(0.0,0.0)"},"4120":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4121":{"style":{"__isSmartRef__":true,"id":4122},"chunkOwner":{"__isSmartRef__":true,"id":4119},"storedString":"","_id":"_1347","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4122":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4123":{"morph":{"__isSmartRef__":true,"id":4119},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4124":{"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":4102},"_StrokeOpacity":0,"_BorderRadius":5,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(189,190,192)"},"4125":{"morph":{"__isSmartRef__":true,"id":4118},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4126":{"stops":[{"__isSmartRef__":true,"id":4127},{"__isSmartRef__":true,"id":4128},{"__isSmartRef__":true,"id":4129},{"__isSmartRef__":true,"id":4130}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4127":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4128":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4129":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4130":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4131":{"sourceObj":{"__isSmartRef__":true,"id":4118},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4087},"targetMethodName":"getMenuHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4132},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4132":{"source":{"__isSmartRef__":true,"id":4118},"target":{"__isSmartRef__":true,"id":4087}},"4133":{"sourceObj":{"__isSmartRef__":true,"id":4118},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4087},"targetMethodName":"showTargetMorphMenu","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4134},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4134":{"source":{"__isSmartRef__":true,"id":4118},"target":{"__isSmartRef__":true,"id":4087}},"4135":{"submorphs":[{"__isSmartRef__":true,"id":4136}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4141},"id":402,"eventHandler":{"__isSmartRef__":true,"id":4142},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4102},"lighterFill":{"__isSmartRef__":true,"id":4143},"label":{"__isSmartRef__":true,"id":4136},"owner":{"__isSmartRef__":true,"id":4088},"layout":{"__isSmartRef__":true,"id":4148},"attributeConnections":[{"__isSmartRef__":true,"id":4149},{"__isSmartRef__":true,"id":4151}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(461.0,3.0)"},"4136":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4137},"id":403,"textChunks":[{"__isSmartRef__":true,"id":4138}],"eventHandler":{"__isSmartRef__":true,"id":4140},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4135},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,3,0,0)","_Position":"lively.pt(0.0,0.0)"},"4137":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4138":{"style":{"__isSmartRef__":true,"id":4139},"chunkOwner":{"__isSmartRef__":true,"id":4136},"storedString":"","_id":"_1348","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4139":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4140":{"morph":{"__isSmartRef__":true,"id":4136},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4141":{"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":4102},"_StrokeOpacity":0,"_BorderRadius":5,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(189,190,192)"},"4142":{"morph":{"__isSmartRef__":true,"id":4135},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4143":{"stops":[{"__isSmartRef__":true,"id":4144},{"__isSmartRef__":true,"id":4145},{"__isSmartRef__":true,"id":4146},{"__isSmartRef__":true,"id":4147}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4144":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4145":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4146":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4147":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4148":{"moveHorizontal":true},"4149":{"sourceObj":{"__isSmartRef__":true,"id":4135},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4087},"targetMethodName":"getCollapseHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4150},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4150":{"source":{"__isSmartRef__":true,"id":4135},"target":{"__isSmartRef__":true,"id":4087}},"4151":{"sourceObj":{"__isSmartRef__":true,"id":4135},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4087},"targetMethodName":"toggleCollapse","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4152},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4152":{"source":{"__isSmartRef__":true,"id":4135},"target":{"__isSmartRef__":true,"id":4087}},"4153":{"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":4075},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(500.0,22.0)","_BorderColor":"Color.rgb(102,102,102)"},"4154":{"morph":{"__isSmartRef__":true,"id":4088},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4155":{"resizeWidth":true,"adjustForNewBounds":true},"4156":{"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"__serializedExpressions__":["_Extent"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Extent":"lively.pt(500.0,222.0)"},"4157":{"morph":{"__isSmartRef__":true,"id":4087},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4158":{"adjustForNewBounds":true},"4159":{"resizeWidth":true,"resizeHeight":true},"4160":{"submorphs":[{"__isSmartRef__":true,"id":4161},{"__isSmartRef__":true,"id":4168}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4235},"id":361,"eventHandler":{"__isSmartRef__":true,"id":4236},"droppingEnabled":true,"halosEnabled":true,"__layered_draggingEnabled__":true,"layout":{"__isSmartRef__":true,"id":4237},"LK2":true,"targetMorph":{"__isSmartRef__":true,"id":4161},"titleBar":{"__isSmartRef__":true,"id":4168},"collapsedTransform":{"__isSmartRef__":true,"id":4238},"expandedTransform":{"__isSmartRef__":true,"id":4239},"ignoreEventsOnExpand":false,"owner":null,"showsHalos":false,"highlighted":true,"_Rotation":0,"_Scale":1,"state":"shutdown","__serializedExpressions__":["_Position","contentOffset","collapsedExtent","expandedExtent","prevDragPos","expandedPosition","collapsedPosition"],"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withoutLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(1131.0,79.0)","contentOffset":"lively.pt(0.0,22.0)","collapsedExtent":"lively.pt(500.0,22.0)","expandedExtent":"lively.pt(500.0,222.0)","prevDragPos":"lively.pt(1507.0,76.0)","expandedPosition":"lively.pt(1131.0,79.0)","collapsedPosition":"lively.pt(1131.0,79.0)"},"4161":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4162},"id":360,"textChunks":[{"__isSmartRef__":true,"id":4163}],"eventHandler":{"__isSmartRef__":true,"id":4165},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"auto","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Monaco,monospace","_MaxTextWidth":500,"_MaxTextHeight":0,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4160},"layout":{"__isSmartRef__":true,"id":4166},"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":4167}],"doNotSerialize":["$$textString"],"doNotCopyProperties":["$$textString"],"lastSyntaxHighlightTime":1307282796737,"accessibleInInactiveWindow":true,"eventsAreIgnored":false,"_HandStyle":"default","_PointerEvents":"auto","_Visible":true,"charsReplaced":"","lastFindLoc":15,"__serializedExpressions__":["_Padding","_Position"],"textString":"undefined","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(2,1,0,0)","_Position":"lively.pt(0.0,22.0)"},"4162":{"_BorderWidth":2,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(500.0,0.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"4163":{"style":{"__isSmartRef__":true,"id":4164},"chunkOwner":{"__isSmartRef__":true,"id":4161},"_id":"_2008","storedString":"undefined","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4164":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4165":{"morph":{"__isSmartRef__":true,"id":4161},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4166":{"resizeWidth":true,"resizeHeight":true},"4167":{"sourceObj":{"__isSmartRef__":true,"id":4161},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":4161},"targetMethodName":"highlightJavaScriptSyntax","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4168":{"submorphs":[{"__isSmartRef__":true,"id":4169},{"__isSmartRef__":true,"id":4175},{"__isSmartRef__":true,"id":4193},{"__isSmartRef__":true,"id":4210}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4228},"id":362,"eventHandler":{"__isSmartRef__":true,"id":4233},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":4234},"windowMorph":{"__isSmartRef__":true,"id":4160},"label":{"__isSmartRef__":true,"id":4169},"closeButton":{"__isSmartRef__":true,"id":4175},"menuButton":{"__isSmartRef__":true,"id":4193},"collapseButton":{"__isSmartRef__":true,"id":4210},"owner":{"__isSmartRef__":true,"id":4160},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"4169":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4170},"id":363,"textChunks":[{"__isSmartRef__":true,"id":4171}],"eventHandler":{"__isSmartRef__":true,"id":4173},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":4174},"_FontSize":10,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":4168},"_MaxTextWidth":441,"_MaxTextHeight":17,"__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(20.0,3.0)"},"4170":{"_BorderWidth":0,"_Fill":null,"_BorderRadius":0,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(441.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4171":{"style":{"__isSmartRef__":true,"id":4172},"chunkOwner":{"__isSmartRef__":true,"id":4169},"storedString":"","_id":"_1349","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4172":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4173":{"morph":{"__isSmartRef__":true,"id":4169},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4174":{"resizeWidth":true},"4175":{"submorphs":[{"__isSmartRef__":true,"id":4176}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4181},"id":364,"eventHandler":{"__isSmartRef__":true,"id":4182},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4102},"lighterFill":{"__isSmartRef__":true,"id":4183},"label":{"__isSmartRef__":true,"id":4176},"owner":{"__isSmartRef__":true,"id":4168},"layout":{"__isSmartRef__":true,"id":4188},"attributeConnections":[{"__isSmartRef__":true,"id":4189},{"__isSmartRef__":true,"id":4191}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(480.0,3.0)"},"4176":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4177},"id":365,"textChunks":[{"__isSmartRef__":true,"id":4178}],"eventHandler":{"__isSmartRef__":true,"id":4180},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4175},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,3,0,0)","_Position":"lively.pt(0.0,0.0)"},"4177":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4178":{"style":{"__isSmartRef__":true,"id":4179},"chunkOwner":{"__isSmartRef__":true,"id":4176},"storedString":"","_id":"_1350","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4179":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4180":{"morph":{"__isSmartRef__":true,"id":4176},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4181":{"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":4102},"_StrokeOpacity":0,"_BorderRadius":5,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(189,190,192)"},"4182":{"morph":{"__isSmartRef__":true,"id":4175},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4183":{"stops":[{"__isSmartRef__":true,"id":4184},{"__isSmartRef__":true,"id":4185},{"__isSmartRef__":true,"id":4186},{"__isSmartRef__":true,"id":4187}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4184":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4185":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4186":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4187":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4188":{"moveHorizontal":true},"4189":{"sourceObj":{"__isSmartRef__":true,"id":4175},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4160},"targetMethodName":"getCloseHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4190},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4190":{"source":{"__isSmartRef__":true,"id":4175},"target":{"__isSmartRef__":true,"id":4160}},"4191":{"sourceObj":{"__isSmartRef__":true,"id":4175},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4160},"targetMethodName":"initiateShutdown","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4192},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4192":{"source":{"__isSmartRef__":true,"id":4175},"target":{"__isSmartRef__":true,"id":4160}},"4193":{"submorphs":[{"__isSmartRef__":true,"id":4194}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4199},"id":366,"eventHandler":{"__isSmartRef__":true,"id":4200},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4102},"lighterFill":{"__isSmartRef__":true,"id":4201},"label":{"__isSmartRef__":true,"id":4194},"owner":{"__isSmartRef__":true,"id":4168},"attributeConnections":[{"__isSmartRef__":true,"id":4206},{"__isSmartRef__":true,"id":4208}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"4194":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4195},"id":367,"textChunks":[{"__isSmartRef__":true,"id":4196}],"eventHandler":{"__isSmartRef__":true,"id":4198},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4193},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,3,0,0)","_Position":"lively.pt(0.0,0.0)"},"4195":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4196":{"style":{"__isSmartRef__":true,"id":4197},"chunkOwner":{"__isSmartRef__":true,"id":4194},"storedString":"","_id":"_1351","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4197":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4198":{"morph":{"__isSmartRef__":true,"id":4194},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4199":{"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":4102},"_StrokeOpacity":0,"_BorderRadius":5,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(189,190,192)"},"4200":{"morph":{"__isSmartRef__":true,"id":4193},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4201":{"stops":[{"__isSmartRef__":true,"id":4202},{"__isSmartRef__":true,"id":4203},{"__isSmartRef__":true,"id":4204},{"__isSmartRef__":true,"id":4205}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4202":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4203":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4204":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4205":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4206":{"sourceObj":{"__isSmartRef__":true,"id":4193},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4160},"targetMethodName":"getMenuHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4207},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4207":{"source":{"__isSmartRef__":true,"id":4193},"target":{"__isSmartRef__":true,"id":4160}},"4208":{"sourceObj":{"__isSmartRef__":true,"id":4193},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4160},"targetMethodName":"showTargetMorphMenu","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4209},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4209":{"source":{"__isSmartRef__":true,"id":4193},"target":{"__isSmartRef__":true,"id":4160}},"4210":{"submorphs":[{"__isSmartRef__":true,"id":4211}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4216},"id":368,"eventHandler":{"__isSmartRef__":true,"id":4217},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4102},"lighterFill":{"__isSmartRef__":true,"id":4218},"label":{"__isSmartRef__":true,"id":4211},"owner":{"__isSmartRef__":true,"id":4168},"layout":{"__isSmartRef__":true,"id":4223},"attributeConnections":[{"__isSmartRef__":true,"id":4224},{"__isSmartRef__":true,"id":4226}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(461.0,3.0)"},"4211":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4212},"id":369,"textChunks":[{"__isSmartRef__":true,"id":4213}],"eventHandler":{"__isSmartRef__":true,"id":4215},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4210},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__serializedExpressions__":["_Padding","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,3,0,0)","_Position":"lively.pt(0.0,0.0)"},"4212":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(0,0,0)"},"4213":{"style":{"__isSmartRef__":true,"id":4214},"chunkOwner":{"__isSmartRef__":true,"id":4211},"storedString":"","_id":"_1352","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4214":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4215":{"morph":{"__isSmartRef__":true,"id":4211},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4216":{"_BorderWidth":0,"_Fill":{"__isSmartRef__":true,"id":4102},"_StrokeOpacity":0,"_BorderRadius":5,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_BorderColor":"Color.rgb(189,190,192)"},"4217":{"morph":{"__isSmartRef__":true,"id":4210},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4218":{"stops":[{"__isSmartRef__":true,"id":4219},{"__isSmartRef__":true,"id":4220},{"__isSmartRef__":true,"id":4221},{"__isSmartRef__":true,"id":4222}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4219":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4220":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4221":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4222":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4223":{"moveHorizontal":true},"4224":{"sourceObj":{"__isSmartRef__":true,"id":4210},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4160},"targetMethodName":"getCollapseHelp","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4225},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4225":{"source":{"__isSmartRef__":true,"id":4210},"target":{"__isSmartRef__":true,"id":4160}},"4226":{"sourceObj":{"__isSmartRef__":true,"id":4210},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4160},"targetMethodName":"toggleCollapse","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4227},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4227":{"source":{"__isSmartRef__":true,"id":4210},"target":{"__isSmartRef__":true,"id":4160}},"4228":{"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":4229},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(500.0,22.0)","_BorderColor":"Color.rgb(102,102,102)"},"4229":{"stops":[{"__isSmartRef__":true,"id":4230},{"__isSmartRef__":true,"id":4231},{"__isSmartRef__":true,"id":4232}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4230":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(220,220,220)"},"4231":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(243,243,243)"},"4232":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(220,220,220)"},"4233":{"morph":{"__isSmartRef__":true,"id":4168},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4234":{"resizeWidth":true,"adjustForNewBounds":true},"4235":{"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"__serializedExpressions__":["_Extent","_Position"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Extent":"lively.pt(500.0,222.0)","_Position":"lively.pt(0.0,0.0)"},"4236":{"morph":{"__isSmartRef__":true,"id":4160},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4237":{"adjustForNewBounds":true},"4238":{"a":1,"b":0,"c":0,"d":1,"e":1131,"f":79,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"4239":{"a":1,"b":0,"c":0,"d":1,"e":1131,"f":79,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"4240":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Tools","comment":"Edit scripts and connections of a specific morph. Early version.","partName":"ObjectEditor","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4241":{"submorphs":[],"scripts":[],"id":"C75C2F00-90F4-4997-919A-E4B58C905E90","shape":{"__isSmartRef__":true,"id":4242},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Monaco,courier","_MaxTextWidth":588.0166612695056,"_MaxTextHeight":null,"textChunks":[{"__isSmartRef__":true,"id":4243},{"__isSmartRef__":true,"id":4245},{"__isSmartRef__":true,"id":4247},{"__isSmartRef__":true,"id":4249},{"__isSmartRef__":true,"id":4251},{"__isSmartRef__":true,"id":4253},{"__isSmartRef__":true,"id":4255},{"__isSmartRef__":true,"id":4257},{"__isSmartRef__":true,"id":4259},{"__isSmartRef__":true,"id":4261},{"__isSmartRef__":true,"id":4263},{"__isSmartRef__":true,"id":4265},{"__isSmartRef__":true,"id":4267},{"__isSmartRef__":true,"id":4269},{"__isSmartRef__":true,"id":4271},{"__isSmartRef__":true,"id":4273},{"__isSmartRef__":true,"id":4275},{"__isSmartRef__":true,"id":4277},{"__isSmartRef__":true,"id":4279},{"__isSmartRef__":true,"id":4281},{"__isSmartRef__":true,"id":4283},{"__isSmartRef__":true,"id":4285},{"__isSmartRef__":true,"id":4287},{"__isSmartRef__":true,"id":4289},{"__isSmartRef__":true,"id":4291},{"__isSmartRef__":true,"id":4293},{"__isSmartRef__":true,"id":4295},{"__isSmartRef__":true,"id":4297},{"__isSmartRef__":true,"id":4299},{"__isSmartRef__":true,"id":4301},{"__isSmartRef__":true,"id":4303},{"__isSmartRef__":true,"id":4305},{"__isSmartRef__":true,"id":4307},{"__isSmartRef__":true,"id":4309},{"__isSmartRef__":true,"id":4311},{"__isSmartRef__":true,"id":4313},{"__isSmartRef__":true,"id":4315},{"__isSmartRef__":true,"id":4317},{"__isSmartRef__":true,"id":4319},{"__isSmartRef__":true,"id":4321},{"__isSmartRef__":true,"id":4323},{"__isSmartRef__":true,"id":4325},{"__isSmartRef__":true,"id":4327},{"__isSmartRef__":true,"id":4329},{"__isSmartRef__":true,"id":4331},{"__isSmartRef__":true,"id":4333},{"__isSmartRef__":true,"id":4335},{"__isSmartRef__":true,"id":4337},{"__isSmartRef__":true,"id":4339},{"__isSmartRef__":true,"id":4341},{"__isSmartRef__":true,"id":4343},{"__isSmartRef__":true,"id":4345},{"__isSmartRef__":true,"id":4347},{"__isSmartRef__":true,"id":4349},{"__isSmartRef__":true,"id":4351},{"__isSmartRef__":true,"id":4353},{"__isSmartRef__":true,"id":4355},{"__isSmartRef__":true,"id":4357},{"__isSmartRef__":true,"id":4359},{"__isSmartRef__":true,"id":4361},{"__isSmartRef__":true,"id":4363},{"__isSmartRef__":true,"id":4365},{"__isSmartRef__":true,"id":4367},{"__isSmartRef__":true,"id":4369},{"__isSmartRef__":true,"id":4371}],"layout":{"__isSmartRef__":true,"id":4373},"showsHalos":false,"prevScroll":[0,0],"name":"ObjectEditorScriptPane","charsReplaced":"codeBase","lastFindLoc":195,"partsBinMetaInfo":{"__isSmartRef__":true,"id":4374},"_ClipMode":"auto","_FontSize":9,"lastSyntaxHighlightTime":1,"doitContext":{"__isSmartRef__":true,"id":3558},"savedTextString":"// changed at Thu Nov 22 2012 14:37:14 GMT+0100 (CET) by jenslincke \nthis.addScript(function updateRecursive(url, nextFunc) {\n this.log(\"recursive update \" + url.relativePathFrom(URL.root)\n)\n this.updateSearchIndex(url, 1, function() {\n url.asWebResource().getSubElements(1).subCollections\n .doAndContinue(function(next, ea) {\n this.updateRecursive(ea, 1, next)\n }.bind(this), nextFunc)\n }.bind(this))\n\n}).tag([]);","_Align":"left","lastSearchString":"migrate","eventHandler":{"__isSmartRef__":true,"id":4375},"attributeConnections":[{"__isSmartRef__":true,"id":4376},{"__isSmartRef__":true,"id":4391},{"__isSmartRef__":true,"id":4392}],"doNotSerialize":["$$textString","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors"],"doNotCopyProperties":["$$textString"],"_MinTextWidth":588.0166612695056,"_MinTextHeight":null,"lastSaveSource":"// changed at Fri Jun 22 2012 02:12:24 GMT+0200 (CEST) by cschuster \nthis.addScript(function setCurrentFrame(frame) {\n this.currentFrame = frame;\n this.get(\"FrameSource\").showSource(frame);\n this.get(\"MappingList\").updateList(\n frame.listItemsForIntrospection()\n );\n if (frame.isResuming()) {\n this.get(\"ContinueButton\").isActive = true;\n this.get(\"StepIntoButton\").isActive = true;\n this.get(\"StepOverButton\").isActive = true;\n this.get(\"RestartButton\").isActive = true;\n } else {\n this.get(\"ContinueButton\").isActive = false;\n this.get(\"StepIntoButton\").isActive = false;\n this.get(\"StepOverButton\").isActive = false;\n this.get(\"RestartButton\").isActive = false;\n }\n}).tag([]);","isBeingDragged":false,"draggingEnabled":false,"objectEditorPane":{"__isSmartRef__":true,"id":4006},"isCopyMorphRef":true,"morphRefId":1,"statusMorph":{"__isSmartRef__":true,"id":4394},"derivationIds":[219,"DD5046D0-C1D6-412A-83C9-CD7EE63D40E0","4D92BDFD-A599-4154-A197-A4B1292C1619","98551F68-B128-4262-9BC2-6B8AC7C8D7C0","47731662-FF8E-4C0F-A170-FD5C56A06021","3FC7FDE6-156F-4056-BB04-B76D8B6C5472","C1E8D5BB-56F9-47B3-A520-BEEFEF791823","115FC149-EEF9-415A-A5B7-AB0B9D0170A4","0D66FA39-01E7-4F16-840C-4FA0FA14DD10","B0A74693-DE3F-4867-8DC0-61B098A8F0D1","3547765B-E224-48EC-B58F-278C1DC7422E","8561ACCF-315A-46EC-9412-BC5D4C55D437","533D6602-9E1A-414A-9646-0FEF9ECCEBF7","5141CF81-6EA1-419B-97AC-62C22FEFC658","B9E83FD9-9781-4F00-8A07-0C96E0D29D3D","034F48B5-B4B1-4DF5-9FA5-9A9CFB99F43A","70FBC800-1914-4F9C-A8E4-2190F72E2902","64465644-E389-4AA2-BE05-93FB591B45D0","E80928FE-6AC8-4FE0-B0A2-7C7A0C7D5E85","E24E50AD-DCA6-4D01-A523-CC1E4FB09222","27E050B0-3192-426E-B01D-907ECF280A68","A241F064-0186-4F84-A037-84CBD9E0D24D","829776FC-15F2-466D-B5F4-88CC9444B1B8","22E56E25-3268-413C-B033-1DB2D96AFA9B","FD5B6693-EB83-4E16-BEA6-D5E23C7E3D48","0A2AD01B-8B4E-4779-9FDF-A504DBC86B5D","EBDFA302-80A1-48E9-B1B3-6143F685CCFF","AB62E3F9-D889-47F9-922A-C440E6382005","6675A7FB-925B-4D65-9CBE-77F2760A6040","122CA78C-89E9-45CE-ADE1-33219233E35A","0A19446A-7C58-465E-9B96-6D7E1CFCDEC5"],"owner":{"__isSmartRef__":true,"id":4006},"syntaxHighlightingWhileTyping":true,"#startLetters":"enable","_Rotation":0,"_Scale":1,"_syntaxHighlightTimeout":null,"lastSyntaxHighlightTimes":[1,5,7,3,4,5,5,11,10,10],"_lastSyntaxHighlightTime":49,"previousSelection":[237,279],"_WordBreak":"break-all","__serializedExpressions__":["_Padding","distanceToDragEvent","_Position"],"textString":"// changed at Fri Jun 22 2012 02:12:24 GMT+0200 (CEST) by cschuster \nthis.addScript(function setCurrentFrame(frame) {\n this.currentFrame = frame;\n this.get(\"FrameSource\").showSource(frame);\n this.get(\"MappingList\").updateList(\n frame.listItemsForIntrospection()\n );\n if (frame.isResuming()) {\n this.get(\"ContinueButton\").isActive = true;\n this.get(\"StepIntoButton\").isActive = true;\n this.get(\"StepOverButton\").isActive = true;\n this.get(\"RestartButton\").isActive = true;\n } else {\n this.get(\"ContinueButton\").isActive = false;\n this.get(\"StepIntoButton\").isActive = false;\n this.get(\"StepOverButton\").isActive = false;\n this.get(\"RestartButton\").isActive = false;\n }\n}).tag([]);","priorSelectionRange":[237,279],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4399},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(2,1,0,0)","distanceToDragEvent":"lively.pt(341.2,-18.3)","_Position":"lively.pt(200.0,40.0)"},"4242":{"_BorderWidth":1,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"auto","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(590.0,380.8)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)","_Padding":"lively.rect(0,0,0,0)"},"4243":{"style":{"__isSmartRef__":true,"id":4244},"chunkOwner":{"__isSmartRef__":true,"id":4241},"_id":"_2314","storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4244":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"4245":{"_id":"_2315","style":{"__isSmartRef__":true,"id":4246},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":" changed at Fri Jun 22 2012 02:12:24 GMT+0200 (CEST) by cschuster ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4246":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"4247":{"_id":"_2316","style":{"__isSmartRef__":true,"id":4248},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4248":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"4249":{"_id":"_2317","style":{"__isSmartRef__":true,"id":4250},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4250":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4251":{"_id":"_2318","style":{"__isSmartRef__":true,"id":4252},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".addScript(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4252":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4253":{"_id":"_2319","style":{"__isSmartRef__":true,"id":4254},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4254":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4255":{"_id":"_2320","style":{"__isSmartRef__":true,"id":4256},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":" setCurrentFrame(frame) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4256":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4257":{"_id":"_2321","style":{"__isSmartRef__":true,"id":4258},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4258":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"4259":{"_id":"_2322","style":{"__isSmartRef__":true,"id":4260},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4260":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4261":{"_id":"_2323","style":{"__isSmartRef__":true,"id":4262},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4262":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4263":{"_id":"_2324","style":{"__isSmartRef__":true,"id":4264},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".currentFrame = frame;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4264":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4265":{"_id":"_2325","style":{"__isSmartRef__":true,"id":4266},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4266":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4267":{"_id":"_2326","style":{"__isSmartRef__":true,"id":4268},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".get(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4268":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4269":{"_id":"_2327","style":{"__isSmartRef__":true,"id":4270},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\"FrameSource\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4270":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"4271":{"_id":"_2328","style":{"__isSmartRef__":true,"id":4272},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":").showSource(frame);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4272":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4273":{"_id":"_2329","style":{"__isSmartRef__":true,"id":4274},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4274":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4275":{"_id":"_2330","style":{"__isSmartRef__":true,"id":4276},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".get(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4276":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4277":{"_id":"_2331","style":{"__isSmartRef__":true,"id":4278},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\"MappingList\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4278":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"4279":{"_id":"_2332","style":{"__isSmartRef__":true,"id":4280},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":").updateList(\n frame.listItemsForIntrospection()\n );\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4280":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4281":{"_id":"_2333","style":{"__isSmartRef__":true,"id":4282},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4282":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"4283":{"_id":"_2334","style":{"__isSmartRef__":true,"id":4284},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":" (frame.isResuming()) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4284":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4285":{"_id":"_2335","style":{"__isSmartRef__":true,"id":4286},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4286":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"4287":{"_id":"_2336","style":{"__isSmartRef__":true,"id":4288},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4288":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4289":{"_id":"_2337","style":{"__isSmartRef__":true,"id":4290},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4290":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4291":{"_id":"_2338","style":{"__isSmartRef__":true,"id":4292},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".get(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4292":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4293":{"_id":"_2339","style":{"__isSmartRef__":true,"id":4294},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\"ContinueButton\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4294":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"4295":{"_id":"_2340","style":{"__isSmartRef__":true,"id":4296},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":").isActive = true;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4296":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4297":{"_id":"_2341","style":{"__isSmartRef__":true,"id":4298},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4298":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4299":{"_id":"_2342","style":{"__isSmartRef__":true,"id":4300},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".get(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4300":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4301":{"_id":"_2343","style":{"__isSmartRef__":true,"id":4302},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\"StepIntoButton\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4302":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"4303":{"_id":"_2344","style":{"__isSmartRef__":true,"id":4304},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":").isActive = true;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4304":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4305":{"_id":"_2345","style":{"__isSmartRef__":true,"id":4306},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4306":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4307":{"_id":"_2346","style":{"__isSmartRef__":true,"id":4308},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".get(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4308":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4309":{"_id":"_2347","style":{"__isSmartRef__":true,"id":4310},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\"StepOverButton\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4310":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"4311":{"_id":"_2348","style":{"__isSmartRef__":true,"id":4312},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":").isActive = true;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4312":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4313":{"_id":"_2349","style":{"__isSmartRef__":true,"id":4314},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4314":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4315":{"_id":"_2350","style":{"__isSmartRef__":true,"id":4316},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".get(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4316":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4317":{"_id":"_2351","style":{"__isSmartRef__":true,"id":4318},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\"RestartButton\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4318":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"4319":{"_id":"_2352","style":{"__isSmartRef__":true,"id":4320},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":").isActive = true;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4320":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4321":{"_id":"_2353","style":{"__isSmartRef__":true,"id":4322},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4322":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"4323":{"_id":"_2354","style":{"__isSmartRef__":true,"id":4324},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4324":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4325":{"_id":"_2355","style":{"__isSmartRef__":true,"id":4326},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"else","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4326":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"4327":{"_id":"_2356","style":{"__isSmartRef__":true,"id":4328},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4328":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4329":{"_id":"_2357","style":{"__isSmartRef__":true,"id":4330},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4330":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"4331":{"_id":"_2358","style":{"__isSmartRef__":true,"id":4332},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4332":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4333":{"_id":"_2359","style":{"__isSmartRef__":true,"id":4334},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4334":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4335":{"_id":"_2360","style":{"__isSmartRef__":true,"id":4336},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".get(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4336":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4337":{"_id":"_2361","style":{"__isSmartRef__":true,"id":4338},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\"ContinueButton\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4338":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"4339":{"_id":"_2362","style":{"__isSmartRef__":true,"id":4340},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":").isActive = false;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4340":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4341":{"_id":"_2363","style":{"__isSmartRef__":true,"id":4342},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4342":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4343":{"_id":"_2364","style":{"__isSmartRef__":true,"id":4344},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".get(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4344":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4345":{"_id":"_2365","style":{"__isSmartRef__":true,"id":4346},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\"StepIntoButton\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4346":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"4347":{"_id":"_2366","style":{"__isSmartRef__":true,"id":4348},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":").isActive = false;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4348":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4349":{"_id":"_2367","style":{"__isSmartRef__":true,"id":4350},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4350":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4351":{"_id":"_2368","style":{"__isSmartRef__":true,"id":4352},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".get(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4352":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4353":{"_id":"_2369","style":{"__isSmartRef__":true,"id":4354},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\"StepOverButton\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4354":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"4355":{"_id":"_2370","style":{"__isSmartRef__":true,"id":4356},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":").isActive = false;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4356":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4357":{"_id":"_2371","style":{"__isSmartRef__":true,"id":4358},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4358":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"4359":{"_id":"_2372","style":{"__isSmartRef__":true,"id":4360},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":".get(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4360":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4361":{"_id":"_2373","style":{"__isSmartRef__":true,"id":4362},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\"RestartButton\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4362":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"4363":{"_id":"_2374","style":{"__isSmartRef__":true,"id":4364},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":").isActive = false;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4364":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4365":{"_id":"_2375","style":{"__isSmartRef__":true,"id":4366},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4366":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"4367":{"_id":"_2376","style":{"__isSmartRef__":true,"id":4368},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4368":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4369":{"_id":"_2377","style":{"__isSmartRef__":true,"id":4370},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4370":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"4371":{"_id":"_2378","style":{"__isSmartRef__":true,"id":4372},"chunkOwner":{"__isSmartRef__":true,"id":4241},"storedString":").tag([]);","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4372":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"4373":{"resizeWidth":true,"resizeHeight":true},"4374":{"requiredModules":[],"partsSpaceName":"PartsBin/Widgets/","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4375":{"morph":{"__isSmartRef__":true,"id":4241},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4376":{"sourceObj":{"__isSmartRef__":true,"id":4241},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":4377},"targetMethodName":"indicateUnsavedChanges","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4377":{"submorphs":[],"scripts":[],"id":"FEF759F5-7E1B-4F91-BF3E-887C7BCED981","shape":{"__isSmartRef__":true,"id":4378},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"ChangeIndicator","partsBinMetaInfo":{"__isSmartRef__":true,"id":4379},"eventHandler":{"__isSmartRef__":true,"id":4380},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":4006},"layout":{"__isSmartRef__":true,"id":4381},"isBeingDragged":false,"grabbingEnabled":false,"draggingEnabled":false,"isCopyMorphRef":true,"morphRefId":26,"derivationIds":[220,"EE491D24-F056-4AFE-A669-7B7048C6C3D1","3FA4A8C3-0FC0-43A0-8C00-00A96F9022E2","62DAD3C6-A81D-450F-B32F-601EA7E619D8","EEDB0C58-5990-481A-A7FF-ACB1A2DF08DD","16F708CB-1259-4A75-BAEF-1A5216C6CB19","97CA61D3-E09B-43CD-9880-D8B36FA303F3","0AF6BEEC-8A57-44FF-9D8D-40BA6CC6A0CD","AF2BEE76-C34F-457E-8699-9896327A4C07","5EC39FF0-602F-44A2-BE3A-04FCA127E5D1","44CEBF61-9A92-4E36-9576-425D5054B471","E9ACF86B-B775-4125-83BC-7E4500597D40","FE62294A-F891-45E4-AAE7-6F386B5A8CB5","8771140D-0D57-4CAF-A57B-857F858CCC73","BE774795-5889-4DB8-A366-1C774555761B","89DA16ED-5636-4C0D-B52F-A327A5526DD6","94DAC0EC-79E9-48E5-90D5-2BB59495BD0B","048AE915-30CF-4DE4-819B-F7D41CE99585","0417EEDD-6B12-4AF1-B7BC-875E32521980","5DFAFB2A-C915-429E-A58C-030C229C9AB8","BD996DFA-D248-4D9C-AF33-C5BA2511A09E","9F92F095-A6B5-46E8-ADA1-051904ABE386","214CA9C7-6225-49ED-A484-C2D8D92B35ED","7258922C-C991-4EF3-A09B-318D8B6A1306","1F8069E8-E7D5-4153-AE2C-96F1782F041F","74FBBDBC-44BA-4111-B3DB-58142522023F","91D6D585-64D8-491A-AAAB-AF0A99533DEC","1761630D-17E9-4E04-A73C-9D15C26E19E3","B8E628C4-20D6-4B26-B820-A8D07194CE6F","6511B508-3FE2-4BDC-906A-D4E827163B0D","9016491A-C768-4B45-9321-45C78BCEE4A6"],"_ClipMode":"visible","_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","savedColor","alarmColor","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4382},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(782.0,40.0)","savedColor":"Color.rgb(0,0,0)","alarmColor":"Color.rgb(240,0,0)","distanceToDragEvent":"lively.pt(37.3,-17.5)"},"4378":{"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(8.6,9.7)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"4379":{"partsSpaceName":"PartsBin/Basic","comment":"A simple box morph. A really blue one. Its amazing what you can build out of simple boxes.... Who needs stars when you got blue rectangles!","migrationLevel":2,"partName":"Rectangle","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4380":{"morph":{"__isSmartRef__":true,"id":4377},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4381":{"moveHorizontal":true,"adjustForNewBounds":true},"4382":{"indicateUnsavedChanges":{"__isSmartRef__":true,"id":4383},"setColors":{"__isSmartRef__":true,"id":4387}},"4383":{"varMapping":{"__isSmartRef__":true,"id":4384},"source":"function indicateUnsavedChanges() {\n if (this.owner.scriptPane.hasChanged()) {\n this.setColors(this.alarmColor);\n } else {\n this.setColors(this.savedColor);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4385},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4384":{"this":{"__isSmartRef__":true,"id":4377}},"4385":{"user":"lauritz","timestamp":{"__isSmartRef__":true,"id":4386}},"4386":{"isSerializedDate":true,"string":"Tue Sep 27 2011 20:09:19 GMT+0200 (CEST)"},"4387":{"varMapping":{"__isSmartRef__":true,"id":4388},"source":"function setColors(color) {\n this.setFill(color);\n this.setBorderColor(color);\n}","funcProperties":{"__isSmartRef__":true,"id":4389},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4388":{"this":{"__isSmartRef__":true,"id":4377}},"4389":{"user":"lauritz","timestamp":{"__isSmartRef__":true,"id":4390}},"4390":{"isSerializedDate":true,"string":"Tue Sep 27 2011 19:06:09 GMT+0200 (CEST)"},"4391":{"sourceObj":{"__isSmartRef__":true,"id":4241},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":4241},"targetMethodName":"highlightJavaScriptSyntax","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4392":{"sourceObj":{"__isSmartRef__":true,"id":4241},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":4241},"targetMethodName":"highlightSyntaxDebounced","varMapping":{"__isSmartRef__":true,"id":4393},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4393":{"source":{"__isSmartRef__":true,"id":4241},"target":{"__isSmartRef__":true,"id":4241}},"4394":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4395},"id":553,"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":4396}],"eventHandler":{"__isSmartRef__":true,"id":4398},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"visible","fixedWidth":true,"fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":11,"_MaxTextWidth":90,"_MinTextWidth":90,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"_Align":"center","_VerticalAlign":"center","owner":null,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(275.5,224.3)","_TextColor":"Color.rgb(0,204,0)"},"4395":{"_ClipMode":"visible","_BorderWidth":1,"_StrokeOpacity":0,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,25.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(204,204,204)","_Fill":"Color.rgb(255,255,255)"},"4396":{"style":{"__isSmartRef__":true,"id":4397},"chunkOwner":{"__isSmartRef__":true,"id":4394},"_id":"_1099","storedString":"saved source","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4397":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4398":{"morph":{"__isSmartRef__":true,"id":4394},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4399":{"doSave":{"__isSmartRef__":true,"id":4400},"boundEval":{"__isSmartRef__":true,"id":4408},"reset":{"__isSmartRef__":true,"id":4416},"display":{"__isSmartRef__":true,"id":4420},"hasChanged":{"__isSmartRef__":true,"id":4424},"displayStatus":{"__isSmartRef__":true,"id":4428},"updateTarget":{"__isSmartRef__":true,"id":4432}},"4400":{"varMapping":{"__isSmartRef__":true,"id":4401},"source":"function doSave() {\n $super();\n var saved = this.boundEval(this.getTextString());\n if (saved) {\n this.lastSaveSource = this.textString;\n this.owner.changeIndicator.indicateUnsavedChanges();\n this.owner.updateLists();\n this.owner.selectChangedContent(this.getTextString());\n this.displayStatus(\"saved source\", Color.green);\n } else {\n this.displayStatus(\"not saved\", Color.red);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4406},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4401":{"this":{"__isSmartRef__":true,"id":4241},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4402}},"4402":{"$super":{"__isSmartRef__":true,"id":4403}},"4403":{"varMapping":{"__isSmartRef__":true,"id":4404},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4405},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4404":{"obj":{"__isSmartRef__":true,"id":4241},"name":"doSave"},"4405":{},"4406":{"timestamp":{"__isSmartRef__":true,"id":4407},"user":"lauritz"},"4407":{"isSerializedDate":true,"string":"Thu Nov 17 2011 23:15:19 GMT+0100 (CET)"},"4408":{"varMapping":{"__isSmartRef__":true,"id":4409},"source":"function boundEval(str) {\n var result;\n\n this.objectEditorPane.ensureAnnotationLayer();\n withLayers([ScriptAnnotationLayer], function() {\n result = $super(str);\n })\n \n return result\n}","funcProperties":{"__isSmartRef__":true,"id":4414},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4409":{"this":{"__isSmartRef__":true,"id":4241},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4410}},"4410":{"$super":{"__isSmartRef__":true,"id":4411}},"4411":{"varMapping":{"__isSmartRef__":true,"id":4412},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4413},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4412":{"obj":{"__isSmartRef__":true,"id":4241},"name":"boundEval"},"4413":{},"4414":{"timestamp":{"__isSmartRef__":true,"id":4415},"user":"lauritz","categories":[]},"4415":{"isSerializedDate":true,"string":"Wed Nov 16 2011 05:41:53 GMT+0100 (CET)"},"4416":{"varMapping":{"__isSmartRef__":true,"id":4417},"source":"function reset() {\n this.doitContext = null;\n this.lastSaveSource = \"\";\n this.textString = \"\";\n this.lastSaveSource = this.textString;\n this.enableSyntaxHighlighting();\n}","funcProperties":{"__isSmartRef__":true,"id":4418},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4417":{"this":{"__isSmartRef__":true,"id":4241}},"4418":{"timestamp":{"__isSmartRef__":true,"id":4419},"user":"cschuster","tags":[]},"4419":{"isSerializedDate":true,"string":"Wed May 16 2012 20:52:57 GMT+0200 (CEST)"},"4420":{"varMapping":{"__isSmartRef__":true,"id":4421},"source":"function display(jsCode) {\n this.lastSaveSource = jsCode;\n this.setTextString(jsCode);\n this.enableSyntaxHighlighting();\n this.highlightJavaScriptSyntax();\n this.applyStyle({align: 'left'});\n}","funcProperties":{"__isSmartRef__":true,"id":4422},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4421":{"this":{"__isSmartRef__":true,"id":4241}},"4422":{"timestamp":{"__isSmartRef__":true,"id":4423},"user":"lauritz","tags":[]},"4423":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:02:26 GMT+0200 (CEST)"},"4424":{"varMapping":{"__isSmartRef__":true,"id":4425},"source":"function hasChanged() {\n var cleanText = function (string) {\n var source = string.trim();\n if (source.substring(0,2) === \"//\") {\n // removes annotation line\n source = source.substring(source.indexOf(\"\\n\"), source.length);\n source = source.trim();\n }\n if (source === 'undefined' || source === 'null') source = '';\n return source;\n }\n var cleanedTextString = cleanText(this.textString);\n var cleanedLastSource = cleanText(this.lastSaveSource);\n return cleanedTextString !== cleanedLastSource;\n}","funcProperties":{"__isSmartRef__":true,"id":4426},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4425":{"this":{"__isSmartRef__":true,"id":4241}},"4426":{"timestamp":{"__isSmartRef__":true,"id":4427},"user":"lauritz","categories":[]},"4427":{"isSerializedDate":true,"string":"Mon Oct 03 2011 18:29:45 GMT+0200 (CEST)"},"4428":{"varMapping":{"__isSmartRef__":true,"id":4429},"source":"function displayStatus(msg, color, delay) {\n if (!this.statusMorph) {\n this.statusMorph = new TextMorph(pt(100,25).extentAsRectangle());\n this.statusMorph.applyStyle({borderWidth: 1, strokeOpacity: 0, borderColor: Color.gray});\n this.statusMorph.setFill(this.owner.getFill());\n this.statusMorph.setFontSize(11);\n this.statusMorph.setAlign('center');\n this.statusMorph.setVerticalAlign('center');\n }\n this.statusMorph.setTextString(msg);\n this.statusMorph.centerAt(this.innerBounds().center());\n this.statusMorph.setTextColor(color || Color.black);\n this.addMorph(this.statusMorph);\n (function() { this.statusMorph.remove() }).bind(this).delay(delay || 2); \n}","funcProperties":{"__isSmartRef__":true,"id":4430},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4429":{"this":{"__isSmartRef__":true,"id":4241}},"4430":{"timestamp":{"__isSmartRef__":true,"id":4431},"user":"lauritz","categories":[]},"4431":{"isSerializedDate":true,"string":"Wed Nov 23 2011 18:23:05 GMT+0100 (CET)"},"4432":{"varMapping":{"__isSmartRef__":true,"id":4433},"source":"function updateTarget(target) {\n module('lively.ide.SyntaxHighlighting').load(true);\n this.doitContext = this.owner.target;\n}","funcProperties":{"__isSmartRef__":true,"id":4434},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4433":{"this":{"__isSmartRef__":true,"id":4241}},"4434":{"timestamp":{"__isSmartRef__":true,"id":4435},"user":"lauritz","tags":[]},"4435":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:07:42 GMT+0200 (CEST)"},"4436":{"submorphs":[{"__isSmartRef__":true,"id":4437}],"scripts":[],"id":847,"shape":{"__isSmartRef__":true,"id":4442},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4443},"lighterFill":{"__isSmartRef__":true,"id":4448},"label":{"__isSmartRef__":true,"id":4437},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"showsHalos":false,"_Rotation":0,"name":"ObjectEditorClassButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":4453},"_Scale":1,"owner":null,"layout":{"__isSmartRef__":true,"id":4454},"eventHandler":{"__isSmartRef__":true,"id":4455},"__serializedExpressions__":["_Position","padding"],"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(820.0,9.0)","padding":"lively.rect(5,0,0,0)"},"4437":{"submorphs":[],"scripts":[],"id":848,"shape":{"__isSmartRef__":true,"id":4438},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":116,"_MaxTextHeight":18,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"owner":{"__isSmartRef__":true,"id":4436},"eventsAreIgnored":true,"textChunks":[{"__isSmartRef__":true,"id":4439}],"prevScroll":[0,0],"_FontFamily":"Helvetica, Sans-Serif","_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","_Align":"center","_Scale":1,"eventHandler":{"__isSmartRef__":true,"id":4441},"_HandStyle":"default","_PointerEvents":"none","__serializedExpressions__":["_Position","textColor","padding","_Padding"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","textColor":"Color.rgb(0,0,0)","padding":"lively.rect(5,0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"4438":{"borderWidth":0,"fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(116.0,18.0)","_BorderColor":"Color.rgb(0,0,0)"},"4439":{"style":{"__isSmartRef__":true,"id":4440},"chunkOwner":{"__isSmartRef__":true,"id":4437},"storedString":"","_id":"_1355","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4440":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4441":{"morph":{"__isSmartRef__":true,"id":4437},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4442":{"_Fill":{"__isSmartRef__":true,"id":4443},"_BorderWidth":1,"_BorderRadius":5,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(116.0,20.0)","_BorderColor":"Color.rgb(214,214,214)"},"4443":{"stops":[{"__isSmartRef__":true,"id":4444},{"__isSmartRef__":true,"id":4445},{"__isSmartRef__":true,"id":4446},{"__isSmartRef__":true,"id":4447}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4444":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"4445":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4446":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4447":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"4448":{"stops":[{"__isSmartRef__":true,"id":4449},{"__isSmartRef__":true,"id":4450},{"__isSmartRef__":true,"id":4451},{"__isSmartRef__":true,"id":4452}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4449":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4450":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4451":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4452":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4453":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":2,"comment":"Simple button. Connect to 'fire' to trigger actions when the button is pressed.","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4454":{"moveHorizontal":true},"4455":{"morph":{"__isSmartRef__":true,"id":4436},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4456":{"submorphs":[],"scripts":[],"id":"E1D4857B-40F3-48AE-AA31-FD34ED719190","shape":{"__isSmartRef__":true,"id":4457},"droppingEnabled":true,"halosEnabled":true,"itemList":["-- ALL --"],"selectedLineNo":1,"showsHalos":false,"name":"ObjectEditorConnectionList","partsBinMetaInfo":{"__isSmartRef__":true,"id":4458},"_ClipMode":"auto","owner":{"__isSmartRef__":true,"id":4006},"attributeConnections":[{"__isSmartRef__":true,"id":4459}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"prevScroll":[0,0],"layout":{"__isSmartRef__":true,"id":4461},"eventHandler":{"__isSmartRef__":true,"id":4462},"_FontSize":10,"grabbingEnabled":false,"draggingEnabled":false,"isCopyMorphRef":true,"morphRefId":19,"derivationIds":[209,"3900F5DF-0FF7-4C94-8BDB-44AAE12B4A3E","35301083-B60D-4A43-8566-23860EEB4C04","9CC401CC-5A35-4643-935B-FD049C284E16","C9879D40-5E79-4C56-AA79-562ED82BF052","9F6F9261-EB76-4B58-B77D-7D70813A1ED7","8B59E237-F372-4F70-9768-7E9C1A7A021D","FC85F1B9-1978-42D2-850C-BD249981E8B4","D2B607C6-A89B-4B3F-91BB-720451EAB98D","CC361093-FF73-479B-9431-C645CB48F518","307D3B7C-C0E1-484F-8D7E-39FBA9D8EDA5","038AF132-861E-4A77-8756-E6B476413639","65B6CA87-98DE-4473-B4DD-F8763BC3B06A","0AA0E45B-6DCC-4AE0-938C-E53794A511DF","806ACC1C-1353-436B-B1FE-568846777C17","C74AE022-1184-4FDF-A53D-A17627FF61EA","686AF565-EEB0-4AB7-A12E-26727DAD9291","1102A5B3-9973-4471-9EDD-FD7AB802DEA6","BEB06225-53D0-4ACC-9154-DC2DEB5728B7","E32FE34B-7520-4612-B927-C8F9EDFC69BB","D21F598A-4E44-4752-B205-9595DF0E9AE3","FD6670F8-44F6-436A-960F-8BE8890F8B75","C5522110-E6CA-4F96-B33E-BEBF6978088A","BC9AC080-8315-49F1-B6CB-42F3B802F7D9","242A0967-D906-4396-9326-3CC0C9C3EA60","39C09174-63A5-421F-AB88-7A98755661E5","40C2C766-248F-451F-9D85-D1E4DCCB559D","C89F1632-FADA-4B3E-B2D9-1C1020ACB29A","F78E083D-993E-4963-8A7F-CB7182DE3931","CA8FBD0F-D14E-42E6-A6D4-803B9EE12264","06822A39-C077-4531-B3A6-3DAC393B6E04"],"selection":null,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4463},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(10.0,346.7)","distanceToDragEvent":"lively.pt(125.0,-17.1)"},"4457":{"_BorderWidth":1,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(180.0,74.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)","_Padding":"lively.rect(0,0,0,0)"},"4458":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4459":{"sourceObj":{"__isSmartRef__":true,"id":4456},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":4006},"targetMethodName":"displaySourceForConnection","converterString":"function (value) {\n if (!value) return;\n return (value === '-- ALL --') ? null : value[1];\n}","updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4460},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4460":{"source":{"__isSmartRef__":true,"id":4456},"target":{"__isSmartRef__":true,"id":4006}},"4461":{"resizeHeight":false,"moveVertical":true},"4462":{"morph":{"__isSmartRef__":true,"id":4456},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4463":{"preselectItem":{"__isSmartRef__":true,"id":4464}},"4464":{"varMapping":{"__isSmartRef__":true,"id":4465},"source":"function preselectItem() {\n if (this.getList().size() === 2) {\n this.selectAt(1);\n } else {\n this.selectAt(0);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4466},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4465":{"this":{"__isSmartRef__":true,"id":4456}},"4466":{"timestamp":{"__isSmartRef__":true,"id":4467},"user":"lauritz"},"4467":{"isSerializedDate":true,"string":"Thu Nov 17 2011 04:12:58 GMT+0100 (CET)"},"4468":{"submorphs":[{"__isSmartRef__":true,"id":4469}],"scripts":[],"id":47,"shape":{"__isSmartRef__":true,"id":4473},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4474},"lighterFill":{"__isSmartRef__":true,"id":4479},"label":{"__isSmartRef__":true,"id":4469},"attributeConnections":[{"__isSmartRef__":true,"id":4484}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"_Rotation":0,"name":"ObjectEditorTargetButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":4485},"_Scale":1,"owner":null,"isCopyMorphRef":true,"morphRefId":1,"__serializedExpressions__":["_Position","padding"],"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(215.0,35.0)","padding":"lively.rect(5,0,0,0)"},"4469":{"submorphs":[],"scripts":[],"id":48,"shape":{"__isSmartRef__":true,"id":4470},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":116,"_MaxTextHeight":20,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"owner":{"__isSmartRef__":true,"id":4468},"eventsAreIgnored":true,"textChunks":[{"__isSmartRef__":true,"id":4471}],"prevScroll":[0,0],"_FontFamily":"Helvetica, Sans-Serif","_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","_Align":"center","_Scale":1,"__serializedExpressions__":["_Position","textColor","padding","_Padding"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","textColor":"Color.rgb(0,0,0)","padding":"lively.rect(5,0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"4470":{"borderWidth":0,"fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(116.0,20.0)","_BorderColor":"Color.rgb(0,0,0)"},"4471":{"style":{"__isSmartRef__":true,"id":4472},"chunkOwner":{"__isSmartRef__":true,"id":4469},"storedString":"","_id":"_1356","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4472":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4473":{"_Fill":{"__isSmartRef__":true,"id":4474},"_BorderWidth":1,"_BorderRadius":5,"__serializedExpressions__":["_Position","_Extent","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(116.0,20.0)","_BorderColor":"Color.rgb(214,214,214)"},"4474":{"stops":[{"__isSmartRef__":true,"id":4475},{"__isSmartRef__":true,"id":4476},{"__isSmartRef__":true,"id":4477},{"__isSmartRef__":true,"id":4478}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4475":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"4476":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4477":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4478":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"4479":{"stops":[{"__isSmartRef__":true,"id":4480},{"__isSmartRef__":true,"id":4481},{"__isSmartRef__":true,"id":4482},{"__isSmartRef__":true,"id":4483}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4480":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4481":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4482":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4483":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4484":{"sourceObj":{"__isSmartRef__":true,"id":4468},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4013},"targetMethodName":"chooseTargetMorphMenu","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4485":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":2,"comment":"Simple button. Connect to 'fire' to trigger actions when the button is pressed.","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4486":{"submorphs":[],"scripts":[],"id":435,"shape":{"__isSmartRef__":true,"id":4487},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":218,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":12,"name":"ObjectEditorMorphSelector","partsBinMetaInfo":{"__isSmartRef__":true,"id":4488},"textChunks":[{"__isSmartRef__":true,"id":4489}],"charsReplaced":"","lastFindLoc":5,"priorSelectionRange":[15,15],"prevScroll":[0,0],"_ClipMode":"visible","list":[],"attributeConnections":[{"__isSmartRef__":true,"id":4491}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"listMorph":null,"_WhiteSpaceHandling":"pre-wrap","owner":null,"_Align":"left","eventHandler":{"__isSmartRef__":true,"id":4493},"_MinTextWidth":218,"_MinTextHeight":null,"scriptAnnotations":{"__isSmartRef__":true,"id":4494},"selection":{"__isSmartRef__":true,"id":4005},"previousSelection":[0,13],"isCopyMorphRef":true,"morphRefId":1,"isBeingDragged":false,"draggingEnabled":false,"layout":{"__isSmartRef__":true,"id":4513},"_Rotation":0,"_Scale":1,"savedTextString":"100","__serializedExpressions__":["_Position","textColor","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4514},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(200.0,10.0)","textColor":"Color.rgb(0,0,0)","distanceToDragEvent":"lively.pt(153.9,-23.7)"},"4487":{"fill":null,"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":3.7000000000000006,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(220.0,20.0)","_BorderColor":"Color.rgb(192,192,192)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(244,244,244)"},"4488":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4489":{"style":{"__isSmartRef__":true,"id":4490},"chunkOwner":{"__isSmartRef__":true,"id":4486},"storedString":"","_id":"_1357","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4490":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4491":{"sourceObj":{"__isSmartRef__":true,"id":4486},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":4006},"targetMethodName":"setTarget","converterString":"function (name) { return $world.get(name)}","updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4492},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4492":{"source":{"__isSmartRef__":true,"id":4486},"target":{"__isSmartRef__":true,"id":4006}},"4493":{"morph":{"__isSmartRef__":true,"id":4486},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4494":{"createListMorph":{"__isSmartRef__":true,"id":4495},"displayTopLevelMorphs":{"__isSmartRef__":true,"id":4497},"onMouseUp":{"__isSmartRef__":true,"id":4499},"resetConnections":{"__isSmartRef__":true,"id":4501},"setTargetToListSelection":{"__isSmartRef__":true,"id":4503},"setTargetOfPane":{"__isSmartRef__":true,"id":4505},"onBlur":{"__isSmartRef__":true,"id":4507},"reset":{"__isSmartRef__":true,"id":4509},"onMouseDown":{"__isSmartRef__":true,"id":4511}},"4495":{"time":{"__isSmartRef__":true,"id":4496},"user":"lauritz"},"4496":{"isSerializedDate":true,"string":"Fri Oct 28 2011 05:27:29 GMT+0200 (CEST)"},"4497":{"time":{"__isSmartRef__":true,"id":4498},"user":"lauritz"},"4498":{"isSerializedDate":true,"string":"Fri Oct 14 2011 23:48:37 GMT+0200 (CEST)"},"4499":{"time":{"__isSmartRef__":true,"id":4500},"user":"lauritz"},"4500":{"isSerializedDate":true,"string":"Mon Oct 03 2011 18:51:14 GMT+0200 (CEST)"},"4501":{"time":{"__isSmartRef__":true,"id":4502},"user":"lauritz"},"4502":{"isSerializedDate":true,"string":"Wed Sep 28 2011 01:03:17 GMT+0200 (CEST)"},"4503":{"time":{"__isSmartRef__":true,"id":4504},"user":"lauritz"},"4504":{"isSerializedDate":true,"string":"Sat Oct 15 2011 00:00:58 GMT+0200 (CEST)"},"4505":{"time":{"__isSmartRef__":true,"id":4506},"user":"lauritz"},"4506":{"isSerializedDate":true,"string":"Mon Oct 03 2011 18:34:37 GMT+0200 (CEST)"},"4507":{"time":{"__isSmartRef__":true,"id":4508},"user":"lauritz"},"4508":{"isSerializedDate":true,"string":"Fri Oct 07 2011 19:24:18 GMT+0200 (CEST)"},"4509":{"time":{"__isSmartRef__":true,"id":4510},"user":"lauritz"},"4510":{"isSerializedDate":true,"string":"Fri Oct 07 2011 19:26:15 GMT+0200 (CEST)"},"4511":{"time":{"__isSmartRef__":true,"id":4512},"user":"lauritz"},"4512":{"isSerializedDate":true,"string":"Mon Oct 17 2011 19:49:00 GMT+0200 (CEST)"},"4513":{},"4514":{"getList":{"__isSmartRef__":true,"id":4515},"setList":{"__isSmartRef__":true,"id":4518},"reset":{"__isSmartRef__":true,"id":4521},"example":{"__isSmartRef__":true,"id":4524},"removeList":{"__isSmartRef__":true,"id":4527},"onBlur":{"__isSmartRef__":true,"id":4530},"createListMorph":{"__isSmartRef__":true,"id":4537},"resetConnections":{"__isSmartRef__":true,"id":4540},"displayTopLevelMorphs":{"__isSmartRef__":true,"id":4543},"setTargetToListSelection":{"__isSmartRef__":true,"id":4546},"setTargetOfPane":{"__isSmartRef__":true,"id":4549},"onMouseDown":{"__isSmartRef__":true,"id":4552}},"4515":{"varMapping":{"__isSmartRef__":true,"id":4516},"source":"function getList() {\n return this.world().indentedListItemsOfMorphNames();\n}","funcProperties":{"__isSmartRef__":true,"id":4517},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4516":{"this":{"__isSmartRef__":true,"id":4486}},"4517":{},"4518":{"varMapping":{"__isSmartRef__":true,"id":4519},"source":"function setList(list) {\n return this.list = list;\n}","funcProperties":{"__isSmartRef__":true,"id":4520},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4519":{"this":{"__isSmartRef__":true,"id":4486}},"4520":{},"4521":{"varMapping":{"__isSmartRef__":true,"id":4522},"source":"function reset() {\n this.list = [];\n this.textString = 'empty';\n this.removeList();\n this.resetConnections();\n this.applyStyle({fixedWidth: true, fixedHeight: true, borderWidth: 1, overflow: 'visible'})\n}","funcProperties":{"__isSmartRef__":true,"id":4523},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4522":{"this":{"__isSmartRef__":true,"id":4486}},"4523":{},"4524":{"varMapping":{"__isSmartRef__":true,"id":4525},"source":"function example() {\n/*\nthis.example()\nthis.getList()\n*/\n this.setList(Array.range(0,100));\n this.textString = 'empty';\n}","funcProperties":{"__isSmartRef__":true,"id":4526},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4525":{"this":{"__isSmartRef__":true,"id":4486}},"4526":{},"4527":{"varMapping":{"__isSmartRef__":true,"id":4528},"source":"function removeList() {\n this.listMorph && this.listMorph.remove()\n this.listMorph = null;\n}","funcProperties":{"__isSmartRef__":true,"id":4529},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4528":{"this":{"__isSmartRef__":true,"id":4486}},"4529":{},"4530":{"varMapping":{"__isSmartRef__":true,"id":4531},"source":"function onBlur() {\n $super();\n this.removeList();\n}","funcProperties":{"__isSmartRef__":true,"id":4536},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4531":{"this":{"__isSmartRef__":true,"id":4486},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4532}},"4532":{"$super":{"__isSmartRef__":true,"id":4533}},"4533":{"varMapping":{"__isSmartRef__":true,"id":4534},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4535},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4534":{"obj":{"__isSmartRef__":true,"id":4486},"name":"onBlur"},"4535":{},"4536":{},"4537":{"varMapping":{"__isSmartRef__":true,"id":4538},"source":"function createListMorph() {\n var list = new lively.morphic.List(new Rectangle(0,0, this.getExtent().x, 520));\n list.setList(this.getList());\n list.setFontSize(12);\n\n list.disableGrabbing();\n list.disableDragging();\n \n this.addMorph(list);\n list.setPosition(pt(0,0));\n\n connect(list, 'selection', this, 'setTargetToListSelection');\n \n return list;\n}","funcProperties":{"__isSmartRef__":true,"id":4539},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4538":{"this":{"__isSmartRef__":true,"id":4486}},"4539":{},"4540":{"varMapping":{"__isSmartRef__":true,"id":4541},"source":"function resetConnections() {\n disconnectAll(this);\n connect(this, 'savedTextString', this.owner, 'setTarget', {converter: \n\tfunction (name) { return $world.get(name)}});\n}","funcProperties":{"__isSmartRef__":true,"id":4542},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4541":{"this":{"__isSmartRef__":true,"id":4486}},"4542":{},"4543":{"varMapping":{"__isSmartRef__":true,"id":4544},"source":"function displayTopLevelMorphs() {\n if (this.listMorph) { this.removeList(); return true }\n var list = this.createListMorph(); \n this.addMorph(list);\n this.listMorph = list;\n}","funcProperties":{"__isSmartRef__":true,"id":4545},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4544":{"this":{"__isSmartRef__":true,"id":4486}},"4545":{},"4546":{"varMapping":{"__isSmartRef__":true,"id":4547},"source":"function setTargetToListSelection(selection) { \n this.removeList();\n if (!selection) return;\n if (this.owner.scriptPane.hasChanged()) {\n var that = this;\n var callback = function (confirmed) {\n if (confirmed) that.setTargetOfPane(selection);\n }\n this.owner.confirmUnsavedChanges(callback);\n } else {\n this.setTargetOfPane(selection);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4548},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4547":{"this":{"__isSmartRef__":true,"id":4486}},"4548":{},"4549":{"varMapping":{"__isSmartRef__":true,"id":4550},"source":"function setTargetOfPane(selection) {\n this.owner.setTarget(selection);\n this.setTextString(selection.getName());\n this.removeList();\n}","funcProperties":{"__isSmartRef__":true,"id":4551},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4550":{"this":{"__isSmartRef__":true,"id":4486}},"4551":{},"4552":{"varMapping":{"__isSmartRef__":true,"id":4553},"source":"function onMouseDown(evt) {\n if (evt.isCommandKey() || evt.isRightMouseButtonDown()) return $super(evt);\n if (this.listMorph) {\n return false;\n } else {\n this.displayTopLevelMorphs();\n return true;\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4558},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4553":{"this":{"__isSmartRef__":true,"id":4486},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4554}},"4554":{"$super":{"__isSmartRef__":true,"id":4555}},"4555":{"varMapping":{"__isSmartRef__":true,"id":4556},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4557},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4556":{"obj":{"__isSmartRef__":true,"id":4486},"name":"onMouseDown"},"4557":{},"4558":{},"4559":{"morph":{"__isSmartRef__":true,"id":4013},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4560":{"sortedScriptNamesOfObj":{"__isSmartRef__":true,"id":4561},"setTarget":{"__isSmartRef__":true,"id":4564},"generateSourceForScript":{"__isSmartRef__":true,"id":4567},"generateSourceForConnection":{"__isSmartRef__":true,"id":4570},"generateTargetCode":{"__isSmartRef__":true,"id":4573},"sortedConnectionNamesOfObj":{"__isSmartRef__":true,"id":4576},"displayJavaScriptSource":{"__isSmartRef__":true,"id":4579},"displaySourceForScript":{"__isSmartRef__":true,"id":4582},"displaySourceForConnection":{"__isSmartRef__":true,"id":4585},"newScript":{"__isSmartRef__":true,"id":4588},"newConnection":{"__isSmartRef__":true,"id":4591},"deleteSelectedScript":{"__isSmartRef__":true,"id":4594},"disconnectConnection":{"__isSmartRef__":true,"id":4597},"updateLists":{"__isSmartRef__":true,"id":4600},"displayInitialScript":{"__isSmartRef__":true,"id":4603},"reset":{"__isSmartRef__":true,"id":4606},"selectChangedContent":{"__isSmartRef__":true,"id":4609}},"4561":{"varMapping":{"__isSmartRef__":true,"id":4562},"source":"function sortedScriptNamesOfObj(obj) {\n if (!Functions.own(obj) || Functions.own(obj).size() == 0) return [];\n return Functions.own(obj)\n\t.select(function(name) { return obj[name].hasLivelyClosure })\n\t.sortBy(function(name) { return name.toLowerCase() });\n}","funcProperties":{"__isSmartRef__":true,"id":4563},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4562":{"this":{"__isSmartRef__":true,"id":4013}},"4563":{},"4564":{"varMapping":{"__isSmartRef__":true,"id":4565},"source":"function setTarget(morph) {\n this.reset();\n module('lively.ide.SyntaxHighlighting').load(true);\n this.target = morph;\n this.morphSelector.textString = (this.target.getName() || this.target.toString());\n this.scriptPane.doitContext = this.target;\n this.updateLists();\n this.displayInitialScript();\n}","funcProperties":{"__isSmartRef__":true,"id":4566},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4565":{"this":{"__isSmartRef__":true,"id":4013}},"4566":{},"4567":{"varMapping":{"__isSmartRef__":true,"id":4568},"source":"function generateSourceForScript(scriptName) {\n var script = this.target[scriptName].getOriginal();\n return Strings.format('this.addScript(%s);' ,script)\n}","funcProperties":{"__isSmartRef__":true,"id":4569},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4568":{"this":{"__isSmartRef__":true,"id":4013}},"4569":{},"4570":{"varMapping":{"__isSmartRef__":true,"id":4571},"source":"function generateSourceForConnection(connection) {\n var c = connection, targetObject = this.target;\n\tif (!c.getTargetObj() || !c.getTargetObj().name || \n\t\t!c.getSourceObj() || !c.getSourceObj().name) return String(c);\n\n\tvar optConfig = []\n\tif (c.converterString)\n\t\toptConfig.push(\"converter: \\n\\t\" + c.converterString)\n\tif (c.updaterString)\n\t\toptConfig.push(\"updater: \\n\\t\" + c.updaterString)\n\treturn Strings.format('connect(%s, \"%s\", %s, \"%s\", {%s});', \n\t\t\tthis.generateTargetCode(targetObject, c.getSourceObj()),\n\t\t\tc.getSourceAttrName(),\n\t\t\tthis.generateTargetCode(targetObject, c.getTargetObj()),\n\t\t\tc.getTargetMethodName(),\n\t\t\toptConfig.join(','));\n\n}","funcProperties":{"__isSmartRef__":true,"id":4572},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4571":{"this":{"__isSmartRef__":true,"id":4013}},"4572":{},"4573":{"varMapping":{"__isSmartRef__":true,"id":4574},"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":4575},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4574":{"this":{"__isSmartRef__":true,"id":4013}},"4575":{},"4576":{"varMapping":{"__isSmartRef__":true,"id":4577},"source":"function sortedConnectionNamesOfObj(obj) {\n if (\"attributeConnections\" in obj) {\n return obj.attributeConnections\n .sortBy(function(each) {return name.toLowerCase() })\n .collect(function(each) {return [each.getSourceAttrName(), each]});\n } else {\n return [];\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4578},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4577":{"this":{"__isSmartRef__":true,"id":4013}},"4578":{},"4579":{"varMapping":{"__isSmartRef__":true,"id":4580},"source":"function displayJavaScriptSource(jsCode) {\n this.scriptPane.setTextString(jsCode);\n this.scriptPane.highlightJavaScriptSyntax();\n}","funcProperties":{"__isSmartRef__":true,"id":4581},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4580":{"this":{"__isSmartRef__":true,"id":4013}},"4581":{},"4582":{"varMapping":{"__isSmartRef__":true,"id":4583},"source":"function displaySourceForScript(scriptName) {\n if (!scriptName) return;\n var code = \"\", that = this;\n if (scriptName === \"-- ALL --\") {\n this.sortedScriptNamesOfObj(this.target).forEach(function(each) {\n code = code.concat(that.generateSourceForScript(each)).concat(\"\\n\\n\");\n });\n } else {\n code = this.generateSourceForScript(scriptName); \n }\n this.displayJavaScriptSource(code);\n}","funcProperties":{"__isSmartRef__":true,"id":4584},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4583":{"this":{"__isSmartRef__":true,"id":4013}},"4584":{},"4585":{"varMapping":{"__isSmartRef__":true,"id":4586},"source":"function displaySourceForConnection(connection) {\n if (!connection) return;\n var code = \"\", that = this;\n if ((typeof connection === \"string\") && connection === \"-- ALL --\") {\n this.sortedConnectionNamesOfObj(this.target).forEach(function(each) {\n code = code.concat(that.generateSourceForConnection(each[1])).concat(\"\\n\\n\");\n })\n } else {\n code = this.generateSourceForConnection(connection);\n }\n this.displayJavaScriptSource(code);\n}","funcProperties":{"__isSmartRef__":true,"id":4587},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4586":{"this":{"__isSmartRef__":true,"id":4013}},"4587":{},"4588":{"varMapping":{"__isSmartRef__":true,"id":4589},"source":"function newScript() {\n if (this.target) {\n var code = \"this.addScript(function SCRIPTNAME() {\\n\\t\\n});\";\n this.displayJavaScriptSource(code);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4590},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4589":{"this":{"__isSmartRef__":true,"id":4013}},"4590":{},"4591":{"varMapping":{"__isSmartRef__":true,"id":4592},"source":"function newConnection() {\n if (this.target) {\n var code = \"connect(SOURCE, SOURCE_PROPERTY, TARGET, TARGET_PROPERTY);\";\n this.displayJavaScriptSource(code);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4593},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4592":{"this":{"__isSmartRef__":true,"id":4013}},"4593":{},"4594":{"varMapping":{"__isSmartRef__":true,"id":4595},"source":"function deleteSelectedScript() {\n if (this.scriptList.selection && this.target) {\n if (!this.target.hasOwnProperty(this.scriptList.selection)) return;\n delete this.target[this.scriptList.selection];\n this.updateLists();\n this.displayInitialScript();\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4596},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4595":{"this":{"__isSmartRef__":true,"id":4013}},"4596":{},"4597":{"varMapping":{"__isSmartRef__":true,"id":4598},"source":"function disconnectConnection() {\n var selection = this.connectionList.selection;\n if (selection && \n (typeof selection !== \"string\") &&\n this.target.attributeConnections.indexOf(selection[1]) > -1) {\n var c = this.connectionList.selection[1];\n disconnect(c.sourceObj, c.sourceAttrName, c.targetObj, c.targetMethodName);\n this.updateLists();\n this.displayInitialScript();\n } \n}","funcProperties":{"__isSmartRef__":true,"id":4599},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4598":{"this":{"__isSmartRef__":true,"id":4013}},"4599":{},"4600":{"varMapping":{"__isSmartRef__":true,"id":4601},"source":"function updateLists() {\n this.scriptList.setList(this.sortedScriptNamesOfObj(this.target));\n var scriptListItems = this.scriptList.getList();\n scriptListItems.unshift(\"-- ALL --\");\n this.scriptList.setList(scriptListItems);\n\n this.connectionList.setList(this.sortedConnectionNamesOfObj(this.target));\n var connectionListItems = this.connectionList.getList();\n connectionListItems.unshift(\"-- ALL --\");\n this.connectionList.setList(connectionListItems);\n}","funcProperties":{"__isSmartRef__":true,"id":4602},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4601":{"this":{"__isSmartRef__":true,"id":4013}},"4602":{},"4603":{"varMapping":{"__isSmartRef__":true,"id":4604},"source":"function displayInitialScript() {\n if (this.scriptList.getList().size() > 1) {\n this.scriptList.selectAt(0);\n } else if (this.connectionList.getList().size() > 1) {\n this.connectionList.selectAt(0);\n } else {\n this.scriptList.selectAt(0);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4605},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4604":{"this":{"__isSmartRef__":true,"id":4013}},"4605":{},"4606":{"varMapping":{"__isSmartRef__":true,"id":4607},"source":"function reset() {\n this.target = null;\n this.scriptPane.doitContext = null;\n this.scriptList.setList();\n this.connectionList.setList();\n this.scriptPane.setTextString(\"\");\n this.morphSelector.reset();\n}","funcProperties":{"__isSmartRef__":true,"id":4608},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4607":{"this":{"__isSmartRef__":true,"id":4013}},"4608":{},"4609":{"varMapping":{"__isSmartRef__":true,"id":4610},"source":"function selectChangedContent(source) {\n\n var addScriptRegex = /this\\.addScript\\s*\\(\\s*function\\s*([^\\(]*)/g;\n var addScriptMatches = [];\n var addScriptMatch = addScriptRegex.exec(source);\n while (addScriptMatch) {\n addScriptMatches.push(addScriptMatch[1]);\n addScriptMatch = addScriptRegex.exec(source);\n }\n \n // if scripts were added, select either a specific one or all\n if (addScriptMatches.length > 0) { \n if (addScriptMatches.length === 1) {\n var index = this.scriptList.getList().indexOf(addScriptMatches[0]);\n if (index > -1) { \n return this.scriptList.selectAt(index);\n }\n }\n return this.scriptList.selectAt(0);\n }\n\n var connectionRegex = \n /connect\\(\\s*([^,]*)\\s*,\\s*\"([^,]*)\"\\s*,\\s*([^,]*)\\s*,\\s*\"([^,]*)\"/g;\n var connectionMatches = [];\n var connectionMatch = connectionRegex.exec(source);\n while (connectionMatch) {\n connectionMatches.push(connectionMatch);\n connectionMatch = connectionRegex.exec(source);\n }\n\n // if connections were made, select either a specific one or all\n if (connectionMatches.length > 0) {\n if (connectionMatches.length === 1) {\n var match = connectionMatches[0];\n for (var i=0; i -1) {\n var c = selection[1];\n disconnect(c.sourceObj, c.sourceAttrName, c.targetObj, c.targetMethodName);\n editor.updateLists();\n editor.displayInitialScript();\n } \n }\n\n var message = 'Disconnect \"' + selection[0] +'\" connection?';\n var callback = disconnectConnection;\n\n var dialog = new lively.morphic.ConfirmDialog(message, callback);\n\n return this.world().openDialog(dialog);\n}","funcProperties":{"__isSmartRef__":true,"id":4702},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4701":{"this":{"__isSmartRef__":true,"id":4677}},"4702":{"timestamp":{"__isSmartRef__":true,"id":4703},"user":"lauritz","categories":[]},"4703":{"isSerializedDate":true,"string":"Fri Nov 11 2011 01:46:54 GMT+0100 (CET)"},"4704":{"submorphs":[{"__isSmartRef__":true,"id":4705}],"scripts":[],"id":"596D16FB-9CAC-4988-8297-D140D8F968DD","shape":{"__isSmartRef__":true,"id":4710},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4716},"lighterFill":{"__isSmartRef__":true,"id":4721},"label":{"__isSmartRef__":true,"id":4705},"attributeConnections":[{"__isSmartRef__":true,"id":4726}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"name":"ObjectEditorRemoveScriptButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":4728},"owner":{"__isSmartRef__":true,"id":4006},"eventHandler":{"__isSmartRef__":true,"id":4729},"isCopyMorphRef":true,"morphRefId":24,"draggingEnabled":false,"objectEditorPane":{"__isSmartRef__":true,"id":4006},"derivationIds":[217,"FDC10087-12CF-4570-9211-8309CB6A9AA3","E18FC530-4B1F-4F08-8DA6-3866A3519E56","04A2AAC3-6A9E-40BB-9408-EBB2567EE63B","8C1A42CE-840C-4AAE-BD79-C93A445B9EBF","61FC11FA-B87E-4EFE-BD15-564D3178B68B","ED34F9B5-9E00-41B3-8313-D9C3D6B3B231","A7481F4B-D444-4B4F-BDA2-4F9F03AEC24D","7DDF7175-34FC-4521-A7C3-580A8BE63351","DEA39C05-FAD7-4882-AB3D-0EE12C3408F9","99186A50-1411-4B6F-B1CB-FF0742C20D7D","10F3E467-6BB8-4D07-BD17-8C50593FD6B8","7260818C-6472-4288-8BDD-1E7798A543F3","DEBB5BDB-018D-4BA1-9FB9-73DC84C51D89","D75BCAED-3029-46EB-B944-4A102BB1BC0F","9A977DA2-B325-4DFA-9683-3DC9ECEFAAC0","48A5078F-B4A5-4F4E-884D-84CCDFFBE6F0","33905494-AA01-4311-8398-1F6C3D4F1BAC","5D7201A7-1374-49AD-851F-E3167EFED99E","9B69B6C6-71F2-402E-89D1-E97FC2D3AE13","DA1B3A74-F4A6-427B-8FBD-3D2E9D8CD866","DBFC4A4F-8601-4C32-9460-53902C3B0F37","ED51CA7C-CE32-4CF5-9398-0BA9B791FF5E","4F7A7C1A-3788-478C-AFF5-BA62C7FCB01D","FCEFF15E-E5B8-4C7E-A139-302649441119","3674B8DC-F4E5-4A5C-ACEC-96D743BB6050","33E0336F-FD6A-4AAB-AECB-B7D6C7C80631","761015EE-47CF-40F6-A403-8A959B2DB0A6","361B531D-7A1C-441A-BE8B-0B503543FF6C","E283DDFD-1D8F-4E3D-A0BC-40C30221FFDC","0EC23EA3-7B34-429A-922D-5D139F127D1E"],"_ClipMode":"visible","_Rotation":0,"_Scale":1,"isPressed":false,"__serializedExpressions__":["_Position","padding","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4730},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(160.0,40.0)","padding":"lively.rect(5,0,0,0)","distanceToDragEvent":"lively.pt(33.4,-21.3)"},"4705":{"submorphs":[],"scripts":[],"id":"3A6E7CE8-FE96-4296-867F-CB3C7E612667","shape":{"__isSmartRef__":true,"id":4706},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":25,"_MaxTextHeight":null,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"owner":{"__isSmartRef__":true,"id":4704},"eventsAreIgnored":true,"textChunks":[{"__isSmartRef__":true,"id":4707}],"prevScroll":[0,0],"_FontFamily":"Helvetica, Sans-Serif","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_Align":"center","eventHandler":{"__isSmartRef__":true,"id":4709},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":25,"_MinTextHeight":null,"draggingEnabled":false,"derivationIds":[218,"852A7BD9-52EE-4708-A2D5-1BDECF33C958","7B4F173E-9726-472A-9B30-530D4AA92AD9","CBA217F6-2832-4213-9ABE-47753C1A4180","E6B97D1D-95D5-4644-9359-1D08D42A51F4","4391A57E-70C2-4628-9828-DD668CCE546E","F0C6C298-3B8B-42B2-B5E9-E5B82F607B01","DF0CAF75-4247-4797-B1A0-AD7444391E2A","B4C4F09B-F663-47A1-B85F-461D5452F5F8","FD966AB1-4685-4151-9A38-B1B21B0237EF","CA91FC2C-D7CC-4123-AFD2-108F8F0C2E97","88F1581A-7AEF-4646-B7F9-3890CDDB8494","DC577877-7F00-4238-9246-08C2A10C0CC9","818C9467-71A2-44D6-B01F-1523A0CD5476","C0CF3DDB-AA12-49E0-B12A-6B620552BB47","853E19A1-E97D-463D-A24F-0148671EB696","0203CA4C-E523-4F7D-824B-F09BA3914BDD","18B98A59-6C8E-4386-B3EF-A17259C51C0F","24D84E0A-FA16-47DE-934D-E60729EEB227","7035F1EB-4B8C-4F20-B3AC-966403F55C0A","69831817-0662-4848-8481-44558987D21D","BA13E4C6-DF2A-4059-9174-7725FA3FE514","3E989A29-2A8F-4AFE-B312-A0852B746605","7B675033-945D-4AE1-B85F-DBD35C7B02AA","E0D76A08-70F9-4710-907E-B2D83D60D29A","495F5D43-B450-45B7-B238-FC12AA8F6488","B551041D-4E6E-44F3-8405-1DCE5344BCCD","0A287650-EC32-45AA-8504-0513B196727F","717B0EFA-1422-4224-9A53-5A494F6191A4","C86C167E-8A7D-43BE-AFED-AAEDA70B95EE","97247E8A-2818-4B44-BCDD-348126BD380C"],"_Scale":1,"_WordBreak":"break-all","__serializedExpressions__":["_Position","textColor","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","textColor":"Color.rgb(0,0,0)","padding":"lively.rect(5,0,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"4706":{"borderWidth":0,"fill":null,"_ClipMode":"hidden","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(25.0,20.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"4707":{"style":{"__isSmartRef__":true,"id":4708},"chunkOwner":{"__isSmartRef__":true,"id":4705},"storedString":"-","_id":"_1363","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4708":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4709":{"morph":{"__isSmartRef__":true,"id":4705},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4710":{"_Fill":{"__isSmartRef__":true,"id":4711},"_BorderWidth":1,"_BorderRadius":5,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(25.0,20.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"4711":{"stops":[{"__isSmartRef__":true,"id":4712},{"__isSmartRef__":true,"id":4713},{"__isSmartRef__":true,"id":4714},{"__isSmartRef__":true,"id":4715}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4712":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"4713":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"4714":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"4715":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"4716":{"stops":[{"__isSmartRef__":true,"id":4717},{"__isSmartRef__":true,"id":4718},{"__isSmartRef__":true,"id":4719},{"__isSmartRef__":true,"id":4720}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4717":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"4718":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4719":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4720":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"4721":{"stops":[{"__isSmartRef__":true,"id":4722},{"__isSmartRef__":true,"id":4723},{"__isSmartRef__":true,"id":4724},{"__isSmartRef__":true,"id":4725}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4722":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4723":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4724":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4725":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4726":{"sourceObj":{"__isSmartRef__":true,"id":4704},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4704},"targetMethodName":"deleteSelectedScript","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4727},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4727":{"source":{"__isSmartRef__":true,"id":4704},"target":{"__isSmartRef__":true,"id":4704}},"4728":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":2,"comment":"Simple button. Connect to 'fire' to trigger actions when the button is pressed.","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4729":{"morph":{"__isSmartRef__":true,"id":4704},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4730":{"deleteSelectedScript":{"__isSmartRef__":true,"id":4731}},"4731":{"varMapping":{"__isSmartRef__":true,"id":4732},"source":"function deleteSelectedScript() {\n\n var editor = this.objectEditorPane;\n var selection = editor.scriptList.selection;\n\n if (!editor.target || editor.scriptList.getList().size() < 2) \n return; \n\n var deleteScript = function (confirmed) {\n if (!confirmed) return;\n \n if (selection && editor.target) {\n if (!editor.target.hasOwnProperty(selection)) \n return;\n delete editor.target[selection];\n editor.updateLists();\n editor.displayInitialScript();\n }\n }\n\n var message = 'Delete \"' + selection + '\" script?';\n var callback = deleteScript;\n\n var dialog = new lively.morphic.ConfirmDialog(message, callback);\n\n return this.world().openDialog(dialog);\n}","funcProperties":{"__isSmartRef__":true,"id":4733},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4732":{"this":{"__isSmartRef__":true,"id":4704}},"4733":{"timestamp":{"__isSmartRef__":true,"id":4734},"user":"lauritz"},"4734":{"isSerializedDate":true,"string":"Thu Nov 17 2011 18:12:21 GMT+0100 (CET)"},"4735":{"submorphs":[{"__isSmartRef__":true,"id":4736}],"scripts":[],"id":"5B4A107B-6453-47D8-B198-F88E365E4E19","shape":{"__isSmartRef__":true,"id":4742},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4743},"lighterFill":{"__isSmartRef__":true,"id":4748},"label":{"__isSmartRef__":true,"id":4736},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"showsHalos":false,"name":"ObjectEditorMorphSelector","partsBinMetaInfo":{"__isSmartRef__":true,"id":4753},"list":[],"eventHandler":{"__isSmartRef__":true,"id":4754},"owner":{"__isSmartRef__":true,"id":4006},"textString":"","selection":{"__isSmartRef__":true,"id":4755},"_ClipMode":"visible","prevScroll":[0,0],"derivationIds":[221,"4AC64FBA-95AC-42B2-A078-B6DA97889093","E26ED0E6-C4CE-4C82-94D5-175270E8459E","D292F2FC-C2B6-48AE-B779-8CC5868FFA49","53A862EB-032C-4BF0-9B21-58C7E0C0A9B2","CC4D188B-510F-48DE-A0E1-EC8D2CD63F9F","0CD057F2-3517-4849-A69E-1EF79B05ACE8","66EBBB7D-8FA7-4D43-AE78-A18DA3B970BA","A50C1893-4138-4E29-865B-92F53F76D08A","1EC5D2B9-3539-419A-8DD6-CE82DEABB02C","95DC06D5-F4C7-49E2-8A01-110D1B0AFBD0","672DEFAB-2BE5-4C60-9779-3B44694FBEB1","E3476213-5872-492C-BE29-0C6A5A150ED8","AA2F6ABE-1CCB-403D-94DD-8FB371F3DDCE","54B67D51-AB19-40A0-A2A6-EC51F3171CAC","1CF44342-896F-4ACB-847F-7CB3CD10ED5A","279A9257-1667-4E0C-844B-A4E0D02462F0","DDCBD835-4B3F-4B8F-9623-696DA76C3A2C","D2CB17F3-5DD0-4E97-BF99-40A95ABF976B","FA519665-2394-43D3-8DCF-802A158F3291","90519BB5-7419-46E0-B7E3-4C26304F3414","0B7FC23C-C63C-4F20-8BAF-1BD1B7205762","B54FAD70-E598-4B06-8F41-00843A06D4B0","5A8ECBD6-ADDE-43FA-8D9E-BC483898DF8A","69DD3160-FAD3-4AD8-9B1C-CB9229AD8034","2C8AD368-8815-41D5-8C8D-CD36ECCF4A96","80C5655D-B03D-413B-A84C-D59A60D8EEEC","BA8066E4-5B8E-4048-97C5-332953805999","E27E2CB2-789E-4269-B5E8-2631B5D2840B","0EDAA37B-E8BA-4DE7-820A-17A44E299F5C","81F15272-5E6E-4544-B6FE-96BDD357A17C"],"_Rotation":0,"_Scale":1,"isPressed":false,"__serializedExpressions__":["_Position","padding","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4761},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(200.1,10.0)","padding":"lively.rect(5,0,0,0)","distanceToDragEvent":"lively.pt(122.9,-11.6)"},"4736":{"submorphs":[],"scripts":[],"id":"5041794C-A11E-43AC-AFFA-577D5C7C5D48","shape":{"__isSmartRef__":true,"id":4737},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":220,"_MaxTextHeight":null,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"owner":{"__isSmartRef__":true,"id":4735},"eventsAreIgnored":true,"textChunks":[{"__isSmartRef__":true,"id":4738}],"prevScroll":[0,0],"attributeConnections":[{"__isSmartRef__":true,"id":4740}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"eventHandler":{"__isSmartRef__":true,"id":4741},"_HandStyle":"default","_PointerEvents":"none","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":220,"_MinTextHeight":null,"_Align":"left","_FontFamily":"Arial","_FontSize":10,"derivationIds":[222,"30F054A3-7658-405B-8098-B7D87AA8A9ED","556D6E07-45B7-42EC-A486-DE275EF0B034","06B0B080-467A-46CC-8B0D-9C0A9B9A71F1","5E2D96C9-BB9B-4735-8673-A79847435197","B48AA022-2022-4A2A-9090-4D884FB3DFD3","8B2F743A-98C5-45E1-B03C-5019114EAC47","D09C56C3-A2DC-4BDF-B8A1-6365138ECD01","74158C3D-B79E-43E7-B111-48701B10ACE2","B19E117B-E40F-4B9F-86AC-BFB2AAFD5336","4E3B3D72-E52C-44ED-AE32-78939BA1ECFD","2459D1F0-E49C-4882-AB4C-D78C1A496962","3D8D3B02-0459-45C1-A606-D0DB4B07958C","78AAE288-D261-4BEA-9436-C8C31B890B44","2E10F795-9892-4BF7-9A46-BCB90FD6112E","DE32EFA9-C920-42F6-9F2E-7EDABEC006AF","23FBFC79-1927-48FD-8C1C-09FFD7539784","3409506C-9BAE-43DA-BCAF-94392F9646DF","ED94289E-98FC-4126-9EED-25FDC98D5BFC","63C2F1D8-3A1B-464B-9945-1F661D4CFE26","782AAB82-32E9-4A37-9DC0-3118636C2CCE","D564B3C8-D9B5-4D7D-80DD-16715ED878F6","D9344242-9F26-4A5D-B86D-6FAEA43B439C","E7E3A5EE-8F82-4F04-9E65-771E2E4AC9D1","55BF0D1C-FCDF-4D8B-9E42-8EF0F36074A3","B3BE05E0-5704-45B4-8B1D-E7FDA5CE6235","9A503124-0F1D-4390-B668-E4457CBC1376","26D1AD85-C129-4C24-A16A-B6863FC35F41","7425ED3B-1418-47C8-A2EE-52CDF3C4D860","C4B9C269-4F6E-4EA2-A6EA-38C21A011591","952BC06E-5007-4618-9289-931E66292E9D"],"_Scale":1,"_WordBreak":"break-all","__serializedExpressions__":["_Position","textColor","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(2.0,1.0)","textColor":"Color.rgb(0,0,0)","padding":"lively.rect(5,0,0,0)","_Padding":"lively.rect(5,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"4737":{"borderWidth":0,"fill":null,"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(220.0,20.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"4738":{"style":{"__isSmartRef__":true,"id":4739},"chunkOwner":{"__isSmartRef__":true,"id":4736},"_id":"_2011","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4739":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4740":{"sourceObj":{"__isSmartRef__":true,"id":4736},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":4735},"targetMethodName":"selection","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4741":{"morph":{"__isSmartRef__":true,"id":4736},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4742":{"_Fill":{"__isSmartRef__":true,"id":4743},"_BorderWidth":1,"_BorderRadius":5,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(220.0,20.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"4743":{"stops":[{"__isSmartRef__":true,"id":4744},{"__isSmartRef__":true,"id":4745},{"__isSmartRef__":true,"id":4746},{"__isSmartRef__":true,"id":4747}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4744":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"4745":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4746":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4747":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"4748":{"stops":[{"__isSmartRef__":true,"id":4749},{"__isSmartRef__":true,"id":4750},{"__isSmartRef__":true,"id":4751},{"__isSmartRef__":true,"id":4752}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4749":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4750":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4751":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4752":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4753":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":2,"partName":"ChoiceButton","comment":"Click on it and you get a list of things to choose from.","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4754":{"morph":{"__isSmartRef__":true,"id":4735},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4755":{"submorphs":[],"scripts":[],"id":181,"shape":{"__isSmartRef__":true,"id":4756},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":580,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":28,"name":"Title","partsBinMetaInfo":{"__isSmartRef__":true,"id":4757},"textChunks":[{"__isSmartRef__":true,"id":4758}],"eventHandler":{"__isSmartRef__":true,"id":4760},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":580,"_MinTextHeight":null,"_Rotation":0,"_Scale":1.002003004005006,"previousSelection":[35,35],"priorSelectionRange":[23,23],"charsReplaced":"WIP / Proof of Concept","lastFindLoc":22,"_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","isCopyMorphRef":true,"morphRefId":2,"prevScroll":[0,0],"__serializedExpressions__":["_Position","textColor","_TextColor","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(37.0,23.0)","textColor":"Color.rgb(0,0,0)","_TextColor":"Color.rgb(0,79,152)","distanceToDragEvent":"lively.pt(221.0,-12.0)"},"4756":{"fill":null,"_BorderWidth":0,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(580.0,43.0)","_BorderColor":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)"},"4757":{"partsSpaceName":"PartsBin/Worlds/","comment":"For example a world title.","partName":"Title","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4758":{"style":{"__isSmartRef__":true,"id":4759},"chunkOwner":{"__isSmartRef__":true,"id":4755},"storedString":"","_id":"_1365","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4759":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4760":{"morph":{"__isSmartRef__":true,"id":4755},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4761":{"reset":{"__isSmartRef__":true,"id":4762},"onMouseDown":{"__isSmartRef__":true,"id":4766},"onBlur":{"__isSmartRef__":true,"id":4774},"createScenePresentation":{"__isSmartRef__":true,"id":4782},"presentTargetChooser":{"__isSmartRef__":true,"id":4786},"removeTargetChooser":{"__isSmartRef__":true,"id":4790},"removeHighlight":{"__isSmartRef__":true,"id":4794},"highlightCurrentTarget":{"__isSmartRef__":true,"id":4798},"updateTargetFromSelection":{"__isSmartRef__":true,"id":4802},"currentMorphicScene":{"__isSmartRef__":true,"id":4806},"highlightTarget":{"__isSmartRef__":true,"id":4810},"setLabel":{"__isSmartRef__":true,"id":4814},"updateTargetFromOwner":{"__isSmartRef__":true,"id":4822}},"4762":{"varMapping":{"__isSmartRef__":true,"id":4763},"source":"function reset() {\n this.removeTargetChooser();\n this.setLabel('empty');\n this.applyStyle({fixedWidth: true, fixedHeight: true, borderWidth: 1, overflow: 'visible'});\n}","funcProperties":{"__isSmartRef__":true,"id":4764},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4763":{"this":{"__isSmartRef__":true,"id":4735}},"4764":{"timestamp":{"__isSmartRef__":true,"id":4765},"user":"lauritz","tags":[]},"4765":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:04:57 GMT+0200 (CEST)"},"4766":{"varMapping":{"__isSmartRef__":true,"id":4767},"source":"function onMouseDown(evt) {\n if (evt.isCommandKey() || evt.isRightMouseButtonDown()) {\n return $super(evt);\n }\n \n if (this.listMorph) {\n // clicked on morph, not the list, not the list's scrollbar\n if (evt.target === this.renderContext().shapeNode)\n this.removeTargetChooser();\n } else {\n this.presentTargetChooser();\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4772},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4767":{"this":{"__isSmartRef__":true,"id":4735},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4768}},"4768":{"$super":{"__isSmartRef__":true,"id":4769}},"4769":{"varMapping":{"__isSmartRef__":true,"id":4770},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4771},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4770":{"obj":{"__isSmartRef__":true,"id":4735},"name":"onMouseDown"},"4771":{},"4772":{"timestamp":{"__isSmartRef__":true,"id":4773},"user":"lauritz","tags":[]},"4773":{"isSerializedDate":true,"string":"Fri Aug 03 2012 12:44:10 GMT+0200 (CEST)"},"4774":{"varMapping":{"__isSmartRef__":true,"id":4775},"source":"function onBlur(evt) {\n $super(evt);\n \n // remove the scene presentation when clicked elsewhere\n var target = evt.world.clickedOnMorph;\n if (!this.listMorph || !this.listMorph.isAncestorOf(target)) {\n this.removeTargetChooser();\n } else {\n this.focus();\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4780},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4775":{"this":{"__isSmartRef__":true,"id":4735},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4776}},"4776":{"$super":{"__isSmartRef__":true,"id":4777}},"4777":{"varMapping":{"__isSmartRef__":true,"id":4778},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4779},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4778":{"obj":{"__isSmartRef__":true,"id":4735},"name":"onBlur"},"4779":{},"4780":{"timestamp":{"__isSmartRef__":true,"id":4781},"user":"lauritz","tags":[]},"4781":{"isSerializedDate":true,"string":"Fri Aug 03 2012 13:29:05 GMT+0200 (CEST)"},"4782":{"varMapping":{"__isSmartRef__":true,"id":4783},"source":"function createScenePresentation() {\n var that = this,\n items = this.currentMorphicScene(),\n height = this.owner.getExtent().y,\n bounds = new Rectangle(0, this.getExtent().y, this.getExtent().x * 2, height),\n treeMorph = new lively.morphic.Tree(),\n rect = lively.morphic.Morph.makeRectangle(bounds),\n currentTarget = null;\n \n treeMorph.childrenPerPage = 10000;\n treeMorph.setName(\"MorphSelectorTree\");\n treeMorph.getLayouter().defer();\n treeMorph.setItem(items);\n treeMorph.childNodes.each(function (n) {\n n.expand();\n })\n \n currentTarget = this.highlightCurrentTarget(treeMorph);\n \n rect.setFill(Color.white);\n rect.beClip(true);\n rect.disableGrabbing();\n rect.disableDragging();\n rect.setBorderWidth(1);\n rect.setBorderColor(Color.rgb(150,150,150));\n rect.addMorph(treeMorph);\n rect.treeMorph = treeMorph;\n rect.currentTarget = currentTarget;\n\n return rect;\n}","funcProperties":{"__isSmartRef__":true,"id":4784},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4783":{"this":{"__isSmartRef__":true,"id":4735}},"4784":{"timestamp":{"__isSmartRef__":true,"id":4785},"user":"lauritz","tags":[]},"4785":{"isSerializedDate":true,"string":"Fri Aug 03 2012 13:29:56 GMT+0200 (CEST)"},"4786":{"varMapping":{"__isSmartRef__":true,"id":4787},"source":"function presentTargetChooser() {\n var list = this.createScenePresentation(),\n tree = list.treeMorph,\n target = list.currentTarget\n \n list.setVisible(false)\n this.addMorph(list)\n this.listMorph = list\n list.focus()\n\n // need temp here, doesn't work otherwise, strange errors... Javascript WAT\n var layouting = function() {\n list.setVisible(true)\n \n if (target) {\n var globalTransform = new lively.morphic.Similitude()\n for (var morph = target; (morph != list) && \n (morph != undefined); morph = morph.owner) {\n globalTransform.preConcatenate(morph.getTransform());\n } \n \n list.scrollRectIntoView(target.getBounds().\n translatedBy(globalTransform.getTranslation()));\n tree.getLayouter().resume();\n }\n }\n layouting.morphicDelay(1);\n}","funcProperties":{"__isSmartRef__":true,"id":4788},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4787":{"this":{"__isSmartRef__":true,"id":4735}},"4788":{"timestamp":{"__isSmartRef__":true,"id":4789},"user":"lauritz","tags":[]},"4789":{"isSerializedDate":true,"string":"Fri Aug 03 2012 13:13:22 GMT+0200 (CEST)"},"4790":{"varMapping":{"__isSmartRef__":true,"id":4791},"source":"function removeTargetChooser() {\n if (this.listMorph) {\n this.listMorph.remove();\n delete this.listMorph; \n }\n}","funcProperties":{"__isSmartRef__":true,"id":4792},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4791":{"this":{"__isSmartRef__":true,"id":4735}},"4792":{"timestamp":{"__isSmartRef__":true,"id":4793},"user":"lauritz","tags":[]},"4793":{"isSerializedDate":true,"string":"Fri Aug 03 2012 12:43:38 GMT+0200 (CEST)"},"4794":{"varMapping":{"__isSmartRef__":true,"id":4795},"source":"function removeHighlight(node) {\n node.submorphs[0].setFill(Color.rgb(255,255,255))\n}","funcProperties":{"__isSmartRef__":true,"id":4796},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4795":{"this":{"__isSmartRef__":true,"id":4735}},"4796":{"timestamp":{"__isSmartRef__":true,"id":4797},"user":"lauritz","tags":[]},"4797":{"isSerializedDate":true,"string":"Fri Aug 03 2012 13:32:15 GMT+0200 (CEST)"},"4798":{"varMapping":{"__isSmartRef__":true,"id":4799},"source":"function highlightCurrentTarget(tree) {\n var target = this.owner.target,\n nodes = tree.childNodes,\n highlightNode;\n\n if (!target) {\n return\n } else if (target.isMorph) {\n var expandables = [target],\n nextOwner = target,\n currentNode\n while (nextOwner.owner) {\n expandables.push(nextOwner.owner)\n nextOwner = nextOwner.owner\n }\n expandables.reverse().each(function (m) {\n currentNode = nodes.detect(function (n) {\n return n.item.value === m;\n })\n if (currentNode) {\n nodes = currentNode.childNodes\n if (!nodes && currentNode.item.children) {\n currentNode.expand();\n nodes = currentNode.childNodes;\n }\n } else {\n return;\n }\n })\n if (currentNode && currentNode.item.value === target) {\n highlightNode = currentNode;\n }\n } else {\n var groupNodes = nodes.detect(function (n) {\n return n.item.value === 'groups';\n }).childNodes\n highlightNode = groupNodes.detect(function (n) {\n // group names are unique\n return n.item.value.name === target.name;\n })\n }\n\n if (highlightNode) {\n this.highlightTarget(highlightNode);\n }\n return highlightNode;\n}","funcProperties":{"__isSmartRef__":true,"id":4800},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4799":{"this":{"__isSmartRef__":true,"id":4735}},"4800":{"timestamp":{"__isSmartRef__":true,"id":4801},"user":"lauritz","tags":[]},"4801":{"isSerializedDate":true,"string":"Fri Aug 03 2012 13:31:39 GMT+0200 (CEST)"},"4802":{"varMapping":{"__isSmartRef__":true,"id":4803},"source":"function updateTargetFromSelection(selection) { \n var that = this;\n var update = function(confirmed) {\n if (confirmed) {\n that.owner.setTarget(selection);\n that.setLabel(selection.getName() || selection.toString());\n }\n }\n \n this.removeTargetChooser();\n if (this.owner.hasUnsavedChanges && this.owner.hasUnsavedChanges()) {\n this.owner.confirmUnsavedChanges(update);\n } else {\n update(true);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4804},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4803":{"this":{"__isSmartRef__":true,"id":4735}},"4804":{"timestamp":{"__isSmartRef__":true,"id":4805},"user":"lauritz","tags":[]},"4805":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:04:57 GMT+0200 (CEST)"},"4806":{"varMapping":{"__isSmartRef__":true,"id":4807},"source":"function currentMorphicScene() {\n var onSelect = function onSelect(tree) {\n this.selector.updateTargetFromSelection(this.value);\n }\n var properties = {\n editorPane: this.owner,\n selector: this\n }\n \n return {children: [{ \n name: 'World',\n value: this.world(),\n selector: this,\n onSelect: onSelect,\n children: this.world().submorphs.invoke('treeItemsOfMorphNames',\n {scripts: [onSelect],\n properties: properties,\n showUnnamed: true}).compact()\n }]};\n}","funcProperties":{"__isSmartRef__":true,"id":4808},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4807":{"this":{"__isSmartRef__":true,"id":4735}},"4808":{"timestamp":{"__isSmartRef__":true,"id":4809},"user":"lauritz","tags":[]},"4809":{"isSerializedDate":true,"string":"Fri Aug 03 2012 13:29:43 GMT+0200 (CEST)"},"4810":{"varMapping":{"__isSmartRef__":true,"id":4811},"source":"function highlightTarget(node) {\n node.submorphs[0].setFill(Color.rgb(218,218,218))\n}","funcProperties":{"__isSmartRef__":true,"id":4812},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4811":{"this":{"__isSmartRef__":true,"id":4735}},"4812":{"timestamp":{"__isSmartRef__":true,"id":4813},"user":"lauritz","tags":[]},"4813":{"isSerializedDate":true,"string":"Fri Aug 03 2012 13:32:12 GMT+0200 (CEST)"},"4814":{"varMapping":{"__isSmartRef__":true,"id":4815},"source":"function setLabel(label) {\n this.label.setTextString(label);\n this.label.setAlign('left');\n}","funcProperties":{"__isSmartRef__":true,"id":4820},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4815":{"this":{"__isSmartRef__":true,"id":4735},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4816}},"4816":{"$super":{"__isSmartRef__":true,"id":4817}},"4817":{"varMapping":{"__isSmartRef__":true,"id":4818},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4819},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4818":{"obj":{"__isSmartRef__":true,"id":4735},"name":"setLabel"},"4819":{},"4820":{"timestamp":{"__isSmartRef__":true,"id":4821},"user":"lauritz","tags":[]},"4821":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:04:31 GMT+0200 (CEST)"},"4822":{"varMapping":{"__isSmartRef__":true,"id":4823},"source":"function updateTargetFromOwner() {\n this.setLabel(this.owner.target);\n}","funcProperties":{"__isSmartRef__":true,"id":4824},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4823":{"this":{"__isSmartRef__":true,"id":4735}},"4824":{"timestamp":{"__isSmartRef__":true,"id":4825},"user":"lauritz","tags":[]},"4825":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:24:24 GMT+0200 (CEST)"},"4826":{"submorphs":[],"scripts":[],"id":"31C31395-1F63-43C2-97AE-BD2B822BFB6C","shape":{"__isSmartRef__":true,"id":4827},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":false,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":64.8979476392384,"showsHalos":false,"_FontSize":9,"name":"ObjectEditorScriptsText2","partsBinMetaInfo":{"__isSmartRef__":true,"id":4828},"textChunks":[{"__isSmartRef__":true,"id":4829}],"charsReplaced":"Scripts","lastFindLoc":-7,"priorSelectionRange":[0,7],"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":4831},"_WhiteSpaceHandling":"pre-wrap","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":64.8979476392384,"_ClipMode":"visible","draggingEnabled":false,"eventsAreIgnored":true,"isCopyMorphRef":true,"morphRefId":27,"owner":{"__isSmartRef__":true,"id":4006},"derivationIds":[224,"35EF8FE5-067D-45B6-AF21-77040F11D340","80DC09DD-22D4-4089-B5C3-857B32C9BE9B","EF080074-E6B9-47F3-A87F-26313B40C430","F6977801-C1A7-445C-9BF1-8A1019E202FB","8C9157AE-0343-4CFB-8186-1D5E05D2ECBE","DD3C23F8-6463-4EAE-959B-C486E27D9BDA","1E8D3752-D212-41F8-BC63-B094E0C80707","75C07D11-AE5D-4A36-B2D0-F2A6EA414E72","494AB1C0-2C09-49DE-B4AA-1F24DC7495FF","25199967-E3BA-4763-A704-37BD3152A5F7","8E4A5937-D1FA-4AF7-BD8D-B542C636CEF9","DDB23EF0-540C-4046-AD4D-C001E8A5F20C","FF45AAB3-E5C7-42A0-A704-F068DB2E2AF9","52850E3E-BE46-467C-A381-902F5E4859FD","147F9160-7168-44A4-9EA4-A36466EE1F52","8E4FB238-FC20-4DA7-AC9F-6921EBBD5609","3D09A998-5E60-4E94-9C6A-B08E7D98F02A","B8986B95-68A4-4212-8560-C86C8F7B3B3C","81BAFCDC-090F-4A92-8AD6-C3127620CCF4","3663625F-2BB0-494C-A467-04148A441F42","8F0EE2A4-3C90-4F71-A04E-2B285D2543CD","B5F10B61-9C89-4903-BD4C-DF3B9D283432","7005184B-8CE8-4DB8-82D8-D75E16ADE428","B8106E33-B470-45C3-916E-6E92CAFDD854","3013F6C8-9D86-49F3-9EB0-AA42B27F1DC6","A49BA117-B9D4-43F4-82EA-458B9D16FDBA","9FB9DF10-FCEC-44FE-9614-6DFC4B814576","54F9AFFD-B235-48AC-85E0-57921251546E","7A472A4B-7292-49B5-9F03-DE2E3A096714","C8629DF3-424B-47D3-A3FD-68201FFFC455"],"_Rotation":0,"_Scale":1,"_MaxTextHeight":null,"_MinTextHeight":null,"__serializedExpressions__":["_Position","textColor","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(10.0,12.9)","textColor":"Color.rgb(0,0,0)","distanceToDragEvent":"lively.pt(45.8,-27.8)"},"4827":{"fill":null,"_BorderWidth":0,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(64.9,15.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"4828":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4829":{"style":{"__isSmartRef__":true,"id":4830},"chunkOwner":{"__isSmartRef__":true,"id":4826},"storedString":"Tag:","_id":"_1367","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4830":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4831":{"morph":{"__isSmartRef__":true,"id":4826},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4832":{"submorphs":[{"__isSmartRef__":true,"id":4833}],"scripts":[],"id":"A90D2C9C-9445-4803-B1CF-E28926B27F63","shape":{"__isSmartRef__":true,"id":4839},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"value":true,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4845},"lighterFill":{"__isSmartRef__":true,"id":4850},"label":{"__isSmartRef__":true,"id":4833},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"showsHalos":false,"name":"ObjectEditorTagChooser","partsBinMetaInfo":{"__isSmartRef__":true,"id":4855},"listMorph":null,"list":[],"eventHandler":{"__isSmartRef__":true,"id":4856},"textString":"PartsBinBrowser","selection":"","_ClipMode":"visible","prevScroll":[0,0],"owner":{"__isSmartRef__":true,"id":4006},"setTargetToListSelection":"all","savedTextString":"all","derivationIds":[225,"7F83847B-D0B1-4A31-8601-43424B97C858","E08FC110-71D7-4FFD-B4A8-08F8147B95BA","5534107D-C5C9-48DD-A1ED-B87E9D9B672C","0B89FA7A-768C-4062-98AE-C455E8DAFF19","799320C6-CFBA-40E7-B03D-64BFE9B78248","9B650AA3-271B-4E72-B230-51C6F64B7462","C95D3672-724C-4C2C-9CDD-EF308062F627","C66EBEEC-B7CE-4DD9-8BDF-905F071F965D","D68B143A-A712-4FD0-8803-62CCB4C7F763","ED802271-AE5C-4BE9-AC4E-7CED44BC864B","1BD989CB-146C-431F-8B15-9199C4CD5D32","42172AA4-1B06-4C5B-9BB7-FAED1206CF34","32DFAF99-E6F8-426B-829D-FD6C2BCB8FAA","9B4BF2BE-49D5-4B9D-8F38-1692443069A9","FCAB3690-731A-45E7-984F-843DFE705AF1","94B10A66-8219-43AD-B902-DA999A66222D","BB0E2EB7-ABCE-44C7-96E7-6679FB2981D1","2FCEE551-302B-46C9-B646-3B9BE9187182","B4267F52-1ACC-42A1-904D-E9F7D485D8AB","14770110-045A-4BE4-BCF2-7C886DF70F7D","5387EA76-6B03-426A-B385-9C4231B66352","23545203-A969-439B-8761-E83A810696D0","C5467F6E-CBD7-4AF4-94BE-D0D62E4F7DDD","2FC5F9D1-B611-4273-BD5B-107350364579","318398B6-6689-4DE7-88FD-636BD968773D","3241459F-2019-4BD2-A0CF-BD2A174DDA76","69022916-A511-4A6C-8220-5B4CCD34FCEF","E772C128-C42D-4B13-A3DB-3EC0DFDC9FC5","4DD223AA-79FC-4FB3-9301-F197D9D6B358","46929EDB-248B-41D6-AC15-410A659C24A5"],"_Rotation":0,"_Scale":1,"isPressed":false,"__serializedExpressions__":["_Position","padding","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4857},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(39.1,10.0)","padding":"lively.rect(5,0,0,0)","distanceToDragEvent":"lively.pt(85.7,-11.6)"},"4833":{"submorphs":[],"scripts":[],"id":"8CAE7011-A27D-4A44-A568-FA75A9C975A2","shape":{"__isSmartRef__":true,"id":4834},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":130,"_MaxTextHeight":null,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"owner":{"__isSmartRef__":true,"id":4832},"eventsAreIgnored":true,"textChunks":[{"__isSmartRef__":true,"id":4835}],"prevScroll":[0,0],"attributeConnections":[{"__isSmartRef__":true,"id":4837}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"eventHandler":{"__isSmartRef__":true,"id":4838},"_HandStyle":"default","_PointerEvents":"none","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":130,"_MinTextHeight":null,"_Align":"left","_FontFamily":"Arial","_FontSize":10,"derivationIds":[226,"03DBF3F8-8EA2-4426-BA64-C4297DDAB015","B8F87302-BEC3-48CD-9BBA-6C7DBB6287E1","4AA6AE51-338B-4E3E-814B-9F99C693A2D5","08F6CE56-AD91-4C27-9429-C3DEA313696C","D39C963C-FD24-4498-A6D8-71E5102CE58A","132C2A9E-3466-4051-AAEA-6E485A91F408","DB8BC4A1-ED41-446B-AB6C-7E73DD857B5D","567FC668-A57C-41CB-8252-8912826B3144","D0B0775F-C8E7-49EB-BBB2-C7BB7DD464BF","AABED87D-D7C0-494A-8803-26F4601E35FF","696C3A2A-C695-4D17-A044-41A73436AB8D","206A0BFD-6997-4E0E-9193-089D1F66B22A","F2F1F966-6C41-4EBA-AFCE-FAE8C79AA696","64A754E9-7083-4CAE-B5C2-7B436EFFE4BA","64737503-A352-42CC-A249-667DA2B42746","9218F1CA-E23F-4E1A-89C3-DB19DE720861","CF7EAC38-1041-4B83-B087-359885B8528B","84469C7C-C93D-4F16-ACAA-0045A4A37FCA","9D3DD447-66A0-4B4A-B378-FB864D8C1468","163D1C2B-EDE9-4F8F-B466-EF9F4CB14384","50DCF8C9-23AA-4241-AC5B-724CC11950DA","CCACCC51-0109-4F73-B122-AA60E40EC54B","285D1797-A21F-4439-81AD-932B45F54879","7354C28D-A54E-48B6-913E-4949B5F4625E","68EAB78C-AAA8-4EC3-8493-CFD23672B5B3","2AD9DBC6-BDBD-4022-AFE1-B6D94D6860BF","5D634617-10A2-45FE-A453-D3452456AB07","EE3AF0A1-F42E-4AE8-A115-3458AA56DAF3","D8A87F07-FBE8-4C1E-ADE9-3AF6EE15FCD3","72270145-A97E-4B0C-BA7D-1B68CE1A0841"],"_Scale":1,"_WordBreak":"break-all","__serializedExpressions__":["_Position","textColor","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(2.0,1.0)","textColor":"Color.rgb(0,0,0)","padding":"lively.rect(5,0,0,0)","_Padding":"lively.rect(5,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"4834":{"borderWidth":0,"fill":null,"_ClipMode":"hidden","_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(130.0,20.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"4835":{"style":{"__isSmartRef__":true,"id":4836},"chunkOwner":{"__isSmartRef__":true,"id":4833},"_id":"_986","storedString":"all","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4836":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4837":{"sourceObj":{"__isSmartRef__":true,"id":4833},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":4832},"targetMethodName":"selection","converterString":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4838":{"morph":{"__isSmartRef__":true,"id":4833},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4839":{"_Fill":{"__isSmartRef__":true,"id":4840},"_BorderWidth":1,"_BorderRadius":5,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(130.0,20.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"4840":{"stops":[{"__isSmartRef__":true,"id":4841},{"__isSmartRef__":true,"id":4842},{"__isSmartRef__":true,"id":4843},{"__isSmartRef__":true,"id":4844}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4841":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(230,243,253)"},"4842":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(171,215,248)"},"4843":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(171,215,248)"},"4844":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(157,198,229)"},"4845":{"stops":[{"__isSmartRef__":true,"id":4846},{"__isSmartRef__":true,"id":4847},{"__isSmartRef__":true,"id":4848},{"__isSmartRef__":true,"id":4849}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4846":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"4847":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4848":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4849":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"4850":{"stops":[{"__isSmartRef__":true,"id":4851},{"__isSmartRef__":true,"id":4852},{"__isSmartRef__":true,"id":4853},{"__isSmartRef__":true,"id":4854}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4851":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4852":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4853":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4854":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4855":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":2,"partName":"ChoiceButton","comment":"Click on it and you get a list of things to choose from.","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4856":{"morph":{"__isSmartRef__":true,"id":4832},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4857":{"createListMorph":{"__isSmartRef__":true,"id":4858},"getList":{"__isSmartRef__":true,"id":4862},"removeList":{"__isSmartRef__":true,"id":4866},"reset":{"__isSmartRef__":true,"id":4870},"onMouseUp":{"__isSmartRef__":true,"id":4874},"onBlur":{"__isSmartRef__":true,"id":4882},"setTag":{"__isSmartRef__":true,"id":4890}},"4858":{"varMapping":{"__isSmartRef__":true,"id":4859},"source":"function createListMorph() {\n var items = this.getList();\n\n var height = Math.min(this.owner.getExtent().y, items.length * 17);\n var extent = new Rectangle(0, this.getExtent().y, this.getExtent().x, height);\n\n var listMorph = new lively.morphic.List(extent);\n listMorph.setList(items);\n listMorph.setFontSize(10);\n\n listMorph.disableGrabbing();\n listMorph.disableDragging();\n \n connect(listMorph, 'selection', this, 'setTag');\n \n return listMorph;\n}","funcProperties":{"__isSmartRef__":true,"id":4860},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4859":{"this":{"__isSmartRef__":true,"id":4832}},"4860":{"timestamp":{"__isSmartRef__":true,"id":4861},"user":"lauritz","categories":[]},"4861":{"isSerializedDate":true,"string":"Tue Nov 29 2011 04:35:59 GMT+0100 (CET)"},"4862":{"varMapping":{"__isSmartRef__":true,"id":4863},"source":"function getList() {\n if (!this.owner.target) return [''];\n\n var target = this.owner.target;\n\n var tags = Functions.own(target).collect(function (each) {\n return target[each].tags || [];\n }).flatten().uniq();\n\n var sortedTags = tags.sortBy(function(name) { \n return name.toLowerCase() \n });\n \n sortedTags.unshift('all'); \n return sortedTags;\n}","funcProperties":{"__isSmartRef__":true,"id":4864},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4863":{"this":{"__isSmartRef__":true,"id":4832}},"4864":{"timestamp":{"__isSmartRef__":true,"id":4865},"user":"lauritz","tags":[]},"4865":{"isSerializedDate":true,"string":"Fri Dec 16 2011 20:27:25 GMT+0100 (CET)"},"4866":{"varMapping":{"__isSmartRef__":true,"id":4867},"source":"function removeList() {\n this.listMorph && this.listMorph.remove()\n this.listMorph = null;\n}","funcProperties":{"__isSmartRef__":true,"id":4868},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4867":{"this":{"__isSmartRef__":true,"id":4832}},"4868":{"timestamp":{"__isSmartRef__":true,"id":4869},"user":"lauritz","categories":[]},"4869":{"isSerializedDate":true,"string":"Thu Nov 17 2011 19:06:51 GMT+0100 (CET)"},"4870":{"varMapping":{"__isSmartRef__":true,"id":4871},"source":"function reset() {\n this.list = [];\n this.setLabel('all');\n this.label.setAlign('left');\n this.removeList();\n this.applyStyle({fixedWidth: true, fixedHeight: true, borderWidth: 1, overflow: 'visible'})\n}","funcProperties":{"__isSmartRef__":true,"id":4872},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4871":{"this":{"__isSmartRef__":true,"id":4832}},"4872":{"timestamp":{"__isSmartRef__":true,"id":4873},"user":"lauritz","tags":[]},"4873":{"isSerializedDate":true,"string":"Fri Dec 16 2011 20:27:53 GMT+0100 (CET)"},"4874":{"varMapping":{"__isSmartRef__":true,"id":4875},"source":"function onMouseUp(evt) {\n if (evt.isCommandKey() || evt.isRightMouseButtonDown()) return $super(evt);\n if (this.listMorph) {\n this.removeList();\n return true;\n } \n if (this.getList().size() < 2) return;\n var list = this.createListMorph();\n this.addMorph(list);\n this.listMorph = list;\n return true;\n}","funcProperties":{"__isSmartRef__":true,"id":4880},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4875":{"this":{"__isSmartRef__":true,"id":4832},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4876}},"4876":{"$super":{"__isSmartRef__":true,"id":4877}},"4877":{"varMapping":{"__isSmartRef__":true,"id":4878},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4879},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4878":{"obj":{"__isSmartRef__":true,"id":4832},"name":"onMouseUp"},"4879":{},"4880":{"timestamp":{"__isSmartRef__":true,"id":4881},"user":"lauritz","categories":[]},"4881":{"isSerializedDate":true,"string":"Thu Nov 17 2011 18:59:16 GMT+0100 (CET)"},"4882":{"varMapping":{"__isSmartRef__":true,"id":4883},"source":"function onBlur(evt) {\n $super(evt);\n \n // workaround - otherwise other morphs get this event\n var clickedMorph = evt && evt.world && evt.world.clickedOnMorph;\n if (clickedMorph && (clickedMorph !== this && clickedMorph !== this.listMorph)) {\n this.removeList();\n }\n}","funcProperties":{"__isSmartRef__":true,"id":4888},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4883":{"this":{"__isSmartRef__":true,"id":4832},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4884}},"4884":{"$super":{"__isSmartRef__":true,"id":4885}},"4885":{"varMapping":{"__isSmartRef__":true,"id":4886},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4887},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4886":{"obj":{"__isSmartRef__":true,"id":4832},"name":"onBlur"},"4887":{},"4888":{"timestamp":{"__isSmartRef__":true,"id":4889},"user":"lauritz","categories":[]},"4889":{"isSerializedDate":true,"string":"Mon Nov 21 2011 23:10:03 GMT+0100 (CET)"},"4890":{"varMapping":{"__isSmartRef__":true,"id":4891},"source":"function setTag(tag) {\n this.setLabel(tag || '');\n this.label.setAlign('left');\n this.owner.setTag(tag);\n}","funcProperties":{"__isSmartRef__":true,"id":4892},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4891":{"this":{"__isSmartRef__":true,"id":4832}},"4892":{"timestamp":{"__isSmartRef__":true,"id":4893},"user":"lauritz","categories":[]},"4893":{"isSerializedDate":true,"string":"Tue Nov 29 2011 04:36:12 GMT+0100 (CET)"},"4894":{"submorphs":[{"__isSmartRef__":true,"id":4895}],"scripts":[],"id":"67F528C6-4F4C-42F4-8A61-B387C045B9E0","shape":{"__isSmartRef__":true,"id":4900},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4901},"lighterFill":{"__isSmartRef__":true,"id":4906},"label":{"__isSmartRef__":true,"id":4895},"name":"Button","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":4911},"attributeConnections":[{"__isSmartRef__":true,"id":4912}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":4935},"derivationIds":[7251,"BE69DA70-C9C3-4495-A6B5-413BD2FFA0D1","79FE3D3F-77C4-4B39-8243-D672185B416D","A4D2FEDF-2654-4381-AB43-8F89B9CA2E86","87E42FF6-3862-481D-97D6-643676E15F32","4F370A81-5A80-4821-8ECC-D52B56F31E15","1C6D1DC9-2F9B-4DC4-B453-1CA45B17C516","0E8EC0BF-934B-410B-AEC2-0ECA8C8F774D","97086CE7-CD46-4035-A371-02A41D555A66","E342B91D-F54B-4DA8-8AE7-10C59CE22B41","A838C48E-4033-4688-8DCF-20659BD824FF","E9BBC453-FFF6-4EE8-BDB0-605D5D4557AE","B6FB81D1-145B-40F9-ACF1-17276DA45EBA","09C79781-5461-4815-88DE-22FB67558136","85A5FA10-01D9-4051-8D56-29DB02CF8817","6E2F44D0-D69A-4DD7-91AD-0B0E1E871633","66FB4A47-82E6-417D-8248-4038D0CBBF5A","3CDC67E7-CAC7-4636-B7FF-50D008C6EB0D","4475CB12-8CFB-41DB-9399-EC6B68E18BA3","6175C505-1BCA-42E9-9C4C-07A4A309A245","B4FEE8FD-E680-459F-A82E-7606A48170D5","AC0B6630-E189-474B-A5E2-13726C1E0E6A","B5559DA4-1483-446C-8332-23DC886B44A5","955AF1F4-5BF5-4129-BA11-0DC54E21E510","6646015F-BD0A-4FEB-85F0-557FB8EC655A","A5682378-2307-447E-AD50-1DEC1AAC9FCB","1A04209F-A70E-4385-A6E2-D508EABC2DFC","EDA53C4F-765D-4424-9DBF-C62388440C46","C877D292-B4FE-42F3-AD5D-11AC5F084977"],"owner":{"__isSmartRef__":true,"id":4006},"layout":{"__isSmartRef__":true,"id":4936},"_ClipMode":"visible","_Rotation":0,"_Scale":0.994014980014994,"isPressed":false,"__serializedExpressions__":["distanceToDragEvent","_Position"],"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","distanceToDragEvent":"lively.pt(72.0,-13.0)","_Position":"lively.pt(687.7,9.5)"},"4895":{"submorphs":[],"scripts":[],"id":"2ABE8D31-1C1C-44D7-A9FF-FE99E07FF08F","shape":{"__isSmartRef__":true,"id":4896},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":97,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":4894},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":4897}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":4899},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[7252,"E0EF3EFE-3ADF-4E46-8705-7BF444E4BCED","307A3596-1175-4EA6-AA27-5BA4C9D95AB7","0EF99131-C569-4C2C-B613-E0D8423C1334","BA4EC8D2-AB29-4F9F-B5A0-715A4746A4C4","56735895-BA99-4D98-9866-AA5DBD86237E","81041CF7-31DB-4F65-BB39-FE438A4F266F","D03829B3-268E-40A0-A440-3E4BAC344F30","714637F0-714A-4833-909B-BA4AF1B4628B","DC956E73-7398-4CAF-B6F2-9A226E344396","C1F72D31-1F49-4C0C-ACF3-C3AD7E698D2F","39386C7E-9099-4159-BFE9-80AD37319211","2764FB6E-70D1-4BC5-B3CB-9979A48B8205","C55C8A7C-412C-453E-A99F-CE78C2AADB94","4BD9A8D4-2EC1-40AC-A1CE-5F1347B0152D","3450EAEB-E3D2-4FAF-98DF-354B3B8715D6","C906736E-48DF-4054-BA5A-A089610456D7","DE5C59FB-90A6-4DD4-AC39-5CC8B3912969","5830FB93-49A1-4A31-A687-69C4579D5FA7","AE9038D5-0EBD-40A0-8043-9689D163D108","13E47AE3-8FA4-4D33-B6D0-DC9AB9E63590","330AAB8C-6D17-4763-AACC-669FC5DD3A91","CA04BB7A-205C-412D-9900-C2DE7C5FAD36","37AADE55-77DE-4E93-9A3E-241BB5002F88","60EB450E-29D4-42B9-8FF7-CA138515052E","7D5C0196-98BF-4CCD-9142-3D29E68EE180","0F70CA1F-07A9-4EFA-872A-3255F9C850DC","7A2FAFFA-9A09-40FB-B04A-80B0B34C696B","85768439-7424-4BFE-8191-BCA51F70FE26"],"_MinTextWidth":97,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)"},"4896":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(101.0,21.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(2,2,0,0)"},"4897":{"style":{"__isSmartRef__":true,"id":4898},"chunkOwner":{"__isSmartRef__":true,"id":4895},"storedString":"run","_id":"_1369","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4898":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4899":{"morph":{"__isSmartRef__":true,"id":4895},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4900":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":4901},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(101.0,21.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"4901":{"stops":[{"__isSmartRef__":true,"id":4902},{"__isSmartRef__":true,"id":4903},{"__isSmartRef__":true,"id":4904},{"__isSmartRef__":true,"id":4905}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4902":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"4903":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4904":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4905":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"4906":{"stops":[{"__isSmartRef__":true,"id":4907},{"__isSmartRef__":true,"id":4908},{"__isSmartRef__":true,"id":4909},{"__isSmartRef__":true,"id":4910}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4907":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4908":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4909":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4910":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4911":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4912":{"sourceObj":{"__isSmartRef__":true,"id":4894},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4006},"targetMethodName":"runScript","visualConnector":{"__isSmartRef__":true,"id":4913},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4913":{"submorphs":[{"__isSmartRef__":true,"id":4914}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4921},"derivationIds":[null],"id":"C89B50A0-17E7-4D22-AE1D-5112520DAEE7","eventHandler":{"__isSmartRef__":true,"id":4924},"droppingEnabled":true,"halosEnabled":true,"owner":null,"controlPoints":[{"__isSmartRef__":true,"id":4925},{"__isSmartRef__":true,"id":4926}],"con":{"__isSmartRef__":true,"id":4912},"showsMorphMenu":true,"showsHalos":false,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4927},"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"4914":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4915},"derivationIds":[null],"id":"2A71BE9E-6820-46AF-ACED-3C9BDCC918AF","eventHandler":{"__isSmartRef__":true,"id":4920},"droppingEnabled":true,"halosEnabled":true,"owner":{"__isSmartRef__":true,"id":4913},"_Rotation":-3.130064002485303,"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","_Position":"lively.pt(0.0,0.0)"},"4915":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":4916},{"__isSmartRef__":true,"id":4917},{"__isSmartRef__":true,"id":4918},{"__isSmartRef__":true,"id":4919}],"_ClipMode":"visible","_BorderWidth":0,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(-12.0,-6.0)","_Extent":"lively.pt(16.0,12.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"4916":{"isAbsolute":true,"x":-12,"y":-6,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4917":{"isAbsolute":true,"x":-12,"y":6,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4918":{"isAbsolute":true,"x":4,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4919":{"isAbsolute":true,"x":-12,"y":-6,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4920":{"morph":{"__isSmartRef__":true,"id":4914},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4921":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":4922},{"__isSmartRef__":true,"id":4923}],"_ClipMode":"visible","_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(-1.0,-1.0)","_Extent":"lively.pt(831.0,11.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"4922":{"isAbsolute":true,"x":829.7085000406639,"y":9.565843617262885,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4923":{"isAbsolute":true,"x":0,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4924":{"morph":{"__isSmartRef__":true,"id":4913},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4925":{"morph":{"__isSmartRef__":true,"id":4913},"index":0,"connectedMagnet":null,"__LivelyClassName__":"lively.morphic.ControlPoint","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"4926":{"morph":{"__isSmartRef__":true,"id":4913},"index":1,"connectedMagnet":null,"marker":{"__isSmartRef__":true,"id":4914},"markerDirection":"prev","__LivelyClassName__":"lively.morphic.ControlPoint","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"4927":{"morphMenuItems":{"__isSmartRef__":true,"id":4928}},"4928":{"varMapping":{"__isSmartRef__":true,"id":4929},"source":"function morphMenuItems() {\n var visualConnector = this, con = this.con, world = this.world();\n var items = [\n ['edit converter', function() {\n var source = con.converterString ||\n 'function converter(value) {\\n return value\\n}',\n editor = new lively.morphic.Text(new Rectangle(0,0, 400, 200), source);\n editor.doitContext = con;\n connect(editor, 'savedTextString', con, 'converterString', {updater:\n function($upd, source) { this.targetObj.converter = null; $upd(source) }});\n connect(editor, 'savedTextString', world, 'alertOK', {converter:\n function() { return 'setting new converter' }})\n editor.applyStyle({syntaxHighlighting: true,\n fontFamily: 'Courier', resizeWidth: true, resizeHeight: true});\n var title = con.targetObj.name && con.sourceObj.name ?\n 'Editor for ' + con.targetObj.name + ' -> ' + con.sourceObj.name :\n 'Editor for converter function';\n var window = world.addFramedMorph(editor, title)\n window.align(window.bounds().topCenter(),\n visualConnector.bounds().bottomCenter())\n }],\n ['hide', function() {\n visualConnector.disconnectFromMagnets();\n visualConnector.remove();\n }],\n ['disconnect', function() {\n alertOK('Disconnected ' + visualConnector.con);\n visualConnector.con.visualDisconnect();\n }],\n ['cancel', function() {}],\n ];\n return items;\n }","funcProperties":{"__isSmartRef__":true,"id":4934},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4929":{"this":{"__isSmartRef__":true,"id":4913},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4930}},"4930":{"$super":{"__isSmartRef__":true,"id":4931}},"4931":{"varMapping":{"__isSmartRef__":true,"id":4932},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4933},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4932":{"obj":{"__isSmartRef__":true,"id":4913},"name":"morphMenuItems"},"4933":{},"4934":{},"4935":{"morph":{"__isSmartRef__":true,"id":4894},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4936":{"centeredHorizontal":false,"moveHorizontal":true},"4937":{"submorphs":[{"__isSmartRef__":true,"id":4938}],"scripts":[],"id":"7520C2E9-5DD5-43F1-A6EF-896EB1DF3EA1","shape":{"__isSmartRef__":true,"id":4943},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4944},"lighterFill":{"__isSmartRef__":true,"id":4949},"label":{"__isSmartRef__":true,"id":4938},"name":"saveButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":4954},"attributeConnections":[{"__isSmartRef__":true,"id":4955}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":4978},"derivationIds":[7251,"BE69DA70-C9C3-4495-A6B5-413BD2FFA0D1","79FE3D3F-77C4-4B39-8243-D672185B416D","A4D2FEDF-2654-4381-AB43-8F89B9CA2E86","D686F0CB-027B-4CA9-8B8D-9306389B219D","F51327CB-803E-4234-BFB3-6F5252D1C936","A79280E8-6AE3-4016-AF47-CE78F71924C6","B05829EB-D452-4D81-983B-E2CE425C8260","32B117E5-52D8-4843-B80E-090B9817E099","49AC923E-5272-4E3C-8F02-4F2AED2BC4E9","85AAEA9C-5E12-4DEC-8994-9A5FE655A740","2A7FF9BF-85D3-4962-8EB4-0F7016C672EB","3BB17748-B91B-43F5-84BE-2537402A6382","8BA10BD3-43C5-4A41-B9D9-DCD8C74EA208","8BADA640-EDC1-41B2-BEF3-0F2520EA25DD","CAFB5342-EFD3-483E-AE4A-343D211653EF","C3DC8C6F-A36C-4456-AF34-B0A318C1AAD8","88093937-29BB-43FC-AD82-4A0A4BDC349F","27E1FA12-CE4A-4C1F-891F-EEEF92BD672F","A12311D6-23C1-4711-9271-5B582F89F15B","F615015A-8BAE-4FC4-B9A4-D1D1122AC0A2","77333AB0-F43F-45D7-BAEE-8B9FF7865CAF","6A0E622E-4C99-42C1-8EEE-E659BFC2996E","D0264D42-222E-4900-908B-4EA13729B6AA","CC6A8A07-5A2D-407A-B540-6BA0C73356C5","FA68B30F-8583-41B2-898D-8DAFE1A75F15","D5C01E0F-F7DF-4896-8CEF-099C9F3E6CB8","B521A25F-FA55-4F6B-BAC1-0B2544DF98C1","C567F039-E57C-4C5E-AFAA-D05B2C481A69","3D4A4A11-9E45-4C87-9398-C3EBD8A53468"],"layout":{"__isSmartRef__":true,"id":4979},"owner":{"__isSmartRef__":true,"id":4006},"_ClipMode":"visible","_Rotation":0,"_Scale":0.9880657804942089,"isPressed":false,"__serializedExpressions__":["distanceToDragEvent","_Position"],"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","distanceToDragEvent":"lively.pt(68.8,-14.5)","_Position":"lively.pt(574.4,9.5)"},"4938":{"submorphs":[],"scripts":[],"id":"787025AD-20B1-472A-8C61-B79F2BDE848E","shape":{"__isSmartRef__":true,"id":4939},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":97,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":4937},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":4940}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":4942},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[7252,"E0EF3EFE-3ADF-4E46-8705-7BF444E4BCED","307A3596-1175-4EA6-AA27-5BA4C9D95AB7","0EF99131-C569-4C2C-B613-E0D8423C1334","9AECBFB8-25A5-483F-86AD-D7CF9ABC9A25","918C6CC4-3540-4341-BAFD-B195F7807FEE","5AABB138-5EE8-40A5-AB3C-5A9625D0A353","4529D79B-4CC5-467E-91F8-661C3A5F49F8","1E5E570C-FD42-45E3-A7F6-768BB14ACD14","A13FB4E0-72F2-4E7C-A861-EDCBA1393860","B8E4C964-4FFF-4A9F-B0A9-612546B1DC8C","002A2173-D26D-4EED-8906-A489C1E158C0","63362D04-B829-41E6-9E68-5B8DB03D382F","996B60A4-8698-448F-A35F-79C768B4976B","F0727398-A1F0-47F5-92CF-BB9677FA05FA","38707063-D664-49A0-B2FB-F0666EC532D5","0402FB51-915F-4491-8FA1-553F0D8F7F35","5A35285D-C6A5-4830-97D9-0890A3F33F39","53121F0B-7DA5-4622-AC08-DD4805D53374","6C84E15D-112D-4C04-87C1-937691E296A7","4ECBD7E4-8B18-4331-8A37-07F4D8DCDCA0","3D4B43A2-AD74-4131-A939-D680216EDA6B","B22327BB-C876-4084-BEFA-4D06AE2B2849","2D34C2E9-76B8-49DC-9FCC-39B523CD0EF4","F098174A-AABC-4F95-8193-C29CA85D6188","714713CE-F5E8-4817-835F-99EA27075558","532DCEDE-C300-48C9-9DBA-58A1E02E1632","2F1C117F-2507-446D-8B43-9BD30AC726FB","74DABF7B-1E90-4D21-93D1-802BC208E9C7","4829579F-88C9-4E62-BE7F-E085AD1EC231"],"_MinTextWidth":97,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)"},"4939":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(101.0,21.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(2,2,0,0)"},"4940":{"style":{"__isSmartRef__":true,"id":4941},"chunkOwner":{"__isSmartRef__":true,"id":4938},"storedString":"save","_id":"_1370","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4941":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4942":{"morph":{"__isSmartRef__":true,"id":4938},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4943":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":4944},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(101.0,21.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"4944":{"stops":[{"__isSmartRef__":true,"id":4945},{"__isSmartRef__":true,"id":4946},{"__isSmartRef__":true,"id":4947},{"__isSmartRef__":true,"id":4948}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4945":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"4946":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4947":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4948":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"4949":{"stops":[{"__isSmartRef__":true,"id":4950},{"__isSmartRef__":true,"id":4951},{"__isSmartRef__":true,"id":4952},{"__isSmartRef__":true,"id":4953}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4950":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4951":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4952":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4953":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4954":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4955":{"sourceObj":{"__isSmartRef__":true,"id":4937},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4241},"targetMethodName":"doSave","visualConnector":{"__isSmartRef__":true,"id":4956},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4956":{"submorphs":[{"__isSmartRef__":true,"id":4957}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4964},"derivationIds":[null],"id":"F46012D5-C8BE-4E52-BF98-D052FDAAE17A","eventHandler":{"__isSmartRef__":true,"id":4967},"droppingEnabled":true,"halosEnabled":true,"owner":null,"controlPoints":[{"__isSmartRef__":true,"id":4968},{"__isSmartRef__":true,"id":4969}],"con":{"__isSmartRef__":true,"id":4955},"showsMorphMenu":true,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4970},"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"4957":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4958},"derivationIds":[null],"id":"A2A83C78-09B8-473C-829B-198206D7A9E4","eventHandler":{"__isSmartRef__":true,"id":4963},"droppingEnabled":true,"halosEnabled":true,"owner":{"__isSmartRef__":true,"id":4956},"_Rotation":3.077607197692381,"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","_Position":"lively.pt(201.2,40.2)"},"4958":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":4959},{"__isSmartRef__":true,"id":4960},{"__isSmartRef__":true,"id":4961},{"__isSmartRef__":true,"id":4962}],"_ClipMode":"visible","_BorderWidth":0,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(-12.0,-6.0)","_Extent":"lively.pt(16.0,12.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"4959":{"isAbsolute":true,"x":-12,"y":-6,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4960":{"isAbsolute":true,"x":-12,"y":6,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4961":{"isAbsolute":true,"x":4,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4962":{"isAbsolute":true,"x":-12,"y":-6,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4963":{"morph":{"__isSmartRef__":true,"id":4957},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4964":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":4965},{"__isSmartRef__":true,"id":4966}],"_ClipMode":"visible","_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(200.0,9.0)","_Extent":"lively.pt(480.0,32.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"4965":{"isAbsolute":true,"x":679.4857209639925,"y":9.595948897894004,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4966":{"isAbsolute":true,"x":201.20421122525056,"y":40.24084224505009,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"4967":{"morph":{"__isSmartRef__":true,"id":4956},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4968":{"morph":{"__isSmartRef__":true,"id":4956},"index":0,"connectedMagnet":null,"__LivelyClassName__":"lively.morphic.ControlPoint","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"4969":{"morph":{"__isSmartRef__":true,"id":4956},"index":1,"connectedMagnet":null,"marker":{"__isSmartRef__":true,"id":4957},"markerDirection":"prev","__LivelyClassName__":"lively.morphic.ControlPoint","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"4970":{"morphMenuItems":{"__isSmartRef__":true,"id":4971}},"4971":{"varMapping":{"__isSmartRef__":true,"id":4972},"source":"function morphMenuItems() {\n var visualConnector = this, con = this.con, world = this.world();\n var items = [\n ['edit converter', function() {\n var source = con.converterString ||\n 'function converter(value) {\\n return value\\n}',\n editor = new lively.morphic.Text(new Rectangle(0,0, 400, 200), source);\n editor.doitContext = con;\n connect(editor, 'savedTextString', con, 'converterString', {updater:\n function($upd, source) { this.targetObj.converter = null; $upd(source) }});\n connect(editor, 'savedTextString', world, 'alertOK', {converter:\n function() { return 'setting new converter' }})\n editor.applyStyle({syntaxHighlighting: true,\n fontFamily: 'Courier', resizeWidth: true, resizeHeight: true});\n var title = con.targetObj.name && con.sourceObj.name ?\n 'Editor for ' + con.targetObj.name + ' -> ' + con.sourceObj.name :\n 'Editor for converter function';\n var window = world.addFramedMorph(editor, title)\n window.align(window.bounds().topCenter(),\n visualConnector.bounds().bottomCenter())\n }],\n ['hide', function() {\n visualConnector.disconnectFromMagnets();\n visualConnector.remove();\n }],\n ['disconnect', function() {\n alertOK('Disconnected ' + visualConnector.con);\n visualConnector.con.visualDisconnect();\n }],\n ['cancel', function() {}],\n ];\n return items;\n }","funcProperties":{"__isSmartRef__":true,"id":4977},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4972":{"this":{"__isSmartRef__":true,"id":4956},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4973}},"4973":{"$super":{"__isSmartRef__":true,"id":4974}},"4974":{"varMapping":{"__isSmartRef__":true,"id":4975},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4976},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"4975":{"obj":{"__isSmartRef__":true,"id":4956},"name":"morphMenuItems"},"4976":{},"4977":{},"4978":{"morph":{"__isSmartRef__":true,"id":4937},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4979":{"centeredHorizontal":false,"moveHorizontal":true},"4980":{"submorphs":[{"__isSmartRef__":true,"id":4981}],"scripts":[],"id":"452ED999-FF24-445A-8E15-391BEC59E2FA","shape":{"__isSmartRef__":true,"id":4986},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4987},"lighterFill":{"__isSmartRef__":true,"id":4992},"label":{"__isSmartRef__":true,"id":4981},"name":"openTestsButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":4997},"attributeConnections":[{"__isSmartRef__":true,"id":4998}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":4999},"derivationIds":[7251,"84054D2E-8176-440D-B413-279956A34FC2","79434046-F834-490E-B705-0CE871D9E8B3","FF38CA79-C0DF-4F2F-8FC3-407571EF6A54","B1D50332-9F4F-4F7C-AC3F-95DC6C73EAA4","5B8D7C39-987A-4849-BFFD-3F316CE03852","F7C30F5C-7270-44B1-ADFF-7473F2012DB0","5142302E-3E9A-476B-AB24-B2448DA6D3E4","FEA3C508-593D-4BC7-B645-8B5630CF2EDE","34DBC442-E1DE-42D7-8C63-BA9A1890C994","4F9067A3-5A5C-4637-A76F-7E590CEE2BDA","ADF74818-537A-4669-A455-9509BA7BD7E5","AFCD7FA7-5429-4B1A-B8B8-AB03C18ABA08","604C352D-0347-4329-A299-EAA3FF90B543","46C5ED11-DE03-428F-A758-5308B3D323B5","7C978B2A-9109-42E1-95C5-A59CC74BD31B","2D34E370-3EA6-48DD-B3A7-FE7EB1CCD78D","A0B7F880-0D72-475C-A002-2EAA7D20C004","1146967F-5295-4931-9637-CF72A6A6D724","775F3066-BB4B-4673-B529-500522EF5165","F01F4895-6DEF-4C26-9CEC-A569AEDD22E6","DDD1C856-9C9F-4CB1-A795-E083B7214E82","51E21302-B2D2-49D0-82D9-D964A6B3C54F","BC9DA8C7-933D-4140-96D3-1E7ADEEC8D69","26FA6101-FD83-4A6D-BA08-839ADCA2E33A","43BD3A17-F549-4B6B-8D78-0F84AFE3A168"],"owner":{"__isSmartRef__":true,"id":4006},"_ClipMode":"visible","_Rotation":0,"_Scale":0.9940149800149939,"isPressed":false,"layout":{"__isSmartRef__":true,"id":5000},"__serializedExpressions__":["_Position","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(468.5,9.0)","distanceToDragEvent":"lively.pt(72.1,-12.5)"},"4981":{"submorphs":[],"scripts":[],"id":"E8F75491-916C-449A-B0CF-6C6A9EDCBB18","shape":{"__isSmartRef__":true,"id":4982},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":97,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":4980},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":4983}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":4985},"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[7252,"0A0A6CB1-BD92-4F39-A425-2EB3D2D4CBA2","CB475566-05CE-43E2-B04D-EE32BC4CB718","6BB077CE-92E6-47BE-BE88-9A48488562D1","9E359973-2FDB-417B-BB06-AB34D52BD310","58F098ED-A190-44F2-B73E-80802B2CF2F6","AEA84B35-B349-4307-92C6-8F229705DFC2","A677CADF-24FF-4177-9A3A-FE9AAE7D60FE","0F875AD9-E54C-4735-9BA9-7B89574233A1","840EBE92-3BC2-42EC-819E-3CD002576490","78C4969D-2C33-4B17-9027-89B411B9F496","C9A3D112-C2BC-43A3-A3CA-A68F41A0E4CF","78CF2F1A-6697-4D03-AB2B-CAF862B4EDD6","8B416918-CA4B-46D1-8A3C-40F8A754E44D","01510710-A85B-4054-B0ED-7F2F02434806","8ABD23FB-E90C-4EEB-BF53-DF3C6ACF2BD4","87607080-4A72-484D-A5BD-5F67D468505F","F0E39FE9-F71C-4587-B25A-C4D2C29FE579","BA2AB73A-3967-4F9E-8828-8A638E521B31","5ECC4D2F-4996-403F-AF14-BD1F4BB720F6","54B08934-6893-4B80-8625-B60ABCE9CBC6","4808CF23-17EA-43D8-AE10-DAB21C642FA8","0813DF8A-CC9E-435B-B5A1-DF68BF226F37","047C4EE2-26A1-4AA7-9CE9-E8FF9A9D863B","728334BD-34B0-44FA-A778-2696AA82FEFA","7354635C-DC38-4BE3-9F56-070CE37B65EF"],"_MinTextWidth":97,"_MinTextHeight":null,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)"},"4982":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(101.0,21.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(2,2,0,0)"},"4983":{"style":{"__isSmartRef__":true,"id":4984},"chunkOwner":{"__isSmartRef__":true,"id":4981},"storedString":"Tests","_id":"_1371","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4984":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4985":{"morph":{"__isSmartRef__":true,"id":4981},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4986":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":4987},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(101.0,21.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"4987":{"stops":[{"__isSmartRef__":true,"id":4988},{"__isSmartRef__":true,"id":4989},{"__isSmartRef__":true,"id":4990},{"__isSmartRef__":true,"id":4991}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4988":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"4989":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4990":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"4991":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"4992":{"stops":[{"__isSmartRef__":true,"id":4993},{"__isSmartRef__":true,"id":4994},{"__isSmartRef__":true,"id":4995},{"__isSmartRef__":true,"id":4996}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"4993":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"4994":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4995":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"4996":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"4997":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"4998":{"sourceObj":{"__isSmartRef__":true,"id":4980},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4006},"targetMethodName":"openPartTestRunner","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"4999":{"morph":{"__isSmartRef__":true,"id":4980},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"5000":{"moveHorizontal":true},"5001":{"submorphs":[{"__isSmartRef__":true,"id":5002},{"__isSmartRef__":true,"id":5009}],"scripts":[],"id":"5D2EA417-C044-4CDA-9258-2985395FDC0F","shape":{"__isSmartRef__":true,"id":5012},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":5018},"lighterFill":{"__isSmartRef__":true,"id":5023},"label":{"__isSmartRef__":true,"id":5002},"name":"MagnifierButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":5028},"attributeConnections":[{"__isSmartRef__":true,"id":5031}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":5032},"derivationIds":[2588,"22797D34-67DE-4A06-81F0-4DF0A87ADBBC","81CB4C12-BCF0-4097-8B6D-D9419046367A","0767A57D-9BB2-48C6-9654-753D2B9D00A6","42871246-6725-4E41-A2C1-5A5BCF041097","BCE6E775-B5DF-4D6B-9F06-CDC02C1B1D0F","797EC165-A639-42D9-A059-669F6BEB92A7","FA498EFD-E50E-4CE0-9FA8-9AE2E8AE9580","4B68C371-CB37-45B4-910A-611E5FFC23DD","94E374B9-7ED4-4E39-96F1-6FD4E7AC3428","34D63515-7CC7-43FB-B7BB-87AFCA377D63","7E0B172C-0AF5-4C6E-B184-25A8FAE4FAB8","12239D52-D3D3-4713-BC3E-F0B95C488CB7","72559D92-4616-45A9-A0F2-72BA4147C0FB","E86C7328-AF24-4881-84AF-B7C7CEFEAE14","22D731CF-38F0-41CC-B125-74D2842ED847","B58A1A30-782E-4675-A276-2C01D35BEC70","ACEABA6D-071C-46C2-A325-BE30189AA45F","686443AE-DCDC-4998-8A39-48BC57D64FDC","8D660766-7C93-404C-9D92-B12CBF59A3CE","20DF1A18-6F2B-4D66-9110-75EB343C3C61"],"_ClipMode":"visible","owner":{"__isSmartRef__":true,"id":4006},"_Rotation":0,"_Scale":0.9920279440699439,"highlightRectangle":{"__isSmartRef__":true,"id":5033},"isPressed":false,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5107},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(424.5,8.5)","distanceToDragEvent":"lively.pt(37.9,-7.9)"},"5002":{"submorphs":[],"scripts":[],"id":"CA485F49-630B-44F4-9B62-E3DD2C6445CC","shape":{"__isSmartRef__":true,"id":5003},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":24,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":5001},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":5004},{"__isSmartRef__":true,"id":5006}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":5008},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[2589,"024C5ADE-C4CF-4E8E-BEC5-F93AD4839702","A2CC4D56-B9D8-4A48-B6FF-DDDD85ACDC2E","5AC5C4DE-00B0-43DB-B7F1-765674CE818B","750A11C6-766E-4B48-AE32-D71DE811EB4A","66A7B56E-A94E-44AE-8AED-C0C1B07554D4","CA8596D3-2D4F-453B-BE1B-DCEC8F85389B","4D7DC32F-79CB-4AF8-8B21-AB4F1809D4A8","439DE430-7651-470E-97D8-00E7F96B04DA","DAC920E6-217B-4515-AC09-2F9DCBA7375C","BD48C003-0502-451D-B6AA-7369FF3D1030","C3B8F4EA-3F44-47F4-B569-A0D5AB263BA0","BF7F0FA3-3F2A-4EEF-9687-BE2B0635DF13","3D7AEAC1-C9DD-4941-BA46-16F6783F5699","E04A78F9-3D6E-403F-BA8D-2583FCFFCE53","47E1F29B-6896-467D-8654-CA18929AE57A","509D86FF-5400-4374-BE79-90F0A7E3E90C","C7E53EE0-065A-4C59-8D13-311566722BB7","BA078BAC-7263-4B10-AFD3-3C4EA0DD8707","BCFE28D1-A115-453E-9116-EECC8FE1D50F","A354FF2E-BD85-429A-97C2-254D6033F50C"],"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":24,"_MinTextHeight":null,"_FontSize":10,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"5003":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(24.0,24.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"5004":{"style":{"__isSmartRef__":true,"id":5005},"chunkOwner":{"__isSmartRef__":true,"id":5002},"storedString":"","_id":"_1372","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"5005":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"5006":{"style":{"__isSmartRef__":true,"id":5007},"chunkOwner":{"__isSmartRef__":true,"id":5002},"storedString":"","_id":"_1373","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"5007":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"5008":{"morph":{"__isSmartRef__":true,"id":5002},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"5009":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":5010},"derivationIds":[null,"29E543E0-AE93-493A-A694-FC1C330D0544","F0366E4C-E97F-4C77-BEE4-340A0668ADD5","347F6028-5092-4F54-9A34-3EFF3FF0B815","BF7387E7-BCD7-4A5B-B9D2-C14ECF59EFCA","85BA370B-966E-41F7-8C2F-F3A926EC2AA2","1652172B-339A-43A1-9589-70E68B35A28E","705524F7-129B-4102-834E-2A1A45985BB5","5707DF70-CD77-4D53-96ED-5A0AEB227FB7","257E62CE-C668-4317-B5B7-8D394BDC3F6C","2DD4BEA5-E85A-4CD0-953E-9EB2E0735654","BB96B696-7BD4-44C4-9D60-B1551B89D6FA","FCAABC48-FBAF-4E12-8BC9-AC4ACB5A167B","EB81C4D7-5BD8-4DAC-BD70-8675E2338AAC","1DBAE3FF-B2F6-4348-8E06-81139C138D6E","49E7D450-EF74-4E94-B33B-B888D952F3BD","F0B267C4-54BA-4E6F-BFDD-4B047F4FF41A","36B8611D-B449-4F6E-8D0F-B5FD6406D45D","779DB518-01BD-4D32-AD65-BFED801E5D06","F47D501C-3750-4F0D-A2E1-E1B9CDA8368C"],"id":"5551A7B5-B6D0-4A9D-97B1-77552DCC3FF0","eventHandler":{"__isSmartRef__":true,"id":5011},"_ClipMode":"visible","droppingEnabled":true,"halosEnabled":true,"owner":{"__isSmartRef__":true,"id":5001},"name":"leftpointing_magnifying_glass.png","isBeingDragged":false,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"showsHalos":false,"eventsAreDisabled":true,"_HandStyle":"default","_PointerEvents":"none","_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.Image","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(-3.0,0.0)","distanceToDragEvent":"lively.pt(39.9,-9.0)"},"5010":{"_ImageURL":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAACXBIWXMAAAABAAAAAQBPJcTWAAAALnRFWHRUaXRsZQBMRUZULVBPSU5USU5HIE1BR05JRllJTkcgR0xBU1MgKFUrMUY1MEQpw88haQAAABV0RVh0QXV0aG9yAEFuZHJldyBNYXJjdXNl5zc3gwAAAC90RVh0U29mdHdhcmUAaW5mby5maWxlZm9ybWF0LmRhdGEuVW5pY29kZVBuZ1NlcnZsZXRoAX8wAAAAQ3RFWHREZXNjcmlwdGlvbgBodHRwOi8vd3d3LmZpbGVmb3JtYXQuaW5mby9pbmZvL3VuaWNvZGUvMWY1MGQvaW5kZXguaHRtk2hNQgAAADt0RVh0Q29weXJpZ2h0AGh0dHA6Ly9jcmVhdGl2ZWNvbW1vbnMub3JnL2xpY2Vuc2VzL2J5LW5jLXNhLzIuMC9siJKDAAAIDklEQVR42u1daWxVRRQeCi0tIqCAQCTIUtEIGlk0ilqEkEbiQhSKGAyCooIIggsiQuMWZNGwVMUFNIhKZBMobZClgK1FwAU3wIpSREDcUFZFEM/JOzf3vPHet9ze1/eYe77k+zNzl5nz3ZlzZntPKYFAcHojDXimmKH6cQbwZuBM4HLgx8A9wBPAU8BjwJ3ADcDFwMnArsCaYjr/0BB4DwlwjAwfL38DzgX2AdYWk3pDJnAM8E/NuN8BpwEHAq8DXgpsCswANgN2APak/BeBu7T7sQX1A9YQE8fuDwYAf2BG/JrEaefxmSjaeOAO9syNwBwxd2Q0o/7fMhr6h8Fx+oBIX346cATwF/aON6Qbc0ZH4G4y0lHgOGAdD8/Be/KAs4AFwKsdrqkHnAA8Tu8rAzYWCWz0Bh5hraKTT11fL+AH1FXlA8/SrsEu61fmW9qLFEqNAv5LRsEw9twEvKMzcAvwJ3LoHG2AW+n9B4HdgixGHhNjiccuKlbUp9aC7yoGnqflraa8A8C2QRTjMvIVaITyKI61BjnkqiILWEjvPAwcxvLqAj+nvAqH7s1oNAfupcpjeNskhnvQOQ/xYfxQCziHRVl3sjxsNfspvYSuNR4Ywn5ClT5CA7lYkUPRU0YVy4CivkVlOE7TKxa6AP+ivKlBEORe9nUO8XD/QhWay6oqmlK3dYoirTYs70FK/wd4ocli1KVIByu7XXmb9BsOPEmj76riSfZxbAM2oPQMmqLB9GUmC/I0M8AtHp9xCd3/rM8fCHISy+vH0ruaOi3Coyqv6ETPKPSpXEOZ4X9XoSl+y89sovTNJgoyklW8rw8+aKFP5apFo3SrbMNcWsnFpgmylkU19R3yY4mc0mk0j88Z62PZ5jHDV7DQugE5dkx/3CQxzlb2qt6aCF1HtJH6BHoGju4v97F8+Sp8zeRGlldCaZtMEmQAq+zICL5hpUvrwfXy19gzZvhcvj6aILNZ3ij2ETQzRZA3WWU7RrgOfQsu05YCnyLxcFS9h91fTlMgfqKdJsg6lteBpQ8wRZASVqmmUa7txvwEJ/qe8SoxGxYymK+wpnMsNGHpxviRbVShkzEatAb5iEHUSrqzQVuiUMkMf5IFGWnM/71giiAHqEL7U7iMf2gtkk/B7/M51E4qMlklvzwNymgxl+VvobQPTRCkMavkDpaelkJlbOkgyDUsv0LZu19Oe/A++BBLvyIB0ZJX9HIQhHdZBymt1BQfso9V1Jorag28PUXKN8tBkHqUV4elLTJFkM9YpVqzllOcAmXDiG6vJsZhlt+Kpc80RZBiF2eJK4fZSS5bd4fWUcTyc1n6Y6YIMpVVii+LTgFOTHLZNjoIMpTlT2fpXUwRpIcKn021gHuwcDN0ss525Cnn3fIt2DXfK3vPljGbHtK1gdcFmkNdkYTK4gz0Tgcxytg1fI6rUBkGvubA54Ta0lTFK9VYFhS/xKV18PEHX3MfYpogfPUND9DwuamFlP5oNZXlZRcxlmsDWutsCl/aNQYZWhfBnTlOceNsLq459E1wyyhwEeNvFb7ZusClrEbhNlbJoyp8Y3UejehxPWS08v/MBrbIlcr92BvfwZit7KMKOC3f3FRBcBC2mRlBnz0dpOzN17gvqrdP7+2p7PkoJz7Hrq2pCfeqMhzXasbI1/KHa/m4Y93reRFcU1mrIh8IXaLCJzpnsLyfKRozHrNZpbFF9NHyx2pGw2tWAZ8H3gW8UjmvvWdSlIQb3raq6Kdzp6vwBbOhWn5/FRCggy9lFcdN1521ax5Q0Y9B41o7nkn8Rv1/gSkS0T/crb0vV4Uv465UAUNjLerCkfAN2jUXKef19apwnYP4AynK4tfNU6m1ZlMtaK/stQZrLXu0Q6g6OIpTjoVfAK/Xnp1GDp1fhy0th1rwHLqmEbXYHkEQJYcGitwouG2onoPx0Ne8q+yDmtGIs8lPUFCgH/Q5R4XPQlt8nfKzKB9/ouNHLT/ddFEw7t+uGQbPko90GY+gOHgcoRc5+YeBj1DY3JPyGrq8qy6JdMhBDAyz8azhZLq2JRuP4HE3a6f8KhNH7k4Dt9UORqoE3qGqfiAUo7L7lX1kjfMd4H0UHGTTFMpLzH8VUAS3iN2znsQ1GugvprCvkvMYdSFouBYxPu98FdoKusblmZXUoiz0J1FuYgPUfCrXAof7S4MgimXIRVH8wwHq5vBLna9Cs8ULyEgVWrCg8zAJ79TtjGDXjSMx5kd4Fk7XB+a3uq5Sob1QfoW86JzxR2zcjjyj3/mKTafUpCAi2nPLVcB+QA379YdoGuWEBxEwars1hujIOpZQQS1jWhzvKXeIDAOBRhT+YgQ2kcYK71NLwgOauAKJ50jwpFW8J2jHKHvLKwYBuENmVxyibAiqKIlCOkVY1g8HZHkQ5SOXeTaBR9RW9vT7agp34xVlo4jiL7KoG0TjriCR4hVlk0r8EYrAtZQiZa+14wx1qzhF2Syi+C+K5VOWko8RUVJIlPc8irIhKCP6ZItSqeJbh8kSU/qHDCbKMuZT4hFlrpgxcaIUUcuJR5TdYsLEiFLIQuLMOESZJOZLnCjLyMhrabqkZRRR1qsArDQmW5SlZOxPVWhJ2E2UNRJlVQ/wi19CRv9WhXbJoCh8zb+IujVBNYqymIyPP55ZxsQoVvK78kkBrp28rXVThSJGcoE7YZ5RoTMlc8SBpw7kj2IEAoFAIBAIBAKBQCAQCAQCgUAgEAgEAoFAIBAIBAKBQCAQCAQCgSAZ+A+0ucC4BysctgAAAABJRU5ErkJggg==","_NodeClass":["image"],"_NodeId":"29E543E0-AE93-493A-A694-FC1C330D0544","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isLoaded":true,"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Image","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(29.0,29.0)","_Padding":"lively.rect(0,0,0,0)"},"5011":{"morph":{"__isSmartRef__":true,"id":5009},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"5012":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":5013},"_BorderRadius":5.2,"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(24.0,24.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"5013":{"stops":[{"__isSmartRef__":true,"id":5014},{"__isSmartRef__":true,"id":5015},{"__isSmartRef__":true,"id":5016},{"__isSmartRef__":true,"id":5017}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"5014":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"5015":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"5016":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"5017":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"5018":{"stops":[{"__isSmartRef__":true,"id":5019},{"__isSmartRef__":true,"id":5020},{"__isSmartRef__":true,"id":5021},{"__isSmartRef__":true,"id":5022}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"5019":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"5020":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"5021":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"5022":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"5023":{"stops":[{"__isSmartRef__":true,"id":5024},{"__isSmartRef__":true,"id":5025},{"__isSmartRef__":true,"id":5026},{"__isSmartRef__":true,"id":5027}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"5024":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"5025":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"5026":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"5027":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"5028":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":4,"partName":"ScriptableButton","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":5029}],"revisionOnLoad":154251,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"5029":{"date":{"__isSmartRef__":true,"id":5030},"author":"robertkrahn","message":"no comment","id":"0366C0A2-0C8E-4AEB-AAC3-120434134545"},"5030":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:10:10 GMT+0200 (CEST)"},"5031":{"sourceObj":{"__isSmartRef__":true,"id":5001},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":5001},"targetMethodName":"onFire","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"5032":{"morph":{"__isSmartRef__":true,"id":5001},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"5033":{"submorphs":[],"scripts":[],"id":"364FF344-E489-461B-BC8C-ED45E4823ED4","shape":{"__isSmartRef__":true,"id":5034},"__layered_droppingEnabled__":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"HighlightRectangle","partsBinMetaInfo":{"__isSmartRef__":true,"id":5035},"eventHandler":{"__isSmartRef__":true,"id":5076},"attributeConnections":[{"__isSmartRef__":true,"id":5077},{"__isSmartRef__":true,"id":5078},{"__isSmartRef__":true,"id":5079}],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","6FECB598-D130-4242-BF1B-E18767608129","0B23F218-078F-4912-A262-31B957885F41","C56BA290-B836-4946-B4EF-DBB6FBA2368C","61176BAF-CFE6-4F2C-9F0A-971AAD6595A1","CB4127B2-0AA5-4B50-9978-F1FF39924A82","113050BB-CF0E-4193-91C6-9C25FC857EE8","EFF939E4-317B-4662-943F-77A6E6F65BD0","AA288E7F-3972-4F0D-87DD-61E4BD9C9C97","903E8C60-1158-42D5-85D2-DF134DA6CEC1","28FD6210-A549-4A11-9178-04E77FF556C0","B3312E29-D786-469F-865E-91FD69475A52","D947A1C1-DCBE-4485-A33D-DF549F6978E0","56CE0E60-45BE-43FF-9C6C-296D8AC326B6","CC61E3F8-8C8D-4F24-A591-023D3C88DEC8"],"partTests":{"__isSmartRef__":true,"id":5081},"_ClipMode":"visible","moved":true,"isBeingDragged":false,"prevScroll":[0,0],"#startLetters":"","eventsAreDisabled":false,"_HandStyle":"default","_PointerEvents":"auto","_Rotation":0,"_Scale":1.0060210561262526,"owner":null,"magnifierButton":{"__isSmartRef__":true,"id":5001},"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5086},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(40.0,4131.0)","distanceToDragEvent":"lively.pt(44.0,-14.0)"},"5034":{"_BorderWidth":0,"_ClipMode":"visible","_BorderRadius":0,"_Opacity":0.2597,"_BorderStyle":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(775.0,471.0)","_BorderColor":"Color.rgb(204,0,0)","_Fill":"Color.rgb(58,0,255)","_Padding":"lively.rect(0,0,0,0)"},"5035":{"partsSpaceName":"PartsBin/Tools","comment":"A rectangle which highlights the object under the first hand of the world","migrationLevel":4,"partName":"HighlightRectangle","changes":[{"__isSmartRef__":true,"id":5036},{"__isSmartRef__":true,"id":5038},{"__isSmartRef__":true,"id":5040},{"__isSmartRef__":true,"id":5042},{"__isSmartRef__":true,"id":5044},{"__isSmartRef__":true,"id":5046},{"__isSmartRef__":true,"id":5048},{"__isSmartRef__":true,"id":5050},{"__isSmartRef__":true,"id":5052},{"__isSmartRef__":true,"id":5054},{"__isSmartRef__":true,"id":5056},{"__isSmartRef__":true,"id":5058},{"__isSmartRef__":true,"id":5060},{"__isSmartRef__":true,"id":5062},{"__isSmartRef__":true,"id":5064},{"__isSmartRef__":true,"id":5066},{"__isSmartRef__":true,"id":5068},{"__isSmartRef__":true,"id":5070},{"__isSmartRef__":true,"id":5072},{"__isSmartRef__":true,"id":5074}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"5036":{"date":{"__isSmartRef__":true,"id":5037},"author":"timfelgentreff","message":"no comment","id":"3DB7DB40-210A-4BED-91FD-9287005703EC"},"5037":{"isSerializedDate":true,"string":"Thu May 24 2012 17:04:54 GMT+0200 (CEST)"},"5038":{"date":{"__isSmartRef__":true,"id":5039},"author":"tessi","message":"no comment","id":"23D7AA12-66A9-4C3B-B494-131256C291AC"},"5039":{"isSerializedDate":true,"string":"Thu May 24 2012 16:57:13 GMT+0200 (CEST)"},"5040":{"date":{"__isSmartRef__":true,"id":5041},"author":"tessi","message":"no comment","id":"2C30B7CA-388F-4F51-B4CF-A2E50E381148"},"5041":{"isSerializedDate":true,"string":"Thu May 24 2012 16:23:11 GMT+0200 (CEST)"},"5042":{"date":{"__isSmartRef__":true,"id":5043},"author":"tessi","message":"diable events","id":"7C1F71A3-FDAC-470A-B9A9-E1F2C9FEF18E"},"5043":{"isSerializedDate":true,"string":"Thu May 24 2012 14:46:08 GMT+0200 (CEST)"},"5044":{"date":{"__isSmartRef__":true,"id":5045},"author":"tessi","message":"no comment","id":"01996A33-11BC-4C15-96D7-B7D219E2E961"},"5045":{"isSerializedDate":true,"string":"Thu May 24 2012 14:39:50 GMT+0200 (CEST)"},"5046":{"date":{"__isSmartRef__":true,"id":5047},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"5047":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"5048":{"date":{"__isSmartRef__":true,"id":5049},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"5049":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"5050":{"date":{"__isSmartRef__":true,"id":5051},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"5051":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"5052":{"date":{"__isSmartRef__":true,"id":5053},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"5053":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"5054":{"date":{"__isSmartRef__":true,"id":5055},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"5055":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"5056":{"date":{"__isSmartRef__":true,"id":5057},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"5057":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"5058":{"date":{"__isSmartRef__":true,"id":5059},"author":"tessi","message":"no comment","id":"4B982A01-25B3-455A-848D-89C2C3C471D7"},"5059":{"isSerializedDate":true,"string":"Thu May 24 2012 13:58:01 GMT+0200 (CEST)"},"5060":{"date":{"__isSmartRef__":true,"id":5061},"author":"tessi","message":"no comment","id":"2FD6CB7B-3BC7-4666-98B4-AACF1001954D"},"5061":{"isSerializedDate":true,"string":"Thu May 24 2012 14:07:32 GMT+0200 (CEST)"},"5062":{"date":{"__isSmartRef__":true,"id":5063},"author":"tessi","message":"no comment","id":"09CF5ECF-2C87-4B66-A164-39848628596F"},"5063":{"isSerializedDate":true,"string":"Thu May 24 2012 15:34:59 GMT+0200 (CEST)"},"5064":{"date":{"__isSmartRef__":true,"id":5065},"author":"tessi","message":"no comment","id":"252A3EB5-DB00-4CF9-BF38-2927DD1C5229"},"5065":{"isSerializedDate":true,"string":"Thu May 24 2012 16:34:29 GMT+0200 (CEST)"},"5066":{"date":{"__isSmartRef__":true,"id":5067},"author":"tessi","message":"no comment","id":"81534551-62C1-4FC9-96CB-A5AC6642CA1E"},"5067":{"isSerializedDate":true,"string":"Thu May 24 2012 16:45:49 GMT+0200 (CEST)"},"5068":{"date":{"__isSmartRef__":true,"id":5069},"author":"tessi","message":"no comment","id":"5125DE3A-D50E-4621-8490-F3A9D99C2C4C"},"5069":{"isSerializedDate":true,"string":"Thu May 24 2012 16:47:20 GMT+0200 (CEST)"},"5070":{"date":{"__isSmartRef__":true,"id":5071},"author":"tessi","message":"no comment","id":"C81A2FBF-CB0B-4A0B-9D63-F9AEDFCB5DA6"},"5071":{"isSerializedDate":true,"string":"Thu May 24 2012 16:51:06 GMT+0200 (CEST)"},"5072":{"date":{"__isSmartRef__":true,"id":5073},"author":"tessi","message":"no comment","id":"DC8EF5EC-7563-45B6-816D-20E2DC218525"},"5073":{"isSerializedDate":true,"string":"Thu May 24 2012 16:52:10 GMT+0200 (CEST)"},"5074":{"date":{"__isSmartRef__":true,"id":5075},"author":"timfelgentreff","message":"no comment","id":"E7515DFB-DE7D-4E1F-A2C3-85166DCE4942"},"5075":{"isSerializedDate":true,"string":"Thu May 24 2012 16:59:39 GMT+0200 (CEST)"},"5076":{"morph":{"__isSmartRef__":true,"id":5033},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"5077":{"sourceObj":{"__isSmartRef__":true,"id":5033},"sourceAttrName":"onMouseMove","targetObj":{"__isSmartRef__":true,"id":5033},"targetMethodName":"updateOnMove","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"5078":{"sourceObj":{"__isSmartRef__":true,"id":5033},"sourceAttrName":"onMouseUp","targetObj":{"__isSmartRef__":true,"id":5001},"targetMethodName":"removeHighlighting","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"5079":{"sourceObj":{"__isSmartRef__":true,"id":5033},"sourceAttrName":"onMouseUp","targetObj":{"__isSmartRef__":true,"id":4006},"targetMethodName":"setTarget","converterString":"function () {\n return this.sourceObj.morphUnderCursor();\n }","updaterString":null,"varMapping":{"__isSmartRef__":true,"id":5080},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"5080":{"source":{"__isSmartRef__":true,"id":5033},"target":{"__isSmartRef__":true,"id":4006}},"5081":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5082}},"5082":{"test01IsMorph":{"__isSmartRef__":true,"id":5083}},"5083":{"varMapping":{"__isSmartRef__":true,"id":5084},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":5085},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5084":{"this":{"__isSmartRef__":true,"id":5081}},"5085":{},"5086":{"update":{"__isSmartRef__":true,"id":5087},"updateOnMove":{"__isSmartRef__":true,"id":5091},"bringToFront":{"__isSmartRef__":true,"id":5095},"morphUnderCursor":{"__isSmartRef__":true,"id":5103}},"5087":{"varMapping":{"__isSmartRef__":true,"id":5088},"source":"function update(morphUnderCursor) {\n if (morphUnderCursor === this.magnifierButton ||\n this.magnifierButton.submorphs.include(morphUnderCursor)) {\n morphToHighlight = this.magnifierButton.currentTarget();\n } else {\n morphToHighlight = morphUnderCursor;\n }\n\n if (morphToHighlight && morphToHighlight.world()) {\n this.setPosition(morphToHighlight.getPositionInWorld());\n this.setExtent(morphToHighlight.getExtent());\n }\n}","funcProperties":{"__isSmartRef__":true,"id":5089},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5088":{"this":{"__isSmartRef__":true,"id":5033}},"5089":{"timestamp":{"__isSmartRef__":true,"id":5090},"user":"lauritz","tags":[]},"5090":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:29:58 GMT+0200 (CEST)"},"5091":{"varMapping":{"__isSmartRef__":true,"id":5092},"source":"function updateOnMove() {\n this.update(this.morphUnderCursor());\n this.bringToFront();\n}","funcProperties":{"__isSmartRef__":true,"id":5093},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5092":{"this":{"__isSmartRef__":true,"id":5033}},"5093":{"timestamp":{"__isSmartRef__":true,"id":5094},"user":"lauritz","tags":[]},"5094":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:18:33 GMT+0200 (CEST)"},"5095":{"varMapping":{"__isSmartRef__":true,"id":5096},"source":"function bringToFront() {\n this.renderContext().morphNode.style.zIndex= 1000;\n}","funcProperties":{"__isSmartRef__":true,"id":5101},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5096":{"this":{"__isSmartRef__":true,"id":5033},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5097}},"5097":{"$super":{"__isSmartRef__":true,"id":5098}},"5098":{"varMapping":{"__isSmartRef__":true,"id":5099},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":5100},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5099":{"obj":{"__isSmartRef__":true,"id":5033},"name":"bringToFront"},"5100":{},"5101":{"timestamp":{"__isSmartRef__":true,"id":5102},"user":"lauritz","tags":[]},"5102":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:12:09 GMT+0200 (CEST)"},"5103":{"varMapping":{"__isSmartRef__":true,"id":5104},"source":"function morphUnderCursor() {\n var that = this,\n world = lively.morphic.World.current(); \n \n return world.morphsContainingPoint(world.firstHand().getPosition()).detect(\n function(ea) {\n return !ea.isPlaceholder &&\n !ea.isHalo &&\n (!ea.owner || !ea.owner.isHalo) &&\n !(ea === that);\n });\n}","funcProperties":{"__isSmartRef__":true,"id":5105},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5104":{"this":{"__isSmartRef__":true,"id":5033}},"5105":{"timestamp":{"__isSmartRef__":true,"id":5106},"user":"lauritz","tags":[]},"5106":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:18:36 GMT+0200 (CEST)"},"5107":{"onFire":{"__isSmartRef__":true,"id":5108},"removeHighlighting":{"__isSmartRef__":true,"id":5112},"onMouseMove":{"__isSmartRef__":true,"id":5116},"onMouseOut":{"__isSmartRef__":true,"id":5124},"reset":{"__isSmartRef__":true,"id":5132},"isTracking":{"__isSmartRef__":true,"id":5136},"isHighlighting":{"__isSmartRef__":true,"id":5140},"currentTarget":{"__isSmartRef__":true,"id":5144}},"5108":{"varMapping":{"__isSmartRef__":true,"id":5109},"source":"function onFire() {\n var hand = lively.morphic.World.current().firstHand(),\n highlight = this.highlightRectangle,\n that = this;\n\n if (this.isTracking()) {\n this.removeHighlighting();\n } else {\n this.world().addMorph(highlight);\n hand.highlightConnection = connect(hand, \"scrollFocusMorph\", highlight, \"update\");\n highlight.bringToFront();\n if (!this.currentTarget() || !this.currentTarget().world()) {\n highlight.setExtent(pt(0,0));\n }\n }\n}","funcProperties":{"__isSmartRef__":true,"id":5110},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5109":{"this":{"__isSmartRef__":true,"id":5001}},"5110":{"timestamp":{"__isSmartRef__":true,"id":5111},"user":"lauritz","tags":[]},"5111":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:40:51 GMT+0200 (CEST)"},"5112":{"varMapping":{"__isSmartRef__":true,"id":5113},"source":"function removeHighlighting() {\n var hand = this.world().firstHand();\n \n if (this.highlightRectangle) {\n this.highlightRectangle.remove();\n }\n \n hand.attributeConnections.removeAt(\n hand.attributeConnections.indexOf(hand.highlightConnection));\n hand.highlightConnection = null;\n}","funcProperties":{"__isSmartRef__":true,"id":5114},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5113":{"this":{"__isSmartRef__":true,"id":5001}},"5114":{"timestamp":{"__isSmartRef__":true,"id":5115},"user":"lauritz","tags":[]},"5115":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:20:30 GMT+0200 (CEST)"},"5116":{"varMapping":{"__isSmartRef__":true,"id":5117},"source":"function onMouseMove(evt) {\n var target = this.currentTarget();\n if (target && target.world() && !this.isHighlighting()) {\n this.highlightRectangle.update(target);\n this.world().addMorph(this.highlightRectangle);\n this.highlightRectangle.bringToFront();\n this.targetHighlight = this.highlightRectangle;\n }\n}","funcProperties":{"__isSmartRef__":true,"id":5122},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5117":{"this":{"__isSmartRef__":true,"id":5001},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5118}},"5118":{"$super":{"__isSmartRef__":true,"id":5119}},"5119":{"varMapping":{"__isSmartRef__":true,"id":5120},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":5121},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5120":{"obj":{"__isSmartRef__":true,"id":5001},"name":"onMouseMove"},"5121":{},"5122":{"timestamp":{"__isSmartRef__":true,"id":5123},"user":"lauritz","tags":[]},"5123":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:25:52 GMT+0200 (CEST)"},"5124":{"varMapping":{"__isSmartRef__":true,"id":5125},"source":"function onMouseOut() {\n if (this.isHighlighting()) {\n if (!this.isTracking()) {\n this.targetHighlight.remove();\n }\n delete this.targetHighlight;\n }\n}","funcProperties":{"__isSmartRef__":true,"id":5130},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5125":{"this":{"__isSmartRef__":true,"id":5001},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":5126}},"5126":{"$super":{"__isSmartRef__":true,"id":5127}},"5127":{"varMapping":{"__isSmartRef__":true,"id":5128},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":5129},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5128":{"obj":{"__isSmartRef__":true,"id":5001},"name":"onMouseOut"},"5129":{},"5130":{"timestamp":{"__isSmartRef__":true,"id":5131},"user":"lauritz","tags":[]},"5131":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:21:57 GMT+0200 (CEST)"},"5132":{"varMapping":{"__isSmartRef__":true,"id":5133},"source":"function reset() {\n this.highlightRectangle.attributeConnections = [];\n \n connect(rect, \"onMouseMove\", this.highlightRectangle, \"updateOnMove\")\n connect(rect, \"onMouseUp\", this, \"removeHighlighting\")\n connect(rect, \"onMouseUp\", this.owner, \"setTarget\",\n {converter: function () {\n return this.sourceObj.morphUnderCursor();\n }\n })\n}","funcProperties":{"__isSmartRef__":true,"id":5134},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5133":{"this":{"__isSmartRef__":true,"id":5001}},"5134":{"timestamp":{"__isSmartRef__":true,"id":5135},"user":"lauritz","tags":[]},"5135":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:20:55 GMT+0200 (CEST)"},"5136":{"varMapping":{"__isSmartRef__":true,"id":5137},"source":"function isTracking() {\n return !!this.world().firstHand().highlightConnection;\n}","funcProperties":{"__isSmartRef__":true,"id":5138},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5137":{"this":{"__isSmartRef__":true,"id":5001}},"5138":{"timestamp":{"__isSmartRef__":true,"id":5139},"user":"lauritz","tags":[]},"5139":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:11:25 GMT+0200 (CEST)"},"5140":{"varMapping":{"__isSmartRef__":true,"id":5141},"source":"function isHighlighting() {\n return !!this.targetHighlight;\n}","funcProperties":{"__isSmartRef__":true,"id":5142},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5141":{"this":{"__isSmartRef__":true,"id":5001}},"5142":{"timestamp":{"__isSmartRef__":true,"id":5143},"user":"lauritz","tags":[]},"5143":{"isSerializedDate":true,"string":"Fri Aug 03 2012 14:11:22 GMT+0200 (CEST)"},"5144":{"varMapping":{"__isSmartRef__":true,"id":5145},"source":"function currentTarget() {\n return this.owner.target;\n}","funcProperties":{"__isSmartRef__":true,"id":5146},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5145":{"this":{"__isSmartRef__":true,"id":5001}},"5146":{"timestamp":{"__isSmartRef__":true,"id":5147},"user":"lauritz","tags":[]},"5147":{"isSerializedDate":true,"string":"Wed Jun 06 2012 18:26:02 GMT+0200 (CEST)"},"5148":{"target":{"__isSmartRef__":true,"id":4006},"selector":"update","args":[],"stopped":false,"tickTime":500,"suspended":false,"__LivelyClassName__":"lively.morphic.TargetScript","__SourceModuleName__":"Global.lively.morphic.Core"},"5149":{"_BorderWidth":1,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"visible","__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(808.0,431.8)","_BorderColor":"Color.rgb(95,94,95)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)"},"5150":{"partsSpaceName":"PartsBin/Basic","comment":"Edit scripts and connections of a specific morph.","migrationLevel":4,"partName":"ObjectEditorPane","changes":[{"__isSmartRef__":true,"id":5151}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"5151":{"date":{"__isSmartRef__":true,"id":5152},"author":"lauritz","message":"Adapted the update behavior on ticks. Reduces the impact of HTML's autoscroll to selected list items."},"5152":{"isSerializedDate":true,"string":"Fri Oct 21 2011 00:39:30 GMT+0200 (CEST)"},"5153":{"morph":{"__isSmartRef__":true,"id":4006},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"5154":{"resizeWidth":true,"resizeHeight":true,"adjustForNewBounds":true},"5155":{},"5156":{"displayInitialScript":{"__isSmartRef__":true,"id":5157},"displayJavaScriptSource":{"__isSmartRef__":true,"id":5161},"displaySourceForConnection":{"__isSmartRef__":true,"id":5165},"displaySourceForScript":{"__isSmartRef__":true,"id":5169},"generateSourceForConnection":{"__isSmartRef__":true,"id":5173},"generateSourceForScript":{"__isSmartRef__":true,"id":5177},"generateTargetCode":{"__isSmartRef__":true,"id":5181},"newConnection":{"__isSmartRef__":true,"id":5185},"newScript":{"__isSmartRef__":true,"id":5189},"reset":{"__isSmartRef__":true,"id":5193},"selectChangedContent":{"__isSmartRef__":true,"id":5197},"setTarget":{"__isSmartRef__":true,"id":5201},"sortedConnectionNamesOfObj":{"__isSmartRef__":true,"id":5205},"sortedScriptNamesOfObj":{"__isSmartRef__":true,"id":5209},"updateLists":{"__isSmartRef__":true,"id":5213},"onShutdown":{"__isSmartRef__":true,"id":5217},"confirmUnsavedChanges":{"__isSmartRef__":true,"id":5221},"update":{"__isSmartRef__":true,"id":5225},"ensureAnnotationLayer":{"__isSmartRef__":true,"id":5229},"copyToPartsBinWithUserRequest":{"__isSmartRef__":true,"id":5233},"printTags":{"__isSmartRef__":true,"id":5241},"setTag":{"__isSmartRef__":true,"id":5245},"runScript":{"__isSmartRef__":true,"id":5249},"openPartTestRunner":{"__isSmartRef__":true,"id":5253},"hasUnsavedChanges":{"__isSmartRef__":true,"id":5257}},"5157":{"varMapping":{"__isSmartRef__":true,"id":5158},"source":"function displayInitialScript() {\n if (this.scriptList.getList().size() > 1) {\n this.scriptList.preselectItem();\n } else if (this.connectionList.getList().size() > 1) {\n this.connectionList.preselectItem();\n } else {\n this.scriptList.selectAt(0);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":5159},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5158":{"this":{"__isSmartRef__":true,"id":4006}},"5159":{"timestamp":{"__isSmartRef__":true,"id":5160},"user":"lauritz","tags":[]},"5160":{"isSerializedDate":true,"string":"Thu Nov 17 2011 04:13:43 GMT+0100 (CET)"},"5161":{"varMapping":{"__isSmartRef__":true,"id":5162},"source":"function displayJavaScriptSource(jsCode) {\n if (this.scriptPane.hasChanged()) {\n var that = this;\n var callback = function(confirmed) {\n if (confirmed) that.scriptPane.display(jsCode)\n };\n this.confirmUnsavedChanges(callback);\n } else {\n this.scriptPane.display(jsCode);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":5163},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5162":{"this":{"__isSmartRef__":true,"id":4006}},"5163":{"timestamp":{"__isSmartRef__":true,"id":5164},"user":"lauritz","tags":[]},"5164":{"isSerializedDate":true,"string":"Thu Nov 17 2011 04:59:26 GMT+0100 (CET)"},"5165":{"varMapping":{"__isSmartRef__":true,"id":5166},"source":"function displaySourceForConnection(connection) {\n var code = \"\", that = this;\n if (connection === undefined) return;\n if (connection === null) {\n this.sortedConnectionNamesOfObj(this.target).forEach(function(each) {\n code = code.concat(that.generateSourceForConnection(each[1])).concat(\"\\n\\n\");\n });\n code = code.substring(0, code.length - \"\\n\\n\".length - 1);\n } else {\n code = this.generateSourceForConnection(connection);\n }\n this.displayJavaScriptSource(code);\n}","funcProperties":{"__isSmartRef__":true,"id":5167},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5166":{"this":{"__isSmartRef__":true,"id":4006}},"5167":{"timestamp":{"__isSmartRef__":true,"id":5168},"user":"conradcalmez","tags":[]},"5168":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:59:30 GMT+0100 (CET)"},"5169":{"varMapping":{"__isSmartRef__":true,"id":5170},"source":"function displaySourceForScript(scriptName) {\n var code = \"\",\n that = this;\n if (scriptName === null) {\n this.sortedScriptNamesOfObj(this.target).forEach(function(each) {\n code = code.concat(that.generateSourceForScript(each)).concat(\"\\n\\n\\n\");\n });\n code = code.substring(0, code.length - \"\\n\\n\\n\".length - 1);\n } else {\n code = this.generateSourceForScript(scriptName);\n }\n if (code) this.displayJavaScriptSource(code);\n}","funcProperties":{"__isSmartRef__":true,"id":5171},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5170":{"this":{"__isSmartRef__":true,"id":4006}},"5171":{"timestamp":{"__isSmartRef__":true,"id":5172},"user":"cschuster","tags":[]},"5172":{"isSerializedDate":true,"string":"Thu Aug 30 2012 08:14:26 GMT+0200 (CEST)"},"5173":{"varMapping":{"__isSmartRef__":true,"id":5174},"source":"function generateSourceForConnection(connection) {\n var c = connection, targetObject = this.target;\n\tif (!c.getTargetObj() || !c.getTargetObj().name || \n\t\t!c.getSourceObj() || !c.getSourceObj().name) return String(c);\n\n\tvar optConfig = []\n\tif (c.converterString)\n\t\toptConfig.push(\"converter: \\n\\t\" + c.converterString)\n\tif (c.updaterString)\n\t\toptConfig.push(\"updater: \\n\\t\" + c.updaterString)\n\treturn Strings.format('connect(%s, \"%s\", %s, \"%s\", {%s});', \n\t\t\tthis.generateTargetCode(targetObject, c.getSourceObj()),\n\t\t\tc.getSourceAttrName(),\n\t\t\tthis.generateTargetCode(targetObject, c.getTargetObj()),\n\t\t\tc.getTargetMethodName(),\n\t\t\toptConfig.join(','));\n\n}","funcProperties":{"__isSmartRef__":true,"id":5175},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5174":{"this":{"__isSmartRef__":true,"id":4006}},"5175":{"timestamp":{"__isSmartRef__":true,"id":5176},"user":"lauritz","tags":[]},"5176":{"isSerializedDate":true,"string":"Thu Nov 17 2011 04:59:26 GMT+0100 (CET)"},"5177":{"varMapping":{"__isSmartRef__":true,"id":5178},"source":"function generateSourceForScript(scriptName) {\n var script = this.target[scriptName],\n annotation = '',\n scriptSource = '',\n tagScript = '';\n\n if (!script) return;\n\n if (script.timestamp && script.user) \n annotation = Strings.format('// changed at %s by %s \\n', script.timestamp, script.user);\n scriptSource = Strings.format('this.addScript(%s)', script.getOriginal());\n tagScript = Strings.format('.tag(%s);', this.printTags(script));\n\n return annotation + scriptSource + tagScript;\n}","funcProperties":{"__isSmartRef__":true,"id":5179},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5178":{"this":{"__isSmartRef__":true,"id":4006}},"5179":{"timestamp":{"__isSmartRef__":true,"id":5180},"user":"cschuster","tags":[]},"5180":{"isSerializedDate":true,"string":"Thu Aug 30 2012 08:14:45 GMT+0200 (CEST)"},"5181":{"varMapping":{"__isSmartRef__":true,"id":5182},"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":5183},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5182":{"this":{"__isSmartRef__":true,"id":4006}},"5183":{"timestamp":{"__isSmartRef__":true,"id":5184},"user":"lauritz","tags":[]},"5184":{"isSerializedDate":true,"string":"Thu Nov 17 2011 04:59:26 GMT+0100 (CET)"},"5185":{"varMapping":{"__isSmartRef__":true,"id":5186},"source":"function newConnection() {\n if (this.target) {\n var code = \"connect(SOURCE, SOURCE_PROPERTY, TARGET, TARGET_PROPERTY);\";\n this.displayJavaScriptSource(code);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":5187},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5186":{"this":{"__isSmartRef__":true,"id":4006}},"5187":{"timestamp":{"__isSmartRef__":true,"id":5188},"user":"lauritz","tags":[]},"5188":{"isSerializedDate":true,"string":"Thu Nov 17 2011 04:59:26 GMT+0100 (CET)"},"5189":{"varMapping":{"__isSmartRef__":true,"id":5190},"source":"function newScript() {\n if (this.target) {\n var code = \"this.addScript(function SCRIPTNAME() {\\n \\n}).tag([]);\";\n this.displayJavaScriptSource(code);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":5191},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5190":{"this":{"__isSmartRef__":true,"id":4006}},"5191":{"timestamp":{"__isSmartRef__":true,"id":5192},"user":"lauritz","tags":[]},"5192":{"isSerializedDate":true,"string":"Tue Nov 29 2011 04:24:25 GMT+0100 (CET)"},"5193":{"varMapping":{"__isSmartRef__":true,"id":5194},"source":"function reset() {\n this.scriptPane = this.get('ObjectEditorScriptPane')\n this.scriptList = this.get('ObjectEditorScriptList')\n this.connectionList = this.get('ObjectEditorConnectionList')\n this.morphSelector = this.get('ObjectEditorMorphSelector')\n \n this.target = null;\n this.currentTag = null;\n \n this.scriptPane.reset();\n this.scriptList.setList();\n this.scriptList.selection = null;\n this.connectionList.setList();\n this.connectionList.selection = null;\n this.morphSelector.reset();\n this.tagChooser.reset();\n \n this.stopStepping();\n}","funcProperties":{"__isSmartRef__":true,"id":5195},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"5194":{"this":{"__isSmartRef__":true,"id":4006}},"5195":{"timestamp":{"__isSmartRef__":true,"id":5196},"user":"lauritz","tags":[]},"5196":{"isSerializedDate":true,"string":"Fri Aug 03 2012 11:45:36 GMT+0200 (CEST)"},"5197":{"varMapping":{"__isSmartRef__":true,"id":5198},"source":"function selectChangedContent(source) {\n\n var addScriptRegex = /this\\.addScript\\s*\\(\\s*function\\s*([^\\(]*)/g;\n var addScriptMatches = [];\n var addScriptMatch = addScriptRegex.exec(source);\n while (addScriptMatch) {\n addScriptMatches.push(addScriptMatch[1]);\n addScriptMatch = addScriptRegex.exec(source);\n }\n \n // if scripts were added, select either a specific one or all\n if (addScriptMatches.length > 0) { \n if (addScriptMatches.length === 1) {\n return this.scriptList.selectAddedScript(addScriptMatches[0]);\n }\n return this.scriptList.selectAt(0);\n }\n\n var connectionRegex = \n /connect\\(\\s*([^,]*)\\s*,\\s*\"([^,]*)\"\\s*,\\s*([^,]*)\\s*,\\s*\"([^,]*)\"/g;\n var connectionMatches = [];\n var connectionMatch = connectionRegex.exec(source);\n while (connectionMatch) {\n connectionMatches.push(connectionMatch);\n connectionMatch = connectionRegex.exec(source);\n }\n\n // if connections were made, select either a specific one or all\n if (connectionMatches.length > 0) {\n if (connectionMatches.length === 1) {\n var match = connectionMatches[0];\n for (var i=0; i ' + con.sourceObj.name :\n 'Editor for converter function';\n var window = world.addFramedMorph(editor, title)\n window.align(window.bounds().topCenter(), visualConnector.bounds().bottomCenter())\n }],\n ['hide', function() {\n visualConnector.disconnectFromMagnets();\n visualConnector.remove();\n }],\n ['disconnect', function() {\n alertOK('Disconnected ' + visualConnector.con);\n visualConnector.con.visualDisconnect();\n }],\n ['cancel', function() {}],\n ];\n return items;\n }","varMapping":{"__isSmartRef__":true,"id":6750},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6749":{},"6750":{"this":{"__isSmartRef__":true,"id":6733},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":6751}},"6751":{"$super":{"__isSmartRef__":true,"id":6752}},"6752":{"funcProperties":{"__isSmartRef__":true,"id":6753},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","varMapping":{"__isSmartRef__":true,"id":6754},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6753":{},"6754":{"name":"morphMenuItems","obj":{"__isSmartRef__":true,"id":6733}},"6755":{"morph":{"__isSmartRef__":true,"id":6731},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6756":{"_Align":"center","_ClipMode":"hidden","_FontFamily":"Helvetica","_FontSize":10,"_HandStyle":"default","_MaxTextHeight":null,"_MaxTextWidth":101,"_MinTextHeight":null,"_MinTextWidth":101,"__serializedExpressions__":["_Padding","_Position","_TextColor","padding"],"_PointerEvents":"none","_Scale":1,"_WhiteSpaceHandling":"pre-wrap","allowInput":false,"attributeConnections":[],"derivationIds":[2897,"92EB5E70-61BB-4A71-942C-A34A20789B2F","A9C9F9CF-1BAC-4074-A093-4EB0C3C90866","2FE50303-6361-4A70-9BD5-0D8D1C8B5176","D774C172-7EE9-40AE-9949-340BA8EDBD37","9B5186A1-2B8E-406C-B165-05F327435DC2","9D4948C2-2429-4333-8F3D-89BB96D33894","748160AD-0FF7-4E89-9BB5-486870332207","944E6E30-642C-448D-BBFE-03835C34628C","254F8208-565C-4C75-A5F5-00426CEB4B73","501AF004-4601-4260-8B81-C8F07DB46A9D","A8CA8FB2-5C27-4E5A-8EC1-6697FE1FF0DD","8517C0CE-CE66-435A-B522-21B2A78DFEE9","3CA33CEB-8ACD-4C69-A01F-254F6D1DA196","B1DA64A1-C447-44F0-8186-BB6E6E7DF3CB","E5464D79-8548-4E65-8C48-D9046F121681","20971AE2-EBF3-4F13-BB11-A40F5FA641C1"],"doNotCopyProperties":[],"doNotSerialize":[],"droppingEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6757},"eventsAreIgnored":true,"fixedHeight":true,"fixedWidth":true,"grabbingEnabled":false,"halosEnabled":true,"id":"61011ABD-6450-4CD8-80E2-9D746B6A1F7D","isLabel":true,"owner":{"__isSmartRef__":true,"id":6731},"registeredForMouseEvents":true,"scripts":[],"shape":{"__isSmartRef__":true,"id":6758},"submorphs":[],"textChunks":[{"__isSmartRef__":true,"id":6759}],"textStyle":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)","_TextColor":"Color.rgb(0,0,0)","padding":"lively.rect(5,5,0,0)"},"6757":{"morph":{"__isSmartRef__":true,"id":6756},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6758":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","position"],"_BorderWidth":0,"_ClipMode":"hidden","_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(0,0,0)","_Extent":"lively.pt(101.0,21.0)","_Padding":"lively.rect(0,3,0,0)","position":"lively.pt(0.0,0.0)"},"6759":{"_id":"_1138","chunkOwner":{"__isSmartRef__":true,"id":6756},"storedString":"cancel","style":{"__isSmartRef__":true,"id":6760},"__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6760":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6761":{"moveHorizontal":true,"moveVertical":true},"6762":{"stops":[{"__isSmartRef__":true,"id":6763},{"__isSmartRef__":true,"id":6764},{"__isSmartRef__":true,"id":6765},{"__isSmartRef__":true,"id":6766}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6763":{"__serializedExpressions__":["color"],"offset":0,"color":"Color.rgb(250,250,250)"},"6764":{"__serializedExpressions__":["color"],"offset":0.4,"color":"Color.rgb(232,232,232)"},"6765":{"__serializedExpressions__":["color"],"offset":0.6,"color":"Color.rgb(232,232,232)"},"6766":{"__serializedExpressions__":["color"],"offset":1,"color":"Color.rgb(248,248,248)"},"6767":{"stops":[{"__isSmartRef__":true,"id":6768},{"__isSmartRef__":true,"id":6769},{"__isSmartRef__":true,"id":6770},{"__isSmartRef__":true,"id":6771}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6768":{"__serializedExpressions__":["color"],"offset":0,"color":"Color.rgb(245,245,245)"},"6769":{"__serializedExpressions__":["color"],"offset":0.4,"color":"Color.rgb(209,209,209)"},"6770":{"__serializedExpressions__":["color"],"offset":0.6,"color":"Color.rgb(209,209,209)"},"6771":{"__serializedExpressions__":["color"],"offset":1,"color":"Color.rgb(240,240,240)"},"6772":{"comment":"Has a script that is called on button press","migrationLevel":4,"partName":"Button","partsSpaceName":"PartsBin/Inputs","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"6773":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","position"],"_BorderRadius":5.2,"_BorderStyle":"solid","_BorderWidth":1.1840000000000002,"_ClipMode":"visible","_Fill":{"__isSmartRef__":true,"id":6774},"_Opacity":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(214,214,214)","_Extent":"lively.pt(101.0,21.0)","_Padding":"lively.rect(0,0,0,0)","position":"lively.pt(0.0,0.0)"},"6774":{"stops":[{"__isSmartRef__":true,"id":6775},{"__isSmartRef__":true,"id":6776},{"__isSmartRef__":true,"id":6777},{"__isSmartRef__":true,"id":6778}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6775":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"6776":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"6777":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"6778":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"6779":{"_ClipMode":"visible","__serializedExpressions__":["_Position","distanceToDragEvent"],"_Rotation":0,"_Scale":1,"attributeConnections":[{"__isSmartRef__":true,"id":6780}],"derivationIds":[2898,"9D27A522-4E3D-482F-97CF-3CA3247A3999","4EBF07AD-25C0-4034-BC06-31F137F70FA1","DC6D6B8E-37AE-4815-A81A-AC7071124A26","42DF6D49-8482-40A3-B901-512013BB5C75","0D3EB4E1-46E7-4B1E-8273-6432575F84B5","733427E4-0BB2-4FB7-917C-4A3D98C50589","001872CD-CE26-4A7A-AB1F-3EFF5AC6D6A3","2FFB821F-9334-4125-8541-31C21E305B78","A3635A2F-B9AE-4CAA-A07F-76E90A2AF718","ACE7DD81-434E-40D4-A12D-CB728F4CFA61","15D1D871-417C-444D-B7E7-4556C755A914","AEC9FEB8-505A-4D19-9C25-747D78D04F17","38C38B49-0343-41FA-BC14-2FAF64266DB0","55C4703F-8F22-4BB7-A09A-4186B8A404F2","6F234AFA-11CA-48C1-841A-536E5A48FE21","68C85EC7-341D-4DEB-B92C-816AC5454663"],"doNotCopyProperties":["$$fire"],"doNotSerialize":["$$fire"],"droppingEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6803},"grabbingEnabled":false,"halosEnabled":true,"id":"289E4FE8-9717-4331-ABBD-BFF1A23116C0","isActive":true,"isPressed":false,"label":{"__isSmartRef__":true,"id":6804},"layout":{"__isSmartRef__":true,"id":6809},"lighterFill":{"__isSmartRef__":true,"id":6810},"name":"Button1","normalFill":{"__isSmartRef__":true,"id":6815},"owner":{"__isSmartRef__":true,"id":6637},"partsBinMetaInfo":{"__isSmartRef__":true,"id":6820},"registeredForMouseEvents":true,"scripts":[],"shape":{"__isSmartRef__":true,"id":6821},"showsHalos":false,"submorphs":[{"__isSmartRef__":true,"id":6804}],"toggle":false,"value":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(245.0,378.0)","distanceToDragEvent":"lively.pt(62.0,-12.0)"},"6780":{"sourceAttrName":"fire","sourceObj":{"__isSmartRef__":true,"id":6779},"targetMethodName":"onPublish","targetObj":{"__isSmartRef__":true,"id":6637},"visualConnector":{"__isSmartRef__":true,"id":6781},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"6781":{"con":{"__isSmartRef__":true,"id":6780},"controlPoints":[{"__isSmartRef__":true,"id":6782},{"__isSmartRef__":true,"id":6783}],"droppingEnabled":true,"eventHandler":{"__isSmartRef__":true,"id":6791},"halosEnabled":true,"id":139,"owner":null,"scripts":[],"shape":{"__isSmartRef__":true,"id":6792},"showsMorphMenu":true,"submorphs":[{"__isSmartRef__":true,"id":6784}],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":6795},"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"6782":{"connectedMagnet":null,"index":0,"morph":{"__isSmartRef__":true,"id":6781},"__LivelyClassName__":"lively.morphic.ControlPoint","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"6783":{"connectedMagnet":null,"index":1,"marker":{"__isSmartRef__":true,"id":6784},"markerDirection":"prev","morph":{"__isSmartRef__":true,"id":6781},"__LivelyClassName__":"lively.morphic.ControlPoint","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"6784":{"__serializedExpressions__":["_Position"],"_Rotation":-2.5917394709132084,"droppingEnabled":true,"eventHandler":{"__isSmartRef__":true,"id":6785},"halosEnabled":true,"id":140,"owner":{"__isSmartRef__":true,"id":6781},"scripts":[],"shape":{"__isSmartRef__":true,"id":6786},"submorphs":[],"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","_Position":"lively.pt(0.5,0.5)"},"6785":{"morph":{"__isSmartRef__":true,"id":6784},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6786":{"__serializedExpressions__":["_BorderColor","_Extent","_Fill","_Padding","_Position"],"_BorderWidth":0,"_ClipMode":"visible","_PathElements":[{"__isSmartRef__":true,"id":6787},{"__isSmartRef__":true,"id":6788},{"__isSmartRef__":true,"id":6789},{"__isSmartRef__":true,"id":6790}],"cachedVertices":null,"dontChangeShape":false,"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_BorderColor":"Color.rgb(0,0,0)","_Extent":"lively.pt(16.0,12.0)","_Fill":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"6787":{"isAbsolute":true,"x":0,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"6788":{"isAbsolute":true,"x":0,"y":12,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"6789":{"isAbsolute":true,"x":16,"y":6,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"6790":{"isAbsolute":true,"x":0,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"6791":{"morph":{"__isSmartRef__":true,"id":6781},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6792":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","_Position"],"_BorderWidth":1,"_ClipMode":"visible","_PathElements":[{"__isSmartRef__":true,"id":6793},{"__isSmartRef__":true,"id":6794}],"cachedVertices":null,"dontChangeShape":false,"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_BorderColor":"Color.rgb(0,0,0)","_Extent":"lively.pt(311.0,191.0)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(-0.5,-0.5)"},"6793":{"isAbsolute":true,"x":310,"y":190,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"6794":{"isAbsolute":true,"x":0,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"6795":{"morphMenuItems":{"__isSmartRef__":true,"id":6796}},"6796":{"funcProperties":{"__isSmartRef__":true,"id":6797},"source":"function morphMenuItems() {\n var visualConnector = this, con = this.con, world = this.world();\n var items = [\n ['edit converter', function() {\n var source = con.converterString || 'function converter(value) {\\n return value\\n}',\n editor = new lively.morphic.Text(new Rectangle(0,0, 400, 200), source);\n editor.doitContext = con;\n connect(editor, 'savedTextString', con, 'converterString', {updater:\n function($upd, source) { this.targetObj.converter = null; $upd(source) }});\n connect(editor, 'savedTextString', world, 'alertOK', {converter: \n function() { return 'setting new converter' }})\n editor.applyStyle({syntaxHighlighting: true, fontFamily: 'Courier', resizeWidth: true, resizeHeight: true});\n var title = con.targetObj.name && con.sourceObj.name ?\n 'Editor for ' + con.targetObj.name + ' -> ' + con.sourceObj.name :\n 'Editor for converter function';\n var window = world.addFramedMorph(editor, title)\n window.align(window.bounds().topCenter(), visualConnector.bounds().bottomCenter())\n }],\n ['hide', function() {\n visualConnector.disconnectFromMagnets();\n visualConnector.remove();\n }],\n ['disconnect', function() {\n alertOK('Disconnected ' + visualConnector.con);\n visualConnector.con.visualDisconnect();\n }],\n ['cancel', function() {}],\n ];\n return items;\n }","varMapping":{"__isSmartRef__":true,"id":6798},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6797":{},"6798":{"this":{"__isSmartRef__":true,"id":6781},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":6799}},"6799":{"$super":{"__isSmartRef__":true,"id":6800}},"6800":{"funcProperties":{"__isSmartRef__":true,"id":6801},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","varMapping":{"__isSmartRef__":true,"id":6802},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6801":{},"6802":{"name":"morphMenuItems","obj":{"__isSmartRef__":true,"id":6781}},"6803":{"morph":{"__isSmartRef__":true,"id":6779},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6804":{"_Align":"center","_ClipMode":"hidden","_FontFamily":"Helvetica","_FontSize":10,"_HandStyle":"default","_MaxTextHeight":null,"_MaxTextWidth":101,"_MinTextHeight":null,"_MinTextWidth":101,"__serializedExpressions__":["_Padding","_Position","_TextColor","padding"],"_PointerEvents":"none","_Scale":1,"_WhiteSpaceHandling":"pre-wrap","allowInput":false,"attributeConnections":[],"derivationIds":[2899,"4F00D1F5-B85C-479E-BDDE-322DF2F432A3","5E7BC7AC-9EF9-4CF5-9196-A542A26534CA","46616896-CA46-4B43-B694-9FB001B32989","F73D407C-A72D-414B-AB8D-1E28025BCA1C","C5B395F9-BF24-4FA7-87D3-03E9AE9C4E45","ECEC7694-EF15-4DE7-A847-9DB2D4B99B3C","AE0EC189-A810-44FB-948F-F8667AF67929","CC950242-2CF1-48D3-B3C3-EF03073D145F","181712FB-04E9-40DA-ABEF-E711AC15A136","08CA5C5C-AAE0-4E6D-BFA4-04C9735965CC","F06603E2-E026-4DB9-B64F-71C0F6BE4CAA","5F5EDDF1-7355-4EE9-8286-9B0FC87B4A34","79E77E86-9ABD-4417-A260-E0CAABA3925E","11030354-936E-4E5D-BEB5-643D96C0CE06","34136BAA-3143-44E9-AA72-B7030E66E400","E5860588-E4A1-4D07-A6F3-12B2F107649A"],"doNotCopyProperties":[],"doNotSerialize":[],"droppingEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6805},"eventsAreIgnored":true,"fixedHeight":true,"fixedWidth":true,"grabbingEnabled":false,"halosEnabled":true,"id":"F8871DCC-64CF-42EA-853B-E552072683A5","isLabel":true,"owner":{"__isSmartRef__":true,"id":6779},"registeredForMouseEvents":true,"scripts":[],"shape":{"__isSmartRef__":true,"id":6806},"submorphs":[],"textChunks":[{"__isSmartRef__":true,"id":6807}],"textStyle":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)","_TextColor":"Color.rgb(0,0,0)","padding":"lively.rect(5,5,0,0)"},"6805":{"morph":{"__isSmartRef__":true,"id":6804},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6806":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","position"],"_BorderWidth":0,"_ClipMode":"hidden","_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(0,0,0)","_Extent":"lively.pt(101.0,21.0)","_Padding":"lively.rect(0,3,0,0)","position":"lively.pt(0.0,0.0)"},"6807":{"_id":"_1043","chunkOwner":{"__isSmartRef__":true,"id":6804},"storedString":"publish","style":{"__isSmartRef__":true,"id":6808},"__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6808":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6809":{"moveHorizontal":true,"moveVertical":true},"6810":{"stops":[{"__isSmartRef__":true,"id":6811},{"__isSmartRef__":true,"id":6812},{"__isSmartRef__":true,"id":6813},{"__isSmartRef__":true,"id":6814}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6811":{"__serializedExpressions__":["color"],"offset":0,"color":"Color.rgb(250,250,250)"},"6812":{"__serializedExpressions__":["color"],"offset":0.4,"color":"Color.rgb(232,232,232)"},"6813":{"__serializedExpressions__":["color"],"offset":0.6,"color":"Color.rgb(232,232,232)"},"6814":{"__serializedExpressions__":["color"],"offset":1,"color":"Color.rgb(248,248,248)"},"6815":{"stops":[{"__isSmartRef__":true,"id":6816},{"__isSmartRef__":true,"id":6817},{"__isSmartRef__":true,"id":6818},{"__isSmartRef__":true,"id":6819}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6816":{"__serializedExpressions__":["color"],"offset":0,"color":"Color.rgb(245,245,245)"},"6817":{"__serializedExpressions__":["color"],"offset":0.4,"color":"Color.rgb(209,209,209)"},"6818":{"__serializedExpressions__":["color"],"offset":0.6,"color":"Color.rgb(209,209,209)"},"6819":{"__serializedExpressions__":["color"],"offset":1,"color":"Color.rgb(240,240,240)"},"6820":{"comment":"Has a script that is called on button press","migrationLevel":4,"partName":"Button","partsSpaceName":"PartsBin/Inputs","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"6821":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","position"],"_BorderRadius":5.2,"_BorderStyle":"solid","_BorderWidth":1.1840000000000002,"_ClipMode":"visible","_Fill":{"__isSmartRef__":true,"id":6815},"_Opacity":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(214,214,214)","_Extent":"lively.pt(101.0,21.0)","_Padding":"lively.rect(0,0,0,0)","position":"lively.pt(0.0,0.0)"},"6822":{"_ClipMode":"auto","_FontFamily":"Helvetica","_FontSize":10,"_InputAllowed":true,"_MaxTextHeight":null,"_MaxTextWidth":445,"_MinTextHeight":null,"_MinTextWidth":445,"__serializedExpressions__":["_Position","distanceToDragEvent"],"_Rotation":0,"_Scale":1,"_WhiteSpaceHandling":"pre-wrap","allowInput":true,"attributeConnections":[],"charsReplaced":"","derivationIds":[2900,"7E82C349-9FC9-48B5-B84C-30E99FC40DF2","A07EAFD3-B03B-4E4C-BC72-FB29F65F543A","888FB55C-0365-4B40-A9B4-33FD19FA1E91","37AE3F7E-8AF9-413E-BDB9-796C3CE0C0A6","C19CF401-2869-429B-8C7E-3679F2C07B10","16D31632-3C1B-4388-9753-E178F4D74EC3","CE8B7F8B-0B5D-4A03-AFA0-CB5E4A9EE815","A0B7AE1E-340F-4786-A906-37B5D92B955E","6FB3DD7F-E27E-4C14-B6A7-87EE557243E3","8C9DC597-8FB3-409F-9F92-43E22D1EE113","96E19549-1C58-47D1-AABB-06F24696272A","20261F28-5D7A-4D9C-9F1F-79FC901C5E5F","9596C6D2-BEBD-47B3-B8A0-CD4AEBEF927D","420AC273-AA29-49EC-A1C7-C0E272006666","5D4C09DA-AAFB-4330-8646-23901C1FDB84","39A3F40D-B127-430E-B317-28966F140BB1"],"doNotCopyProperties":[],"doNotSerialize":[],"droppingEnabled":false,"evalEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6823},"fixedHeight":true,"fixedWidth":true,"grabbingEnabled":false,"halosEnabled":true,"id":"24021433-E2C9-4FFC-8408-F4C14446333D","isBeingDragged":false,"isInputLine":false,"isLockOwner":false,"lastFindLoc":12,"layout":{"__isSmartRef__":true,"id":6824},"name":"CommentText","owner":{"__isSmartRef__":true,"id":6637},"savedTextString":"no comment","scripts":[],"shape":{"__isSmartRef__":true,"id":6825},"showsHalos":false,"submorphs":[],"textChunks":[{"__isSmartRef__":true,"id":6826}],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(10.0,110.0)","distanceToDragEvent":"lively.pt(346.0,-16.0)"},"6823":{"morph":{"__isSmartRef__":true,"id":6822},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6824":{"resizeWidth":true},"6825":{"__serializedExpressions__":["_BorderColor","_Extent","_Fill","_Padding","_Position"],"_BorderRadius":0,"_BorderStyle":"solid","_BorderWidth":1,"_ClipMode":"hidden","_Opacity":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(0,0,0)","_Extent":"lively.pt(455.0,120.0)","_Fill":"Color.rgb(243,243,243)","_Padding":"lively.rect(4,2,0,0)","_Position":"lively.pt(0.0,0.0)"},"6826":{"style":{"__isSmartRef__":true,"id":6827},"chunkOwner":{"__isSmartRef__":true,"id":6822},"_id":"_1703","storedString":"experimenting with the debugger","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6827":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6828":{"_ClipMode":"visible","_FontFamily":"Arial, sans-serif","_FontSize":12,"_MaxTextHeight":null,"_MaxTextWidth":250,"_MinTextHeight":null,"_MinTextWidth":250,"__serializedExpressions__":["_Padding","_Position","distanceToDragEvent","textColor"],"_Rotation":0,"_Scale":1,"_WhiteSpaceHandling":"pre-wrap","allowsInput":true,"attributeConnections":[],"charsReplaced":"commit message","derivationIds":[2901,"8E267E15-1052-4F9C-B863-B733384EF1DA","851C46B4-347F-4AE4-9C04-C321E7CC8EA5","D33CE057-77D6-4CCC-90F9-867C622B3572","F9BFA4FE-D786-4384-B9F8-89EEA1D41685","95D3D9C3-CA8D-42A5-833B-30E01D630A4A","9FC24DFC-050E-423E-A017-2D5704509876","1EF71F38-5BCB-4C26-AB60-E2105330181C","7D191F0F-E475-47CF-BABE-55A543C7158D","F6ACFDD6-981C-4170-82C4-1AA9C3090741","092A05B9-0347-411B-8E2A-89272FF7A531","ABE15D91-8819-412F-9FAA-FC6A2F8AD14A","1F266812-1C31-4C6F-9676-B9E59DEA4864","F99A2F51-81DC-4D7F-93A2-84EFBFBC119F","7C9D55B3-6BFC-4DE2-B574-F4A3A11ECF00","08ABC4D8-386F-404A-AB0C-E90DC2E84DC0","4295456F-B084-4B9A-82A4-6C7639896A2F"],"doNotCopyProperties":[],"doNotSerialize":[],"droppingEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6829},"fixedHeight":false,"fixedWidth":true,"grabbingEnabled":false,"halosEnabled":true,"id":"B266B8E9-22E6-4109-8B50-51CE48483CC9","isLockOwner":false,"lastFindLoc":14,"name":"Text9","owner":{"__isSmartRef__":true,"id":6637},"partsBinMetaInfo":{"__isSmartRef__":true,"id":6830},"prevScroll":[0,0],"previousSelection":[0,6],"priorSelectionRange":[0,14],"registeredForMouseEvents":true,"scripts":[],"shape":{"__isSmartRef__":true,"id":6831},"showsHalos":false,"submorphs":[],"textChunks":[{"__isSmartRef__":true,"id":6832}],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(5,5,0,0)","_Position":"lively.pt(10.0,90.0)","distanceToDragEvent":"lively.pt(163.0,-17.0)","textColor":"Color.rgb(0,0,0)"},"6829":{"morph":{"__isSmartRef__":true,"id":6828},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6830":{"comment":"a simple text morph","migrationLevel":4,"partName":"Text","partsSpaceName":"PartsBin/Basic","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"6831":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","_Position"],"_BorderWidth":0,"_ClipMode":"visible","fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(0,0,0)","_Extent":"lively.pt(250.0,20.0)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"6832":{"_id":"_408","chunkOwner":{"__isSmartRef__":true,"id":6828},"morph":{"__isSmartRef__":true,"id":6828},"storedString":"comment","style":{"__isSmartRef__":true,"id":6833},"__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6833":{"italics":"italic","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6834":{"_ClipMode":"visible","__serializedExpressions__":["_Position","distanceToDragEvent"],"_Rotation":0,"_Scale":1,"attributeConnections":[{"__isSmartRef__":true,"id":6835}],"derivationIds":[2898,"9D27A522-4E3D-482F-97CF-3CA3247A3999","4EBF07AD-25C0-4034-BC06-31F137F70FA1","DC6D6B8E-37AE-4815-A81A-AC7071124A26","42DF6D49-8482-40A3-B901-512013BB5C75","132901B3-F9F2-482D-99E6-40EAECDCEF13","7BC760E1-232D-4654-8D89-3E2AF9B63E8A","10CF8C2D-EC10-4718-9BB8-A4D765C25CA2","E1457927-6D7F-4C43-A0D3-4606E937C36C","B2BCD5A8-36BB-4202-B2F1-480CA22D151C","16C66256-7472-4B33-A3FC-D41E1123E484","9D6EC181-02A4-4AA3-9511-97B61299072E","514B5C5C-2E93-4CD5-913F-C4210C8D3803","A4836A2F-5B4D-4F0C-BA65-6DF7DB4D4262","DD94CDA9-6F9F-4B4F-9D75-C57314BFD093","AB91D3DA-E1FA-400A-813B-C9670264E72F","9E97E660-33C2-4D79-9407-0794A939EBC2","E168BA8A-C869-40F5-B4BD-EF07D7092705"],"doNotCopyProperties":["$$fire"],"doNotSerialize":["$$fire"],"droppingEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6837},"grabbingEnabled":false,"halosEnabled":true,"id":"1ABC0486-A385-45D1-AAA4-391AC7F43F35","isActive":true,"isPressed":false,"label":{"__isSmartRef__":true,"id":6838},"layout":{"__isSmartRef__":true,"id":6843},"lighterFill":{"__isSmartRef__":true,"id":6844},"name":"DiffButton","normalFill":{"__isSmartRef__":true,"id":6849},"owner":{"__isSmartRef__":true,"id":6637},"partsBinMetaInfo":{"__isSmartRef__":true,"id":6854},"registeredForMouseEvents":true,"scripts":[],"shape":{"__isSmartRef__":true,"id":6855},"showsHalos":false,"submorphs":[{"__isSmartRef__":true,"id":6838}],"toggle":false,"value":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(10.0,378.0)","distanceToDragEvent":"lively.pt(69.5,-18.0)"},"6835":{"converterString":null,"sourceAttrName":"fire","sourceObj":{"__isSmartRef__":true,"id":6834},"targetMethodName":"checkForUpdates","targetObj":{"__isSmartRef__":true,"id":6637},"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":6836},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"6836":{"source":{"__isSmartRef__":true,"id":6834},"target":{"__isSmartRef__":true,"id":6637}},"6837":{"morph":{"__isSmartRef__":true,"id":6834},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6838":{"_Align":"center","_ClipMode":"hidden","_FontFamily":"Helvetica","_FontSize":10,"_HandStyle":"default","_MaxTextHeight":null,"_MaxTextWidth":150,"_MinTextHeight":null,"_MinTextWidth":150,"__serializedExpressions__":["_Padding","_Position","_TextColor","padding"],"_PointerEvents":"none","_Scale":1,"_WhiteSpaceHandling":"pre-wrap","allowInput":false,"attributeConnections":[],"derivationIds":[2899,"4F00D1F5-B85C-479E-BDDE-322DF2F432A3","5E7BC7AC-9EF9-4CF5-9196-A542A26534CA","46616896-CA46-4B43-B694-9FB001B32989","F73D407C-A72D-414B-AB8D-1E28025BCA1C","E34F55EC-06D3-4965-A0D2-625CA896E3B7","2C75B823-DD52-427F-A501-B824B4C4AFFF","B4D1CBE5-9DEA-4728-8803-CCD541086497","6E0FBCF8-EAA4-4635-A092-F3A690EE9EF7","89A9C61E-62E5-4DC5-9ABB-48A97517BF54","7481FBBB-A4A7-4F5E-A153-60033229DE49","FEBD2158-DF74-4EDF-BD2A-2C5A19DDF177","129B298F-732B-46E2-AB44-60B8E8AC2378","92CFB2AD-D63D-4DD7-A729-6D0962A7C5FC","BC6FB6FB-EF63-4C39-9668-0462E42556C2","8BE2159A-9EB3-44EC-8BAD-0CF297F58645","D81DC308-8273-4F17-A7C0-849953D6454B","C536710D-050F-4AF1-BAD1-6EE763015B10"],"doNotCopyProperties":[],"doNotSerialize":[],"droppingEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6839},"eventsAreIgnored":true,"fixedHeight":true,"fixedWidth":true,"grabbingEnabled":false,"halosEnabled":true,"id":"F4CEDD75-4A86-404C-8C23-C272A922B133","isLabel":true,"owner":{"__isSmartRef__":true,"id":6834},"registeredForMouseEvents":true,"scripts":[],"shape":{"__isSmartRef__":true,"id":6840},"submorphs":[],"textChunks":[{"__isSmartRef__":true,"id":6841}],"textStyle":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)","_TextColor":"Color.rgb(0,0,0)","padding":"lively.rect(5,5,0,0)"},"6839":{"morph":{"__isSmartRef__":true,"id":6838},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6840":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","position"],"_BorderWidth":0,"_ClipMode":"hidden","_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(0,0,0)","_Extent":"lively.pt(150.0,21.0)","_Padding":"lively.rect(0,3,0,0)","position":"lively.pt(0.0,0.0)"},"6841":{"_id":"_942","chunkOwner":{"__isSmartRef__":true,"id":6838},"storedString":"check for updates","style":{"__isSmartRef__":true,"id":6842},"__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6842":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6843":{"moveVertical":true},"6844":{"stops":[{"__isSmartRef__":true,"id":6845},{"__isSmartRef__":true,"id":6846},{"__isSmartRef__":true,"id":6847},{"__isSmartRef__":true,"id":6848}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6845":{"__serializedExpressions__":["color"],"offset":0,"color":"Color.rgb(250,250,250)"},"6846":{"__serializedExpressions__":["color"],"offset":0.4,"color":"Color.rgb(232,232,232)"},"6847":{"__serializedExpressions__":["color"],"offset":0.6,"color":"Color.rgb(232,232,232)"},"6848":{"__serializedExpressions__":["color"],"offset":1,"color":"Color.rgb(248,248,248)"},"6849":{"stops":[{"__isSmartRef__":true,"id":6850},{"__isSmartRef__":true,"id":6851},{"__isSmartRef__":true,"id":6852},{"__isSmartRef__":true,"id":6853}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6850":{"__serializedExpressions__":["color"],"offset":0,"color":"Color.rgb(245,245,245)"},"6851":{"__serializedExpressions__":["color"],"offset":0.4,"color":"Color.rgb(209,209,209)"},"6852":{"__serializedExpressions__":["color"],"offset":0.6,"color":"Color.rgb(209,209,209)"},"6853":{"__serializedExpressions__":["color"],"offset":1,"color":"Color.rgb(240,240,240)"},"6854":{"comment":"Has a script that is called on button press","migrationLevel":4,"partName":"Button","partsSpaceName":"PartsBin/Inputs","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"6855":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","position"],"_BorderRadius":5.2,"_BorderStyle":"solid","_BorderWidth":1.1840000000000002,"_ClipMode":"visible","_Fill":{"__isSmartRef__":true,"id":6849},"_Opacity":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(214,214,214)","_Extent":"lively.pt(150.0,21.0)","_Padding":"lively.rect(0,0,0,0)","position":"lively.pt(0.0,0.0)"},"6856":{"askForDiffViewer":{"__isSmartRef__":true,"id":6857},"checkForUpdates":{"__isSmartRef__":true,"id":6861},"copyToPartsBin":{"__isSmartRef__":true,"id":6865},"onCancel":{"__isSmartRef__":true,"id":6873},"onPublish":{"__isSmartRef__":true,"id":6877},"onRemove":{"__isSmartRef__":true,"id":6881},"reset":{"__isSmartRef__":true,"id":6885},"setTarget":{"__isSmartRef__":true,"id":6889},"showDiff":{"__isSmartRef__":true,"id":6893}},"6857":{"funcProperties":{"__isSmartRef__":true,"id":6858},"source":"function askForDiffViewer() {\n $world.confirm('A newer version of '+this.get('NameText').textString+' is available. Show diff?', function (bool) {bool && this.showDiff()}.bind(this))\n}","varMapping":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6858":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":6859},"user":"undefined"},"6859":{"isSerializedDate":true,"string":"Fri Mar 23 2012 15:08:43 GMT+0100 (CET)"},"6860":{"this":{"__isSmartRef__":true,"id":6637}},"6861":{"funcProperties":{"__isSmartRef__":true,"id":6862},"source":"function checkForUpdates() {\n var space = lively.PartsBin.partsSpaceNamed(this.get('CategoryText').textString),\n name = this.get('NameText').textString,\n fileUrl = space.getURL().withFilename(encodeURI(name))+'.json';\n\n var webR = new WebResource(fileUrl);\n \n if (webR.exists()) {\n var rev = webR.getHeadRevision().headRevision;\n if (this.target.getPartsBinMetaInfo().revisionOnLoad == rev) \n alertOK(\"No changes since last update.\")\n else {\n this.askForDiffViewer();\n }\n }\n else \n alertOK(\"Part does not exist in PartsBin.\") \n \n}","varMapping":{"__isSmartRef__":true,"id":6864},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6862":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":6863},"user":"undefined"},"6863":{"isSerializedDate":true,"string":"Fri Mar 23 2012 15:12:03 GMT+0100 (CET)"},"6864":{"this":{"__isSmartRef__":true,"id":6637}},"6865":{"funcProperties":{"__isSmartRef__":true,"id":6866},"source":"function copyToPartsBin(morph) {\n var name = this.get('NameText').textString\n\n var info = morph.getPartsBinMetaInfo();\n morph.setName(name);\n\n info.partsSpaceName = this.get('CategoryText').textString\n info.comment = this.get('CommentText').textString\n\n if (! info.changes) info.changes = [];\n var change = { \n date: new Date(), \n author: this.world().getUserName(), \n message: this.get('CommitMessageText').textString,\n id: Strings.newUUID()\n }\n info.changes.push(change) \n\n morph.copyToPartsBin();\n}","varMapping":{"__isSmartRef__":true,"id":6868},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6866":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":6867},"user":"jenslincke"},"6867":{"isSerializedDate":true,"string":"Fri Oct 28 2011 15:13:21 GMT+0200 (CEST)"},"6868":{"this":{"__isSmartRef__":true,"id":6637},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":6869}},"6869":{"$super":{"__isSmartRef__":true,"id":6870}},"6870":{"funcProperties":{"__isSmartRef__":true,"id":6871},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world) \n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","varMapping":{"__isSmartRef__":true,"id":6872},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6871":{},"6872":{"name":"copyToPartsBin","obj":{"__isSmartRef__":true,"id":6637}},"6873":{"funcProperties":{"__isSmartRef__":true,"id":6874},"source":"function onCancel() {\n alertOK(\"cancel upload \") \n this.owner.remove()\n}","varMapping":{"__isSmartRef__":true,"id":6876},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6874":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":6875},"user":"jenslincke"},"6875":{"isSerializedDate":true,"string":"Wed Oct 19 2011 14:52:17 GMT+0200 (CEST)"},"6876":{"this":{"__isSmartRef__":true,"id":6637}},"6877":{"funcProperties":{"__isSmartRef__":true,"id":6878},"source":"function onPublish() {\n if (!this.target) alert(\"No target to upload\");\n this.copyToPartsBin(this.target);\n}","varMapping":{"__isSmartRef__":true,"id":6880},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6878":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":6879},"user":"undefined"},"6879":{"isSerializedDate":true,"string":"Thu Mar 29 2012 15:46:31 GMT+0200 (CEST)"},"6880":{"this":{"__isSmartRef__":true,"id":6637}},"6881":{"funcProperties":{"__isSmartRef__":true,"id":6882},"source":"function onRemove() {\n $world.publishPartDialog && $world.publishPartDialog.remove()\n}","varMapping":{"__isSmartRef__":true,"id":6884},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6882":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":6883},"user":"undefined"},"6883":{"isSerializedDate":true,"string":"Thu Mar 29 2012 15:54:34 GMT+0200 (CEST)"},"6884":{"this":{"__isSmartRef__":true,"id":6637}},"6885":{"funcProperties":{"__isSmartRef__":true,"id":6886},"source":"function reset() {\n this.setTarget(null)\n \n}","varMapping":{"__isSmartRef__":true,"id":6888},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6886":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":6887},"user":"jenslincke"},"6887":{"isSerializedDate":true,"string":"Wed Oct 19 2011 14:45:36 GMT+0200 (CEST)"},"6888":{"this":{"__isSmartRef__":true,"id":6637}},"6889":{"funcProperties":{"__isSmartRef__":true,"id":6890},"source":"function setTarget(morph) {\n this.target = morph \n if (!morph) {\n this.get('NameText').textString = 'Anonymous';\n this.get('CategoryText').textString = 'Default';\n this.get('CommentText').textString = 'no comment'; \n this.get('CommitMessageText').textString = 'no comment' \n return\n }\n var info = this.target.getPartsBinMetaInfo();\n this.get('NameText').textString = info.partName || morph.getName();\n if (info.partsSpaceName) this.get('CategoryText').textString = info.partsSpaceName;\n if (info.comment) this.get('CommentText').textString = info.comment; \n\n}","varMapping":{"__isSmartRef__":true,"id":6892},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6890":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":6891},"user":"jenslincke"},"6891":{"isSerializedDate":true,"string":"Fri Apr 20 2012 11:59:07 GMT+0200 (CEST)"},"6892":{"this":{"__isSmartRef__":true,"id":6637}},"6893":{"funcProperties":{"__isSmartRef__":true,"id":6894},"source":"function showDiff() {\n if (this.target) {\n if (typeof(this.target.showThreeWayDiff) === 'function') {\n this.target.showThreeWayDiff();\n }\n else {\n alert('Three Way Diff is not implemented yet')\n }\n }\n}","varMapping":{"__isSmartRef__":true,"id":6896},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"6894":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":6895},"user":"undefined"},"6895":{"isSerializedDate":true,"string":"Thu Mar 22 2012 10:32:37 GMT+0100 (CET)"},"6896":{"this":{"__isSmartRef__":true,"id":6637}},"6897":{"morph":{"__isSmartRef__":true,"id":6635},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6898":{"adjustForNewBounds":true},"6899":{"changes":[{"__isSmartRef__":true,"id":6900},{"__isSmartRef__":true,"id":6902},{"__isSmartRef__":true,"id":6904},{"__isSmartRef__":true,"id":6906},{"__isSmartRef__":true,"id":6908},{"__isSmartRef__":true,"id":6910},{"__isSmartRef__":true,"id":6912},{"__isSmartRef__":true,"id":6914},{"__isSmartRef__":true,"id":6916},{"__isSmartRef__":true,"id":6918},{"__isSmartRef__":true,"id":6920}],"comment":"A dialog for publishing parts in the PartsBin. Automatically invoked when invoking the \"Publish\" menu option.","migrationLevel":4,"partName":"PublishPartDialog","partsSpaceName":"PartsBin/Dialogs","requiredModules":[],"revisionOnLoad":176990,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"6900":{"author":"undefined","date":{"__isSmartRef__":true,"id":6901},"id":"61086210-FA8D-49B7-9E8F-E1E202A9ECD7","message":"resetted view"},"6901":{"isSerializedDate":true,"string":"Wed Mar 21 2012 14:50:23 GMT+0100 (CET)"},"6902":{"author":"undefined","date":{"__isSmartRef__":true,"id":6903},"id":"93AC78DB-FFE8-40AC-B8FC-34B0936B39A7","message":"added show diff button"},"6903":{"isSerializedDate":true,"string":"Wed Mar 21 2012 14:49:44 GMT+0100 (CET)"},"6904":{"author":"undefined","date":{"__isSmartRef__":true,"id":6905},"id":"A5F4EACF-EF62-483F-B8B3-65966A895FA4","message":""},"6905":{"isSerializedDate":true,"string":"Tue Mar 20 2012 13:00:03 GMT+0100 (CET)"},"6906":{"author":"jenslincke","date":{"__isSmartRef__":true,"id":6907},"message":"first commit of Publish dialog using the publish dialog itself!"},"6907":{"isSerializedDate":true,"string":"Wed Oct 19 2011 14:54:16 GMT+0200 (CEST)"},"6908":{"author":"jenslincke","date":{"__isSmartRef__":true,"id":6909},"message":""},"6909":{"isSerializedDate":true,"string":"Wed Oct 19 2011 14:52:26 GMT+0200 (CEST)"},"6910":{"author":"jenslincke","date":{"__isSmartRef__":true,"id":6911},"message":"store an uuid when publishing an object"},"6911":{"isSerializedDate":true,"string":"Fri Oct 28 2011 15:15:02 GMT+0200 (CEST)"},"6912":{"author":"jenslincke","date":{"__isSmartRef__":true,"id":6913},"message":""},"6913":{"isSerializedDate":true,"string":"Fri Oct 28 2011 16:06:16 GMT+0200 (CEST)"},"6914":{"author":"jenslincke","date":{"__isSmartRef__":true,"id":6915},"id":"1A260BD5-E668-4BD4-B7A2-94E087AB4CE1","message":"- fixed issue 283 (Reproduction: Open part, select publish from menu, focus part name input field in dialog, press enter.-> window pane disappears; window decoration stays; part is not published)"},"6915":{"isSerializedDate":true,"string":"Thu Jan 26 2012 12:10:41 GMT+0100 (CET)"},"6916":{"author":"undefined","date":{"__isSmartRef__":true,"id":6917},"id":"00A6DFFB-70D2-44A4-B5F9-0778E1CA5724","message":"init for change - don't remove on click"},"6917":{"isSerializedDate":true,"string":"Tue Mar 20 2012 12:04:27 GMT+0100 (CET)"},"6918":{"author":"undefined","date":{"__isSmartRef__":true,"id":6919},"id":"2BD37BED-1605-4FD2-8D2C-25552A379B49","message":"added possibility to show diff and adapted to new publishing workflow (check for overwrites)"},"6919":{"isSerializedDate":true,"string":"Thu Mar 22 2012 10:30:02 GMT+0100 (CET)"},"6920":{"author":"robertkrahn","date":{"__isSmartRef__":true,"id":6921},"id":"0FC68ADF-8995-4DFA-8713-AACEE168096E","message":"Fixed the issue that there were no line breaks allowed in the comment / commit text fields"},"6921":{"isSerializedDate":true,"string":"Tue Aug 07 2012 01:22:26 GMT+0200 (CEST)"},"6922":{"_BorderRadius":0,"_BorderWidth":0,"_ClipMode":"visible","__serializedExpressions__":["_Extent","_Padding"],"_Fill":null,"_StrokeOpacity":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Extent":"lively.pt(479.0,437.0)","_Padding":"lively.rect(0,0,0,0)"},"6923":{"_ClipMode":"visible","__serializedExpressions__":["_Position"],"_Scale":1,"attributeConnections":[],"closeButton":{"__isSmartRef__":true,"id":6924},"collapseButton":{"__isSmartRef__":true,"id":6947},"derivationIds":[2880,"108B5871-F6C8-4442-82D1-F8776D2C85A2","503529CB-0F23-4456-8597-CD5E86CF03F0","4FB4914E-E245-4D67-BE3B-63091E2C8C95","B69B0DCD-8CC6-4A06-B738-A12B5269CD7D","6D1BAF1C-9402-44ED-A26B-9B74CF07DF60","B4808FFA-4EA4-43B1-A7FC-0BEF063FC467","C49A9265-2632-4101-BEB3-C57320C2187A","0E3215D4-8AAB-4F52-8AD0-FC2EEC395A9A","0B36C705-2DB1-4ECE-8E5D-164334FB519B","305AE4E8-ADC7-4C81-BF54-3C180FEF414F","D1F1142B-FB6A-475C-8903-13CCF46FCD5D","5C6E462F-7D1A-4876-8D43-4374443981CD","88DEBD44-6D08-4854-9CA8-A147B160BDAB","4BF8EFA1-572E-4713-A755-97054D0EF029","1EEB7A79-5546-44ED-929C-FA7B2F3352E9","98D61A26-0D43-42A5-8E79-B27978E345AB"],"doNotCopyProperties":[],"doNotSerialize":[],"droppingEnabled":true,"eventHandler":{"__isSmartRef__":true,"id":6965},"halosEnabled":true,"id":"C237619A-3ACD-42B2-9A99-3E8F25DD9A4C","label":{"__isSmartRef__":true,"id":6966},"layout":{"__isSmartRef__":true,"id":6972},"menuButton":{"__isSmartRef__":true,"id":6973},"owner":{"__isSmartRef__":true,"id":6635},"prevScroll":[0,0],"scripts":[],"shape":{"__isSmartRef__":true,"id":6990},"showsHalos":false,"submorphs":[{"__isSmartRef__":true,"id":6966},{"__isSmartRef__":true,"id":6924},{"__isSmartRef__":true,"id":6973},{"__isSmartRef__":true,"id":6947}],"windowMorph":{"__isSmartRef__":true,"id":6635},"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"6924":{"_ClipMode":"visible","__serializedExpressions__":["_Position"],"_Scale":1,"accessibleInInactiveWindow":true,"attributeConnections":[{"__isSmartRef__":true,"id":6925},{"__isSmartRef__":true,"id":6927}],"derivationIds":[2882,"6FF08B49-B1B5-4E12-8CE8-DF895115627D","7F48C6F9-BB0C-405E-991B-410F179F7FE6","8405D63F-4E07-4FE8-9008-DD8AE000B5C8","D81DD158-CA4D-44A9-B0A6-3FD7DF7EFD68","B32CD4CF-CE28-40AB-8F9E-23E12B00C595","581848BC-C01C-443F-B6AD-4A61CE8EB72E","62393865-D1D9-40DE-B048-1249932ECD31","8FB8E2BF-E816-4D6F-8E57-4D1FEAB65258","BE49E07E-D7F5-4EB9-9CED-C5857E3E2E05","8400BD9B-C243-4480-8B72-9881692A9AC4","67A14C8D-9131-4F19-9649-DF83E2220076","2B1EAF02-F491-4C0D-90C4-D0D118EF409B","473E46FF-11E0-4875-80B6-8EE5D321E59F","D1DA13CC-5998-4C2D-803A-094CC9251276","A95DD13F-8C05-4E35-9C89-5BBF4C0D1C71","5B49E758-DFEC-4FD5-9A25-F3B8662A8F97"],"doNotCopyProperties":["$$getHelpText","$$fire"],"doNotSerialize":["$$getHelpText","$$fire"],"droppingEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6929},"grabbingEnabled":false,"halosEnabled":true,"id":"6B914747-620F-4721-BF45-14D7D42C5E72","isActive":true,"label":{"__isSmartRef__":true,"id":6930},"layout":{"__isSmartRef__":true,"id":6935},"lighterFill":{"__isSmartRef__":true,"id":6936},"normalFill":{"__isSmartRef__":true,"id":6941},"owner":{"__isSmartRef__":true,"id":6923},"prevScroll":[0,0],"scripts":[],"shape":{"__isSmartRef__":true,"id":6946},"submorphs":[{"__isSmartRef__":true,"id":6930}],"toggle":false,"value":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(459.0,3.0)"},"6925":{"converterString":null,"sourceAttrName":"getHelpText","sourceObj":{"__isSmartRef__":true,"id":6924},"targetMethodName":"getCloseHelp","targetObj":{"__isSmartRef__":true,"id":6635},"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":6926},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"6926":{"source":{"__isSmartRef__":true,"id":6924},"target":{"__isSmartRef__":true,"id":6635}},"6927":{"converterString":null,"sourceAttrName":"fire","sourceObj":{"__isSmartRef__":true,"id":6924},"targetMethodName":"initiateShutdown","targetObj":{"__isSmartRef__":true,"id":6635},"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":6928},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"6928":{"source":{"__isSmartRef__":true,"id":6924},"target":{"__isSmartRef__":true,"id":6635}},"6929":{"morph":{"__isSmartRef__":true,"id":6924},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6930":{"_Align":"center","_ClipMode":"hidden","_FontFamily":"Helvetica","_FontSize":8,"_HandStyle":"default","_MaxTextHeight":null,"_MaxTextWidth":17,"_MinTextHeight":null,"_MinTextWidth":17,"__serializedExpressions__":["_Position"],"_Scale":1,"_WhiteSpaceHandling":"pre-wrap","allowInput":false,"attributeConnections":[],"derivationIds":[2883,"9FBA502B-65B1-4FF2-A0A6-9951E3C50B9C","9F297DAE-65AA-45A3-AFAE-BD35F359E24A","75386CDF-09C9-47F2-8762-F737A49FD645","C43A7038-D61D-47C7-BFA8-8C8A77627643","5BF20970-1750-47F6-8D9D-E7A798428D52","74925934-1F3C-432E-BBD6-02C666263ED7","C4BDF6D3-0621-4923-A192-E4488E7679D1","376C89CF-A021-4CA6-A6AC-47177BFB2062","878C6C67-6B17-432C-B06E-FBBC1FDADE0D","D49A7E68-DC41-42E3-8DC4-073D080B4548","557AD9C4-D5B4-49A0-9508-53CA902EA479","10DA2DAE-51E0-4668-905A-C95891803AE7","FE63ADA2-09D3-415B-90BE-D2B42D51C838","B351C8F1-0939-47C8-8017-69AB7EAE3CFF","C397207D-9190-4230-96BF-6A91C483ED49","F83323DE-241E-424B-9B69-5E332D7AC4E4"],"doNotCopyProperties":[],"doNotSerialize":[],"droppingEnabled":false,"evalEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6931},"eventsAreIgnored":true,"fixedHeight":true,"fixedWidth":true,"grabbingEnabled":false,"halosEnabled":true,"id":"65C7C0E9-2C69-473F-8369-6CAEB38C5753","isLabel":true,"owner":{"__isSmartRef__":true,"id":6924},"prevScroll":[0,0],"scripts":[],"shape":{"__isSmartRef__":true,"id":6932},"showsHalos":false,"submorphs":[],"textChunks":[{"__isSmartRef__":true,"id":6933}],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)"},"6931":{"morph":{"__isSmartRef__":true,"id":6930},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6932":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","_Position"],"_BorderWidth":0,"_ClipMode":"hidden","_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(0,0,0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"6933":{"_id":"_395","chunkOwner":{"__isSmartRef__":true,"id":6930},"storedString":"X","style":{"__isSmartRef__":true,"id":6934},"__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6934":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6935":{"moveHorizontal":true},"6936":{"stops":[{"__isSmartRef__":true,"id":6937},{"__isSmartRef__":true,"id":6938},{"__isSmartRef__":true,"id":6939},{"__isSmartRef__":true,"id":6940}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6937":{"__serializedExpressions__":["color"],"offset":0,"color":"Color.rgb(250,250,250)"},"6938":{"__serializedExpressions__":["color"],"offset":0.4,"color":"Color.rgb(232,232,232)"},"6939":{"__serializedExpressions__":["color"],"offset":0.6,"color":"Color.rgb(232,232,232)"},"6940":{"__serializedExpressions__":["color"],"offset":1,"color":"Color.rgb(248,248,248)"},"6941":{"stops":[{"__isSmartRef__":true,"id":6942},{"__isSmartRef__":true,"id":6943},{"__isSmartRef__":true,"id":6944},{"__isSmartRef__":true,"id":6945}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6942":{"__serializedExpressions__":["color"],"offset":0,"color":"Color.rgb(245,245,245)"},"6943":{"__serializedExpressions__":["color"],"offset":0.4,"color":"Color.rgb(209,209,209)"},"6944":{"__serializedExpressions__":["color"],"offset":0.6,"color":"Color.rgb(209,209,209)"},"6945":{"__serializedExpressions__":["color"],"offset":1,"color":"Color.rgb(240,240,240)"},"6946":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","_Position"],"_BorderRadius":5,"_BorderWidth":0,"_ClipMode":"visible","_Fill":{"__isSmartRef__":true,"id":6941},"_StrokeOpacity":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(189,190,192)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"6947":{"_ClipMode":"visible","__serializedExpressions__":["_Position"],"_Scale":1,"accessibleInInactiveWindow":true,"attributeConnections":[{"__isSmartRef__":true,"id":6948},{"__isSmartRef__":true,"id":6950}],"derivationIds":[2886,"9FC4F0BE-916D-456B-AEC7-E6C1AC6040CA","A0A4775F-7F2F-4563-840D-CAA5CB435D75","C87D3EB9-4C3B-4230-9794-F5B71B528C74","D62C35A2-6803-4217-9DFD-0E480D4B82AE","D8274457-EA55-431C-BA2E-C227C335C1FB","943A7D62-2DE4-42E8-AC93-4E68B660CEF2","E83FFE4B-9181-44F7-A77C-84E5625F788A","6A34C9A1-6B4C-430B-ACD4-6A29D0F20D42","BD7F031B-2DEE-4151-ABD8-B5A513D25129","AD3F7784-7CB8-4CFE-98B0-83A4D43542C7","52BD4109-B6AE-4A69-83C9-19EB655F4780","82224D11-CDCA-43C8-A6FD-E794D5917E70","6DF19762-00E0-4952-9D0F-ED6A72B7580B","BAE5C2EA-CE02-4EF6-AA20-1FCE523D6634","484A4F26-09F0-4A4E-90E4-A4A0A4C09ACE","490E3FE0-8D09-4AE4-BFCB-44F7027A9189"],"doNotCopyProperties":["$$getHelpText","$$fire"],"doNotSerialize":["$$getHelpText","$$fire"],"droppingEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6952},"grabbingEnabled":false,"halosEnabled":true,"id":"610F00D4-FA83-4615-8B80-7564129CEFC1","isActive":true,"label":{"__isSmartRef__":true,"id":6953},"layout":{"__isSmartRef__":true,"id":6958},"lighterFill":{"__isSmartRef__":true,"id":6959},"normalFill":{"__isSmartRef__":true,"id":6941},"owner":{"__isSmartRef__":true,"id":6923},"prevScroll":[0,0],"scripts":[],"shape":{"__isSmartRef__":true,"id":6964},"submorphs":[{"__isSmartRef__":true,"id":6953}],"toggle":false,"value":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(440.0,3.0)"},"6948":{"converterString":null,"sourceAttrName":"getHelpText","sourceObj":{"__isSmartRef__":true,"id":6947},"targetMethodName":"getCollapseHelp","targetObj":{"__isSmartRef__":true,"id":6635},"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"6949":{"source":{"__isSmartRef__":true,"id":6947},"target":{"__isSmartRef__":true,"id":6635}},"6950":{"converterString":null,"sourceAttrName":"fire","sourceObj":{"__isSmartRef__":true,"id":6947},"targetMethodName":"toggleCollapse","targetObj":{"__isSmartRef__":true,"id":6635},"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":6951},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"6951":{"source":{"__isSmartRef__":true,"id":6947},"target":{"__isSmartRef__":true,"id":6635}},"6952":{"morph":{"__isSmartRef__":true,"id":6947},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6953":{"_Align":"center","_ClipMode":"hidden","_FontFamily":"Helvetica","_FontSize":8,"_HandStyle":"default","_MaxTextHeight":null,"_MaxTextWidth":17,"_MinTextHeight":null,"_MinTextWidth":17,"__serializedExpressions__":["_Position"],"_Scale":1,"_WhiteSpaceHandling":"pre-wrap","allowInput":false,"attributeConnections":[],"derivationIds":[2887,"42347453-BADB-4DB0-9486-C479B704CD7C","B0BBE9B3-B5DD-4E4F-A1AA-1C03BB1BFF4E","8AE3BC44-F336-420E-A2E9-BBA0DC6A3D72","3DC5BABC-5EF1-4FC6-805B-0FC1CC02282F","C5E01762-30EA-4342-A348-F75EA6C33D11","209EBE14-87CB-44C9-B8C0-1A74CE2ACDB6","1A0CE8F3-7342-484C-BA10-2E8291158E44","28A42BB4-7534-4B0D-BBE9-B4D3FDCF024F","D5D7B12C-1731-4943-BD69-699C99C398E1","DD22A464-4EB8-41F8-9103-DEE095D40932","F16ED660-1D92-485E-B022-9FB466AC307F","AA93DB0B-89EB-44EB-9D56-ADE75D275E62","AB55C6ED-56F9-48F7-A4B1-6D3A6070E047","0CCF4C25-456D-4FF1-89DC-F3601FC379FF","700A6EE7-EDB4-4DFF-9BFA-A2FEBA66E699","C63B20B2-CF2D-46C9-B836-4A69D6D47AA0"],"doNotCopyProperties":[],"doNotSerialize":[],"droppingEnabled":false,"evalEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6954},"eventsAreIgnored":true,"fixedHeight":true,"fixedWidth":true,"grabbingEnabled":false,"halosEnabled":true,"id":"E7395ED3-7A45-4712-BDDA-D3E09EDC1EF2","isLabel":true,"owner":{"__isSmartRef__":true,"id":6947},"prevScroll":[0,0],"scripts":[],"shape":{"__isSmartRef__":true,"id":6955},"submorphs":[],"textChunks":[{"__isSmartRef__":true,"id":6956}],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)"},"6954":{"morph":{"__isSmartRef__":true,"id":6953},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6955":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","_Position"],"_BorderWidth":0,"_ClipMode":"hidden","_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(0,0,0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"6956":{"_id":"_397","chunkOwner":{"__isSmartRef__":true,"id":6953},"storedString":"–","style":{"__isSmartRef__":true,"id":6957},"__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6957":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6958":{"moveHorizontal":true},"6959":{"stops":[{"__isSmartRef__":true,"id":6960},{"__isSmartRef__":true,"id":6961},{"__isSmartRef__":true,"id":6962},{"__isSmartRef__":true,"id":6963}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6960":{"__serializedExpressions__":["color"],"offset":0,"color":"Color.rgb(250,250,250)"},"6961":{"__serializedExpressions__":["color"],"offset":0.4,"color":"Color.rgb(232,232,232)"},"6962":{"__serializedExpressions__":["color"],"offset":0.6,"color":"Color.rgb(232,232,232)"},"6963":{"__serializedExpressions__":["color"],"offset":1,"color":"Color.rgb(248,248,248)"},"6964":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","_Position"],"_BorderRadius":5,"_BorderWidth":0,"_ClipMode":"visible","_Fill":{"__isSmartRef__":true,"id":6941},"_StrokeOpacity":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(189,190,192)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"6965":{"morph":{"__isSmartRef__":true,"id":6923},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6966":{"_Align":"center","_ClipMode":"hidden","_FontFamily":"Helvetica","_FontSize":10,"_HandStyle":"default","_MaxTextHeight":null,"_MaxTextWidth":420,"_MinTextHeight":null,"_MinTextWidth":420,"__serializedExpressions__":["_Position"],"_Scale":1,"_WhiteSpaceHandling":"pre-wrap","allowInput":false,"attributeConnections":[],"derivationIds":[2881,"A06A709C-AD42-48D0-A66A-9C21EA4F4E66","EE1A345D-476E-4E22-BE89-E59A0C11001B","90634CE5-77D0-4064-961C-4CBADE59C6F8","C26670E3-5765-406B-972F-888FD1EAF967","E252D4C8-705A-4A40-B4E8-3638444DBAC4","89C11EA9-F897-4A67-9CDD-A79FAF7B04F1","1D2D6235-8732-4E39-829D-8C599DE39537","4819892D-6CED-4387-A505-50ADEC598F02","63A7D46C-A16B-464D-9315-8AD0CFC0FD20","CA96C77F-AAE5-4A7A-9D8A-F4B2DFC9148D","A1B3FB84-D9F7-45FA-9D28-FFDF2664D5BE","DA408E78-CC3F-4430-9268-6C9365622D04","960BDC3B-D0CF-4613-8E6B-5F26D733BD89","7F5621B0-5A9D-4812-9108-85C0997AEE3F","4D639952-4608-44C7-A1CC-73DE757149C9","2B7FFD6D-06D5-43CC-AE7F-434E989D1B88"],"doNotCopyProperties":[],"doNotSerialize":[],"droppingEnabled":false,"evalEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6967},"eventsAreIgnored":true,"fixedHeight":true,"fixedWidth":true,"grabbingEnabled":false,"halosEnabled":true,"id":"1747A216-9F1D-4DA1-981B-7E21F8670456","isLabel":true,"layout":{"__isSmartRef__":true,"id":6968},"owner":{"__isSmartRef__":true,"id":6923},"prevScroll":[0,0],"scripts":[],"shape":{"__isSmartRef__":true,"id":6969},"showsHalos":false,"submorphs":[],"textChunks":[{"__isSmartRef__":true,"id":6970}],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(20.0,3.0)"},"6967":{"morph":{"__isSmartRef__":true,"id":6966},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6968":{"resizeWidth":true},"6969":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","_Position"],"_BorderRadius":0,"_BorderWidth":0,"_ClipMode":"hidden","_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(0,0,0)","_Extent":"lively.pt(420.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"6970":{"_id":"_394","chunkOwner":{"__isSmartRef__":true,"id":6966},"storedString":"Publish in PartsBin","style":{"__isSmartRef__":true,"id":6971},"__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6971":{"fontWeight":"bold","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6972":{"adjustForNewBounds":true,"resizeWidth":true},"6973":{"_ClipMode":"visible","__serializedExpressions__":["_Position"],"_Scale":1,"accessibleInInactiveWindow":true,"attributeConnections":[{"__isSmartRef__":true,"id":6974},{"__isSmartRef__":true,"id":6976}],"derivationIds":[2884,"64F20257-1A1D-4B3E-97C4-BC5D1F1E14B5","A377FFCE-0FDC-41B6-BD34-D9F0507B57DA","7334352E-B497-4F10-8C06-FBE36AA778C7","E8269870-961E-49ED-ACE6-3CB90CD1937A","3182A6E6-F492-4D7F-B240-55DC62E7DDF9","5983668D-3862-4DE4-8C9C-57903C2FF112","7EA72C52-A5FE-49D7-B644-F1CF1E948B7A","378BCE5E-C14D-460C-B7E5-BA2B832168F0","3C395E36-6E1E-4715-AE14-CBAB23875359","3A64C38B-ACDD-4EE3-9CB8-1CF3F5338FBC","B5F36159-C71D-48E3-A1A9-7BDA18656622","0E65BDFD-4304-4131-9821-83A87E58A857","335EC22A-00F4-444F-A9A3-6FCC3D3B375B","4C230C0D-A5D1-4E2E-9FB9-67140E87E5CF","0797CCF7-CD32-4ECC-A641-400C7287B414","DAEA7509-6822-43FB-B840-E6BC3C84D1EF"],"doNotCopyProperties":["$$getHelpText","$$fire"],"doNotSerialize":["$$getHelpText","$$fire"],"droppingEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6978},"grabbingEnabled":false,"halosEnabled":true,"id":"FEA31482-7E4F-4B20-9EC8-F57E36A0A263","isActive":true,"label":{"__isSmartRef__":true,"id":6979},"lighterFill":{"__isSmartRef__":true,"id":6984},"normalFill":{"__isSmartRef__":true,"id":6941},"owner":{"__isSmartRef__":true,"id":6923},"scripts":[],"shape":{"__isSmartRef__":true,"id":6989},"submorphs":[{"__isSmartRef__":true,"id":6979}],"toggle":false,"value":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"6974":{"converterString":null,"sourceAttrName":"getHelpText","sourceObj":{"__isSmartRef__":true,"id":6973},"targetMethodName":"getMenuHelp","targetObj":{"__isSmartRef__":true,"id":6635},"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":6975},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"6975":{"source":{"__isSmartRef__":true,"id":6973},"target":{"__isSmartRef__":true,"id":6635}},"6976":{"converterString":null,"sourceAttrName":"fire","sourceObj":{"__isSmartRef__":true,"id":6973},"targetMethodName":"showTargetMorphMenu","targetObj":{"__isSmartRef__":true,"id":6635},"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":6977},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"6977":{"source":{"__isSmartRef__":true,"id":6973},"target":{"__isSmartRef__":true,"id":6635}},"6978":{"morph":{"__isSmartRef__":true,"id":6973},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6979":{"_Align":"center","_ClipMode":"hidden","_FontFamily":"Helvetica","_FontSize":8,"_HandStyle":"default","_MaxTextHeight":null,"_MaxTextWidth":17,"_MinTextHeight":null,"_MinTextWidth":17,"__serializedExpressions__":["_Position"],"_Scale":1,"_WhiteSpaceHandling":"pre-wrap","allowInput":false,"attributeConnections":[],"derivationIds":[2885,"EC48B50E-CD5B-46FB-BF78-484373EED980","59F8AF9B-799B-413B-86B2-BFD03A4B2559","F8293A60-E9DB-40E3-B202-D547939F8A8D","30E16AEA-8638-441D-A4B6-A7F2EB4D1987","012E89E5-818C-4BAE-B1DB-B01796C23183","D8FA4A79-180A-4D30-B4C8-2AC5E176057B","7184ABDF-8484-4658-8968-C1DD68EFFC46","4BC7DE67-2773-45F7-BA0D-BB473B463C0B","1350953C-3FB0-428F-ADAF-AB46A2A7743D","677531C6-1A55-423B-AD8E-B0CF60EA6AE7","7AC83B39-6446-453C-BE0C-3A985B6F29D7","7F97ADF7-B704-42C0-98D2-BFA189A6C2B8","692C1E4C-8458-4EB7-9179-457C75884C65","5F49459C-26AA-49F6-8216-2CA3571A899B","115E4B3E-1C79-4A8A-BCF9-E132122C3995","6DBDA65D-7623-46DD-9FE8-17C362A04515"],"doNotCopyProperties":[],"doNotSerialize":[],"droppingEnabled":false,"evalEnabled":false,"eventHandler":{"__isSmartRef__":true,"id":6980},"eventsAreIgnored":true,"fixedHeight":true,"fixedWidth":true,"grabbingEnabled":false,"halosEnabled":true,"id":"4CBEFD3F-663B-4313-BE57-5C8B5477ADD4","isLabel":true,"owner":{"__isSmartRef__":true,"id":6973},"scripts":[],"shape":{"__isSmartRef__":true,"id":6981},"submorphs":[],"textChunks":[{"__isSmartRef__":true,"id":6982}],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)"},"6980":{"morph":{"__isSmartRef__":true,"id":6979},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6981":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","_Position"],"_BorderWidth":0,"_ClipMode":"hidden","_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(0,0,0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"6982":{"_id":"_396","chunkOwner":{"__isSmartRef__":true,"id":6979},"storedString":"M","style":{"__isSmartRef__":true,"id":6983},"__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6983":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"6984":{"stops":[{"__isSmartRef__":true,"id":6985},{"__isSmartRef__":true,"id":6986},{"__isSmartRef__":true,"id":6987},{"__isSmartRef__":true,"id":6988}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6985":{"__serializedExpressions__":["color"],"offset":0,"color":"Color.rgb(250,250,250)"},"6986":{"__serializedExpressions__":["color"],"offset":0.4,"color":"Color.rgb(232,232,232)"},"6987":{"__serializedExpressions__":["color"],"offset":0.6,"color":"Color.rgb(232,232,232)"},"6988":{"__serializedExpressions__":["color"],"offset":1,"color":"Color.rgb(248,248,248)"},"6989":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","_Position"],"_BorderRadius":5,"_BorderWidth":0,"_ClipMode":"visible","_Fill":{"__isSmartRef__":true,"id":6941},"_StrokeOpacity":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(189,190,192)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"6990":{"__serializedExpressions__":["_BorderColor","_Extent","_Padding","_Position"],"_BorderRadius":"8px 8px 0px 0px","_BorderWidth":1,"_ClipMode":"visible","_Fill":{"__isSmartRef__":true,"id":6991},"_StrokeOpacity":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(102,102,102)","_Extent":"lively.pt(479.0,22.0)","_Padding":"lively.rect(0,0,0,0)","_Position":"lively.pt(0.0,0.0)"},"6991":{"stops":[{"__isSmartRef__":true,"id":6992},{"__isSmartRef__":true,"id":6993}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6992":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(255,255,255)"},"6993":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"6994":{"_ClipMode":"visible","__serializedExpressions__":["_Position","distanceToDragEvent","originalExtent"],"_Rotation":0,"_Scale":1,"attributeConnections":[{"__isSmartRef__":true,"id":6995}],"cornerName":"bottomRight","derivationIds":[7147,"16E962DF-21E9-4FE6-8B9B-953F0E908113","ADD0B5C0-0DC6-4D8E-9C2A-0EC7E3C71F21","F0667EB1-BF07-4E63-BA56-99189F82C865","DFDE68D2-3731-46DE-ADC8-56E32998CE07","D914121B-05B0-490E-A9F7-FE9AB53455A3","685BF0CF-E831-4670-98CD-A84F0E9D3C1A","7F4A1B67-C3C5-4398-9FC6-EEECF75FF81D","ABACD15A-2A09-48B6-91CF-E5BD3A9974FB","06D7E052-8590-4522-B7F3-1A59D4B017E7","64688F71-E370-4CC3-815D-3FE4545735AC"],"doNotCopyProperties":["$$cornerName"],"doNotSerialize":["$$cornerName"],"dragStartPoint":null,"draggingEnabled":true,"droppingEnabled":true,"eventHandler":{"__isSmartRef__":true,"id":6996},"halosEnabled":true,"id":"AA27DA52-F73F-4A6F-BDF8-2D871313D7C3","isResizeCorner":true,"moved":true,"name":"ResizeCorner","originalTargetBounds":null,"originalTargetExtent":null,"originalTargetInnerBounds":null,"owner":{"__isSmartRef__":true,"id":6635},"partsBinMetaInfo":{"__isSmartRef__":true,"id":6997},"registeredForMouseEvents":true,"relativeOrigin":null,"scripts":[],"shape":{"__isSmartRef__":true,"id":6998},"showsHalos":false,"submorphs":[],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":6999},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(469.0,427.0)","distanceToDragEvent":"lively.pt(42.0,-10.0)","originalExtent":"lively.pt(239.0,138.0)"},"6995":{"sourceAttrName":"cornerName","sourceObj":{"__isSmartRef__":true,"id":6994},"targetMethodName":"alignToOwner","targetObj":{"__isSmartRef__":true,"id":6994},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"6996":{"morph":{"__isSmartRef__":true,"id":6994},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"6997":{"comment":"Resize an object without using halos.","migrationLevel":2,"partName":"ResizeCorner","partsSpaceName":"PartsBin/Widgets/","revisionOnLoad":140152,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"6998":{"__serializedExpressions__":["_BorderColor","_Extent","_Fill","_Padding","position"],"_BorderWidth":0,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":"Color.rgb(145,145,145)","_Extent":"lively.pt(10.0,10.0)","_Fill":"Color.rgb(66,66,66)","_Padding":"lively.rect(0,0,0,0)","position":"lively.pt(0.0,0.0)"},"6999":{"alignToOwner":{"__isSmartRef__":true,"id":7000},"morphMenuItems":{"__isSmartRef__":true,"id":7003},"onDrag":{"__isSmartRef__":true,"id":7010},"onDragEnd":{"__isSmartRef__":true,"id":7018},"onDragStart":{"__isSmartRef__":true,"id":7026},"reset":{"__isSmartRef__":true,"id":7034}},"7000":{"funcProperties":{"__isSmartRef__":true,"id":7001},"source":"function alignToOwner() {\n this.align(this.bounds()[this.cornerName](), this.owner.shape.bounds()[this.cornerName]() )\n}","varMapping":{"__isSmartRef__":true,"id":7002},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"7001":{},"7002":{"this":{"__isSmartRef__":true,"id":6994}},"7003":{"funcProperties":{"__isSmartRef__":true,"id":7004},"source":"function morphMenuItems() {\n return $super().concat([\n [\"corner\", [\n [\"top left\", function() { this.cornerName = 'topLeft'}.bind(this)],\n [\"top right\", function() { this.cornerName = 'topRight'}.bind(this)],\n [\"bottom right\", function() { this.cornerName = 'bottomRight'}.bind(this)],\n [\"bottom left\", function() { this.cornerName = 'bottomLeft'}.bind(this)],\n ]]\n ])\t\n}","varMapping":{"__isSmartRef__":true,"id":7005},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"7004":{},"7005":{"this":{"__isSmartRef__":true,"id":6994},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":7006}},"7006":{"$super":{"__isSmartRef__":true,"id":7007}},"7007":{"funcProperties":{"__isSmartRef__":true,"id":7008},"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}","varMapping":{"__isSmartRef__":true,"id":7009},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"7008":{},"7009":{"name":"morphMenuItems","obj":{"__isSmartRef__":true,"id":6994}},"7010":{"funcProperties":{"__isSmartRef__":true,"id":7011},"source":"function onDrag(evt) {\n // alert(\"onDrag\")\n // this.owner.setPosition(pt(0,0))\n // this.owner.setOrigin(pt(0,0))\n var moveDelta = evt.mousePoint.subPt(this.dragStartPoint)\n \n // moveDelta = moveDelta.maxPt(pt(0,0))\n var ownerExtent = this.owner.getExtent();\n\n // TODO does not work\n if (evt.isShiftDown()) {\n var maxDelta = Math.max(moveDelta.x, moveDelta.y);\n if (maxDelta == 0) return;\n var factor = ownerExtent.x / ownerExtent.y\n moveDelta = pt(maxDelta * factor, maxDelta )\n }\n var accessor = \"with\" + this.cornerName.charAt(0).toUpperCase() + this.cornerName.substring(1);\n\n var newCorner = this.originalTargetBounds[this.cornerName]().addPt(moveDelta);\n var newBounds = this.originalTargetBounds[accessor ](newCorner);\n\n this.owner.setBounds(newBounds);\n \n // var newExtent = this.originalTargetExtent.addPt(moveDelta)\n // alertOK(\"new extent\" + newExtent)\n // this.owner.setExtent(newExtent);\n this.owner.submorphs.select(function(ea) {\n return ea.isResizeCorner\n }).invoke('alignToOwner');\n if (this.owner.halos) {\n this.owner.halos.invoke('alignAtTarget')\n }\n // alertOK(\"relative \" + this.relativeOrigin)\n var newOrigin = pt(0,0).extent(this.owner.getExtent()).relativeToAbsPoint(this.relativeOrigin)\n\n // TODO IMPLEMENT updating the origin does not work yet\n // this.owner.setOrigin(newOrigin);\n // alertOK(\"new origin \" + newOrigin)\n\n}","varMapping":{"__isSmartRef__":true,"id":7013},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"7011":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":7012},"user":"sstamm"},"7012":{"isSerializedDate":true,"string":"Thu Feb 23 2012 12:08:52 GMT+0100 (CET)"},"7013":{"this":{"__isSmartRef__":true,"id":6994},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":7014}},"7014":{"$super":{"__isSmartRef__":true,"id":7015}},"7015":{"funcProperties":{"__isSmartRef__":true,"id":7016},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","varMapping":{"__isSmartRef__":true,"id":7017},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"7016":{},"7017":{"name":"onDrag","obj":{"__isSmartRef__":true,"id":6994}},"7018":{"funcProperties":{"__isSmartRef__":true,"id":7019},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetBounds = null;\n this.relativeOrigin = null;\n}","varMapping":{"__isSmartRef__":true,"id":7021},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"7019":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":7020},"user":"sstamm"},"7020":{"isSerializedDate":true,"string":"Thu Feb 23 2012 12:09:00 GMT+0100 (CET)"},"7021":{"this":{"__isSmartRef__":true,"id":6994},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":7022}},"7022":{"$super":{"__isSmartRef__":true,"id":7023}},"7023":{"funcProperties":{"__isSmartRef__":true,"id":7024},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","varMapping":{"__isSmartRef__":true,"id":7025},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"7024":{},"7025":{"name":"onDragEnd","obj":{"__isSmartRef__":true,"id":6994}},"7026":{"funcProperties":{"__isSmartRef__":true,"id":7027},"source":"function onDragStart(evt) {\n var absToRelativePoint = function (r, absPt) {\n\t\treturn new Point(\n\t\t\t(absPt.x - r.x) / r.width,\n\t\t\t(absPt.y - r.y) / r.height)\n\t}\n // absToRelativePoint(new Rectangle(10,10,100,100), pt(20,20))\n // absToRelativePoint(new Rectangle(10,10,100,100), pt(0,0))\n // absToRelativePoint(new Rectangle(-100,-100,200,200), pt(0,0))\n\n\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetBounds= this.owner.bounds();\n this.relativeOrigin = absToRelativePoint(pt(0,0).extent(this.owner.getExtent()), this.owner.getOrigin())\n}","varMapping":{"__isSmartRef__":true,"id":7029},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"7027":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":7028},"user":"sstamm"},"7028":{"isSerializedDate":true,"string":"Thu Feb 23 2012 12:08:40 GMT+0100 (CET)"},"7029":{"this":{"__isSmartRef__":true,"id":6994},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":7030}},"7030":{"$super":{"__isSmartRef__":true,"id":7031}},"7031":{"funcProperties":{"__isSmartRef__":true,"id":7032},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","varMapping":{"__isSmartRef__":true,"id":7033},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"7032":{},"7033":{"name":"onDragStart","obj":{"__isSmartRef__":true,"id":6994}},"7034":{"funcProperties":{"__isSmartRef__":true,"id":7035},"source":"function reset() {\n this.isResizeCorner = true\n this.cornerName = 'bottomRight'\n this.setExtent(pt(10,10));\n this.setPosition(pt(0,0))\n}","varMapping":{"__isSmartRef__":true,"id":7036},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"7035":{},"7036":{"this":{"__isSmartRef__":true,"id":6994}},"7037":{"isSerializedDate":true,"string":"Wed Jan 02 2013 13:49:41 GMT+0100 (CET)"},"isSimplifiedRegistry":true}}]]>