>basicRequire: ' + e)\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 (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],Strings: [object Object],Numbers: [object Object],Arrays: [object Object],Functions: [object Object],Properties: [object Object],Objects: [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},pt: function pt(x, y) {\n return new lively.Point(x, y);\n},rect: function rect(location, corner) {\n return new Rectangle(location.x, location.y, corner.x - location.x, corner.y - location.y);\n},reqs: [lively.morphic.Complete, lively.morphic.CompatLayer],$: 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},CustomJSON: [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 Functions$True() { return true; },lively: module(Global.lively),CharSet: function CharSet(){ Class.initializer.apply(this, arguments) },Point: function Point(){ Class.initializer.apply(this, arguments) },Rectangle: function Rectangle(){ Class.initializer.apply(this, arguments) },Color: function Color(){ Class.initializer.apply(this, arguments) },UUID: function UUID(){ Class.initializer.apply(this, arguments) },AttributeConnection: function AttributeConnection(){ Class.initializer.apply(this, arguments) },connect: function () { return lively.bindings.connect.apply(lively.bindings, arguments) },disconnect: function (sourceObj, attrName, targetObj, targetMethodName) {\n\t\tif (!sourceObj.attributeConnections) return;\n \n\t\tsourceObj.attributeConnections.select(function(con) {\n\t\t\treturn \tcon.getSourceAttrName() == attrName &&\n\t\t\t\t\tcon.getTargetObj() === targetObj &&\n\t\t\t\t\tcon.getTargetMethodName() == targetMethodName;\n\t\t}).forEach(function(con) { con.disconnect() });\n\n if (typeof sourceObj['onDisconnect'] == 'function') {\n sourceObj.onDisconnect(attrName, targetObj, targetMethodName);\n };\n\t},disconnectAll: function (sourceObj) {\n\t\tif (!sourceObj.attributeConnections) return;\n\t\twhile (sourceObj.attributeConnections.length > 0)\n\t\t\tsourceObj.attributeConnections[0].disconnect();\n\t},signal: function (sourceObj, attrName, newVal) {\n\t\tif (!sourceObj.attributeConnections) return;\n\t\tvar oldVal = sourceObj[attrName];\n\t\tfor (var i = 0; i < sourceObj.attributeConnections.length; i++) {\n\t\t\tvar c = sourceObj.attributeConnections[i];\n\t\t\tif (c.getSourceAttrName() == attrName) c.update(newVal, oldVal);\n\t\t}\n\t},updateAttributeConnection: function (sourceObj, attrName, newVal) {\n\t\tif (!sourceObj.attributeConnections) return;\n\t\tvar oldVal = sourceObj[attrName];\n\t\tfor (var i = 0; i < sourceObj.attributeConnections.length; i++) {\n\t\t\tvar c = sourceObj.attributeConnections[i];\n\t\t\tif (c.getSourceAttrName() == attrName) c.update(newVal, oldVal);\n\t\t}\n\t},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\t\tvar args = $A(arguments),\n\t\t\ttraitName = args.shift(),\n\t\t\ttrait = RealTrait.named(traitName),\n\t\t\tcategory = ' default category';\n\t\tfor (var i = 0; i < args.length; i++) {\n\t\t\tif (Object.isString(args[i])) {\n\t\t\t\tcategory = args[i];\n\t\t\t} else {\n\t\t\t\ttrait.extend(category, args[i]);\n\t\t\t}\n\t\t}\n\t\treturn trait;\n\t},CrayonColors: function CrayonColors(){ 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 ? $A(arguments) : [__method.bind(this)].concat($A(arguments));\n return wrapper.apply(this, wrapperArgs);\n },disableLayer: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? $A(arguments) : [__method.bind(this)].concat($A(arguments));\n return wrapper.apply(this, wrapperArgs);\n },withLayers: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? $A(arguments) : [__method.bind(this)].concat($A(arguments));\n return wrapper.apply(this, wrapperArgs);\n },withoutLayers: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? $A(arguments) : [__method.bind(this)].concat($A(arguments));\n return wrapper.apply(this, wrapperArgs);\n },createLayer: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? $A(arguments) : [__method.bind(this)].concat($A(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerObject: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? $A(arguments) : [__method.bind(this)].concat($A(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerClass: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? $A(arguments) : [__method.bind(this)].concat($A(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerClassAndSubclasses: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? $A(arguments) : [__method.bind(this)].concat($A(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) },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) },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) },Styles: function Styles(){ Class.initializer.apply(this, arguments) },DisplayThemes: [object Object],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) },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, 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 },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) },show: function (obj) {\n if (!obj) return;\n if (Object.isArray(obj)) obj.forEach(function(ea) { show(ea) })\n else if (obj instanceof lively.Point) newShowPt(obj)\n else if (obj instanceof Rectangle) newShowRect(obj)\n else if (obj.isMorph) return newShowMorph(obj)\n },newShowPt: 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 ? args.shift() : pt(args.shift(), args.shift()),\n duration = args.shift(),\n extent = args.shift() || pt(12,12);\n\n var b = new lively.morphic.Morph();\n b.setBounds(extent.extentAsRectangle());\n b.align(b.getCenter(), pos);\n b.setFill(Color.red);\n\n newShowThenHide(b, duration);\n return b;\n },newShowRect: function (rect, duration) {\n var b = new lively.morphic.Morph();\n b.setBounds(rect);\n b.applyStyle({fill: null, borderWidth: 2, borderColor: Color.red})\n newShowThenHide(b, duration);\n return b\n },newShowMorph: function (morph) {\n newShowRect(morph.getGlobalTransform().transformRectToRect(morph.getShape().getBounds()))\n },newShowThenHide: function (morph, duration) {\n var w = Global.world || lively.morphic.World.current();\n if (!w) { alert(\"no world\"); return }\n duration = duration || 3;\n w.addMorph(morph);\n if (duration) // FIXME use scheduler\n (function() { morph.remove() }).delay(duration);\n },alertDbg: function (msg) {\n if (Global.lively.morphic.World) alert(msg)\n },alert: function (msg, delay) {\n var world = (Global.lively.morphic.World && lively.morphic.World.current()) ||\n (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.morphic.World && lively.morphic.World.current()) ||\n (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\t\t\treturn 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 },showCallStack: function () {\n var stack = 'no stack';\n try { throw new Error() } catch(e) { if (e.stack) stack = e.stack }\n alert(stack)\n },spec: undefined,DocumentMigrationLevel2Layer: DocumentMigrationLevel2Layer,DocumentMigrationLevel4Layer: DocumentMigrationLevel4Layer,DocumentMigrationLevel5Layer: DocumentMigrationLevel5Layer,foundClass: function Object() { [native code] },ConnectorLayer: ConnectorLayer,NoMagnetsLayer: NoMagnetsLayer,$morph: function getMorphNamedShortcut(name) {\n return Config.isNewMorphic ?\n lively.morphic.World.current().getMorphNamed(name) :\n WorldMorph.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 },SyntaxHighlighter: function SyntaxHighlighter(){ Class.initializer.apply(this, arguments) },SyntaxHighlightLayer: SyntaxHighlightLayer,PartCachingLayer: PartCachingLayer,PartCachingControlsLayer: PartCachingControlsLayer,EventLogLayer: EventLogLayer,EventExperimentLayer: EventExperimentLayer,anonymous_module_0: module(Global.anonymous_module_0),anonymous_module_1: module(Global.anonymous_module_1),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),otherChunkNode: undefined,LastEvent: [object MouseEvent],LastEventWasHandled: false,lastMenuBounds: rect(pt(647.0,216.0),pt(831.0,423.0)),titleHeight: 21,anonymous_module_6: module(Global.anonymous_module_6),bounds: rect(pt(702.0,25.1),pt(1228.4,705.0)),visibleBounds: rect(pt(0.0,0.0),pt(1524.0,765.0)),topLeft: pt(702.0,25.1),bottomRight: pt(1228.4,705.0),haloBounds: rect(pt(702.0,25.1),pt(1228.4,705.0)),timeOnNetwork: undefined,wasDefined: true,requires: function curried() {\n\t\t\t\treturn __method.apply(this, args.concat($A(arguments)));\n\t\t\t},anonymous_module_7: module(Global.anonymous_module_7),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},urlUnescape: function unescape() { [native code] },tempnam: function tempnam(s) { return (s ? s : \"_tmpnam_\") + tempnam.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() { },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],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],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) },JSTranslator: [object Object],LivelyJSParser: [object Object],TracerStackNode: function TracerStackNode(){ Class.initializer.apply(this, arguments) },TracerTreeNode: function TracerTreeNode(){ Class.initializer.apply(this, arguments) },DebugScriptsLayer: DebugScriptsLayer,DebugGlobalErrorHandlerLayer: DebugGlobalErrorHandlerLayer,book1: [object Object],book2: [object Object],anonymous_module_8: module(Global.anonymous_module_8),anonymous_module_9: module(Global.anonymous_module_9),SVGPathSegLinetoVerticalRel: function SVGPathSegLinetoVerticalRel() { [native code] },SVGFESpotLightElement: function SVGFESpotLightElement() { [native code] },HTMLButtonElement: function HTMLButtonElement() { [native code] },Worker: function Worker() { [native code] },webkitIDBTransaction: function IDBTransaction() { [native code] },webkitNotifications: [object NotificationCenter],EntityReference: function EntityReference() { [native code] },NodeList: function NodeList() { [native code] },screenY: 0,SVGAnimatedNumber: function SVGAnimatedNumber() { [native code] },SVGTSpanElement: function SVGTSpanElement() { [native code] },navigator: [object Navigator],MimeTypeArray: function DOMMimeTypeArray() { [native code] },sessionStorage: [object Storage],SVGPoint: function SVGPoint() { [native code] },SVGScriptElement: function SVGScriptElement() { [native code] },OverflowEvent: function OverflowEvent() { [native code] },HTMLTableColElement: function HTMLTableColElement() { [native code] },OfflineAudioCompletionEvent: function OfflineAudioCompletionEvent() { [native code] },HTMLOptionElement: function HTMLOptionElement() { [native code] },HTMLInputElement: function HTMLInputElement() { [native code] },webkitIDBIndex: function IDBIndex() { [native code] },SVGFEPointLightElement: function SVGFEPointLightElement() { [native code] },SVGPathSegList: function SVGPathSegList() { [native code] },SVGImageElement: function SVGImageElement() { [native code] },HTMLLinkElement: function HTMLLinkElement() { [native code] },defaultStatus: ,MutationEvent: function MutationEvent() { [native code] },HTMLMetaElement: function HTMLMetaElement() { [native code] },XMLHttpRequestProgressEvent: function XMLHttpRequestProgressEvent() { [native code] },WebKitCSSTransformValue: function WebKitCSSTransformValue() { [native code] },Clipboard: function Clipboard() { [native code] },HTMLTableElement: function HTMLTableElement() { [native code] },SharedWorker: function SharedWorker() { [native code] },SVGAElement: function SVGAElement() { [native code] },SVGAnimatedRect: function SVGAnimatedRect() { [native code] },webkitIDBDatabaseError: function IDBDatabaseError() { [native code] },HTMLSpanElement: function HTMLSpanElement() { [native code] },SVGGElement: function SVGGElement() { [native code] },toolbar: [object BarInfo],SVGLinearGradientElement: function SVGLinearGradientElement() { [native code] },innerHeight: 776,webkitIndexedDB: [object IDBFactory],SVGForeignObjectElement: function SVGForeignObjectElement() { [native code] },SVGAnimateElement: function SVGAnimateElement() { [native code] },applicationCache: [object DOMApplicationCache],SVGFontElement: function SVGFontElement() { [native code] },webkitAudioContext: function AudioContext() { [native code] },pageXOffset: 0,SVGFontFaceElement: function SVGFontFaceElement() { [native code] },ErrorEvent: function ErrorEvent() { [native code] },Element: function Element() { [native code] },SVGPathSegCurvetoQuadraticSmoothRel: function SVGPathSegCurvetoQuadraticSmoothRel() { [native code] },opener: null,SVGStopElement: function SVGStopElement() { [native code] },HTMLUnknownElement: function HTMLUnknownElement() { [native code] },StyleSheetList: function StyleSheetList() { [native code] },Float64Array: function Float64Array() { [native code] },WebGLShader: function WebGLShader() { [native code] },Uint32Array: function Uint32Array() { [native code] },TimeRanges: function TimeRanges() { [native code] },HTMLHRElement: function HTMLHRElement() { [native code] },MediaStreamEvent: function MediaStreamEvent() { [native code] },WebKitPoint: function WebKitPoint() { [native code] },screenLeft: 0,SVGViewElement: function SVGViewElement() { [native code] },SVGGradientElement: function SVGGradientElement() { [native code] },WebGLContextEvent: function WebGLContextEvent() { [native code] },SVGPathSegMovetoRel: function SVGPathSegMovetoRel() { [native code] },CanvasPattern: function CanvasPattern() { [native code] },WebGLActiveInfo: function WebGLActiveInfo() { [native code] },HTMLProgressElement: function HTMLProgressElement() { [native code] },HTMLDivElement: function HTMLDivElement() { [native code] },HashChangeEvent: function HashChangeEvent() { [native code] },KeyboardEvent: function KeyboardEvent() { [native code] },SVGHKernElement: function SVGHKernElement() { [native code] },HTMLTitleElement: function HTMLTitleElement() { [native code] },HTMLQuoteElement: function HTMLQuoteElement() { [native code] },webkitIDBDatabaseException: function IDBDatabaseException() { [native code] },SVGFEImageElement: function SVGFEImageElement() { [native code] },DOMTokenList: function DOMTokenList() { [native code] },screenX: 0,WebGLProgram: function WebGLProgram() { [native code] },SVGPathSegMovetoAbs: function SVGPathSegMovetoAbs() { [native code] },RangeException: function RangeException() { [native code] },SVGTextPathElement: function SVGTextPathElement() { [native code] },SVGAnimatedTransformList: function SVGAnimatedTransformList() { [native code] },webkitIDBFactory: function IDBFactory() { [native code] },HTMLLegendElement: function HTMLLegendElement() { [native code] },SVGPathSegCurvetoQuadraticAbs: function SVGPathSegCurvetoQuadraticAbs() { [native code] },MouseEvent: function MouseEvent() { [native code] },MediaError: function MediaError() { [native code] },AudioProcessingEvent: function AudioProcessingEvent() { [native code] },CompositionEvent: function CompositionEvent() { [native code] },Uint16Array: function Uint16Array() { [native code] },HTMLObjectElement: function HTMLObjectElement() { [native code] },HTMLFontElement: function HTMLFontElement() { [native code] },SVGFilterElement: function SVGFilterElement() { [native code] },WebKitTransitionEvent: function WebKitTransitionEvent() { [native code] },MediaList: function MediaList() { [native code] },SVGVKernElement: function SVGVKernElement() { [native code] },SVGPaint: function SVGPaint() { [native code] },SVGFETileElement: function SVGFETileElement() { [native code] },Document: function Document() { [native code] },XPathException: function XPathException() { [native code] },innerWidth: 1536,TextMetrics: function TextMetrics() { [native code] },personalbar: [object BarInfo],HTMLHeadElement: function HTMLHeadElement() { [native code] },SVGFEComponentTransferElement: function SVGFEComponentTransferElement() { [native code] },ProgressEvent: function ProgressEvent() { [native code] },SVGAnimatedPreserveAspectRatio: function SVGAnimatedPreserveAspectRatio() { [native code] },Node: function Node() { [native code] },SVGRectElement: function SVGRectElement() { [native code] },CSSPageRule: function CSSPageRule() { [native code] },SVGLineElement: function SVGLineElement() { [native code] },CharacterData: function CharacterData() { [native code] },length: 0,FileError: function FileError() { [native code] },MessagePort: function MessagePort() { [native code] },SVGDocument: function SVGDocument() { [native code] },ClientRect: function ClientRect() { [native code] },Option: [object Function],SVGDescElement: function SVGDescElement() { [native code] },Notation: function Notation() { [native code] },WebGLBuffer: function WebGLBuffer() { [native code] },StorageEvent: function StorageEvent() { [native code] },HTMLFieldSetElement: function HTMLFieldSetElement() { [native code] },HTMLVideoElement: function HTMLVideoElement() { [native code] },locationbar: [object BarInfo],SVGRenderingIntent: function SVGRenderingIntent() { [native code] },SVGPathSegLinetoRel: function SVGPathSegLinetoRel() { [native code] },WebGLTexture: function WebGLTexture() { [native code] },webkitAudioPannerNode: function AudioPannerNode() { [native code] },SVGGlyphRefElement: function SVGGlyphRefElement() { [native code] },UIEvent: function UIEvent() { [native code] },HTMLTableRowElement: function HTMLTableRowElement() { [native code] },HTMLDListElement: function HTMLDListElement() { [native code] },File: function File() { [native code] },SVGEllipseElement: function SVGEllipseElement() { [native code] },SVGFEFuncRElement: function SVGFEFuncRElement() { [native code] },Int32Array: function Int32Array() { [native code] },HTMLAllCollection: function HTMLAllCollection() { [native code] },CSSValue: function CSSValue() { [native code] },SVGAnimatedNumberList: function SVGAnimatedNumberList() { [native code] },HTMLParamElement: function HTMLParamElement() { [native code] },SVGElementInstance: function SVGElementInstance() { [native code] },HTMLModElement: function HTMLModElement() { [native code] },scrollY: 0,MediaController: function MediaController() { [native code] },SVGPathSegLinetoHorizontalRel: function SVGPathSegLinetoHorizontalRel() { [native code] },outerHeight: 1080,SVGAltGlyphDefElement: function SVGAltGlyphDefElement() { [native code] },CSSFontFaceRule: function CSSFontFaceRule() { [native code] },SVGPathSeg: function SVGPathSeg() { [native code] },CSSStyleDeclaration: function CSSStyleDeclaration() { [native code] },WebSocket: function WebSocket() { [native code] },TouchEvent: function TouchEvent() { [native code] },Rect: function Rect() { [native code] },StyleSheet: function StyleSheet() { [native code] },SVGPathSegLinetoHorizontalAbs: function SVGPathSegLinetoHorizontalAbs() { [native code] },SVGColor: function SVGColor() { [native code] },ArrayBuffer: function ArrayBuffer() { [native code] },SVGComponentTransferFunctionElement: function SVGComponentTransferFunctionElement() { [native code] },SVGStyleElement: function SVGStyleElement() { [native code] },Int16Array: function Int16Array() { [native code] },HTMLOutputElement: function HTMLOutputElement() { [native code] },SVGNumberList: function SVGNumberList() { [native code] },DataView: function DataView() { [native code] },DeviceOrientationEvent: function DeviceOrientationEvent() { [native code] },Blob: function Blob() { [native code] },SVGFEFloodElement: function SVGFEFloodElement() { [native code] },clientInformation: [object Navigator],CloseEvent: function CloseEvent() { [native code] },webkitStorageInfo: [object StorageInfo],HTMLStyleElement: function HTMLStyleElement() { [native code] },HTMLBaseElement: function HTMLBaseElement() { [native code] },HTMLBRElement: function HTMLBRElement() { [native code] },FileReader: function FileReader() { [native code] },SVGFEBlendElement: function SVGFEBlendElement() { [native code] },HTMLHtmlElement: function HTMLHtmlElement() { [native code] },SVGFEConvolveMatrixElement: function SVGFEConvolveMatrixElement() { [native code] },SVGFEGaussianBlurElement: function SVGFEGaussianBlurElement() { [native code] },HTMLTextAreaElement: function HTMLTextAreaElement() { [native code] },HTMLBaseFontElement: function HTMLBaseFontElement() { [native code] },scrollbars: [object BarInfo],webkitIDBCursor: function IDBCursor() { [native code] },screen: [object Screen],localStorage: [object Storage],defaultstatus: ,WebGLRenderbuffer: function WebGLRenderbuffer() { [native code] },SVGTextElement: function SVGTextElement() { [native code] },SVGFEOffsetElement: function SVGFEOffsetElement() { [native code] },RGBColor: function RGBColor() { [native code] },SVGGlyphElement: function SVGGlyphElement() { [native code] },Float32Array: function Float32Array() { [native code] },HTMLCanvasElement: function HTMLCanvasElement() { [native code] },ProcessingInstruction: function ProcessingInstruction() { [native code] },SVGZoomEvent: function SVGZoomEvent() { [native code] },HTMLFrameElement: function HTMLFrameElement() { [native code] },SVGElementInstanceList: function SVGElementInstanceList() { [native code] },SVGFEDisplacementMapElement: function SVGFEDisplacementMapElement() { [native code] },PopStateEvent: function PopStateEvent() { [native code] },frames: [object DOMWindow],SVGPathSegCurvetoCubicSmoothRel: function SVGPathSegCurvetoCubicSmoothRel() { [native code] },HTMLElement: function HTMLElement() { [native code] },HTMLSelectElement: function HTMLSelectElement() { [native code] },Int8Array: function Int8Array() { [native code] },SVGFEDistantLightElement: function SVGFEDistantLightElement() { [native code] },ImageData: function ImageData() { [native code] },SVGFEFuncBElement: function SVGFEFuncBElement() { [native code] },HTMLIsIndexElement: function HTMLIsIndexElement() { [native code] },HTMLDocument: function HTMLDocument() { [native code] },SVGCircleElement: function SVGCircleElement() { [native code] },HTMLCollection: function HTMLCollection() { [native code] },SVGSetElement: function SVGSetElement() { [native code] },SVGFEMergeElement: function SVGFEMergeElement() { [native code] },HTMLDirectoryElement: function HTMLDirectoryElement() { [native code] },CSSMediaRule: function CSSMediaRule() { [native code] },MessageEvent: function MessageEvent() { [native code] },SVGFESpecularLightingElement: function SVGFESpecularLightingElement() { [native code] },DOMException: function DOMException() { [native code] },SVGNumber: function SVGNumber() { [native code] },SVGFontFaceSrcElement: function SVGFontFaceSrcElement() { [native code] },CSSRule: function CSSRule() { [native code] },SVGElement: function SVGElement() { [native code] },WebKitCSSMatrix: function WebKitCSSMatrix() { [native code] },status: ,SVGMissingGlyphElement: function SVGMissingGlyphElement() { [native code] },HTMLScriptElement: function HTMLScriptElement() { [native code] },CustomEvent: function CustomEvent() { [native code] },DOMImplementation: function DOMImplementation() { [native code] },SVGLength: function SVGLength() { [native code] },HTMLOptGroupElement: function HTMLOptGroupElement() { [native code] },SVGPathSegLinetoVerticalAbs: function SVGPathSegLinetoVerticalAbs() { [native code] },SVGTextPositioningElement: function SVGTextPositioningElement() { [native code] },HTMLKeygenElement: function HTMLKeygenElement() { [native code] },styleMedia: [object StyleMedia],SVGFEFuncGElement: function SVGFEFuncGElement() { [native code] },HTMLAreaElement: function HTMLAreaElement() { [native code] },HTMLFrameSetElement: function HTMLFrameSetElement() { [native code] },SVGPathSegCurvetoQuadraticRel: function SVGPathSegCurvetoQuadraticRel() { [native code] },name: unserialize,SVGAnimateMotionElement: function SVGAnimateMotionElement() { [native code] },self: [object DOMWindow],HTMLIFrameElement: function HTMLIFrameElement() { [native code] },Storage: function Storage() { [native code] },Comment: function Comment() { [native code] },XMLSerializer: function XMLSerializer() { [native code] },performance: [object Performance],statusbar: [object BarInfo],Range: function Range() { [native code] },HTMLPreElement: function HTMLPreElement() { [native code] },DOMStringList: function DOMStringList() { [native code] },Image: [object Function],SVGAltGlyphItemElement: function SVGAltGlyphItemElement() { [native code] },SVGPathSegCurvetoQuadraticSmoothAbs: function SVGPathSegCurvetoQuadraticSmoothAbs() { [native code] },SVGRect: function SVGRect() { [native code] },parent: [object DOMWindow],SVGFontFaceFormatElement: function SVGFontFaceFormatElement() { [native code] },closed: false,crypto: [object Crypto],SVGAnimateTransformElement: function SVGAnimateTransformElement() { [native code] },webkitIDBDatabase: function IDBDatabase() { [native code] },HTMLOListElement: function HTMLOListElement() { [native code] },HTMLFormElement: function HTMLFormElement() { [native code] },SVGPathSegCurvetoCubicSmoothAbs: function SVGPathSegCurvetoCubicSmoothAbs() { [native code] },DOMParser: function DOMParser() { [native code] },SVGPathSegClosePath: function SVGPathSegClosePath() { [native code] },SVGPathSegArcRel: function SVGPathSegArcRel() { [native code] },EventException: function EventException() { [native code] },SVGAnimatedString: function SVGAnimatedString() { [native code] },SVGTransformList: function SVGTransformList() { [native code] },webkitIDBRequest: function IDBRequest() { [native code] },SVGFEMorphologyElement: function SVGFEMorphologyElement() { [native code] },SVGAnimatedLength: function SVGAnimatedLength() { [native code] },SVGPolygonElement: function SVGPolygonElement() { [native code] },scrollX: 0,SVGPathSegLinetoAbs: function SVGPathSegLinetoAbs() { [native code] },WebKitFlags: function WebKitFlags() { [native code] },HTMLMediaElement: function HTMLMediaElement() { [native code] },XMLDocument: function Document() { [native code] },webkitIDBObjectStore: function IDBObjectStore() { [native code] },SVGMaskElement: function SVGMaskElement() { [native code] },HTMLHeadingElement: function HTMLHeadingElement() { [native code] },XMLHttpRequest: function XMLHttpRequest() { [native code] },TextEvent: function TextEvent() { [native code] },event: [object MouseEvent],HTMLMeterElement: function HTMLMeterElement() { [native code] },SVGPathElement: function SVGPathElement() { [native code] },SVGStringList: function SVGStringList() { [native code] },HTMLAppletElement: function HTMLAppletElement() { [native code] },devicePixelRatio: 1,FileList: function FileList() { [native code] },webkitURL: [object DOMURL],CanvasRenderingContext2D: function CanvasRenderingContext2D() { [native code] },MessageChannel: function MessageChannel() { [native code] },SVGFEDropShadowElement: function SVGFEDropShadowElement() { [native code] },WebGLRenderingContext: function WebGLRenderingContext() { [native code] },webkitIDBKeyRange: function IDBKeyRange() { [native code] },HTMLMarqueeElement: function HTMLMarqueeElement() { [native code] },WebKitCSSKeyframesRule: function WebKitCSSKeyframesRule() { [native code] },XSLTProcessor: function XSLTProcessor() { [native code] },CSSImportRule: function CSSImportRule() { [native code] },BeforeLoadEvent: function BeforeLoadEvent() { [native code] },PageTransitionEvent: function PageTransitionEvent() { [native code] },CSSRuleList: function CSSRuleList() { [native code] },SVGAnimatedLengthList: function SVGAnimatedLengthList() { [native code] },SVGTransform: function SVGTransform() { [native code] },HTMLSourceElement: function HTMLSourceElement() { [native code] },SVGTextContentElement: function SVGTextContentElement() { [native code] },HTMLTableSectionElement: function HTMLTableSectionElement() { [native code] },SVGRadialGradientElement: function SVGRadialGradientElement() { [native code] },HTMLTableCellElement: function HTMLTableCellElement() { [native code] },SVGCursorElement: function SVGCursorElement() { [native code] },DocumentFragment: function DocumentFragment() { [native code] },SVGPathSegCurvetoCubicAbs: function SVGPathSegCurvetoCubicAbs() { [native code] },SVGUseElement: function SVGUseElement() { [native code] },FormData: function FormData() { [native code] },SVGPreserveAspectRatio: function SVGPreserveAspectRatio() { [native code] },HTMLMapElement: function HTMLMapElement() { [native code] },XPathResult: function XPathResult() { [native code] },HTMLLIElement: function HTMLLIElement() { [native code] },SVGSwitchElement: function SVGSwitchElement() { [native code] },SVGLengthList: function SVGLengthList() { [native code] },Plugin: function DOMPlugin() { [native code] },HTMLParagraphElement: function HTMLParagraphElement() { [native code] },SVGPathSegArcAbs: function SVGPathSegArcAbs() { [native code] },SVGAnimatedBoolean: function SVGAnimatedBoolean() { [native code] },outerWidth: 1920,CSSStyleRule: function CSSStyleRule() { [native code] },SVGFontFaceUriElement: function SVGFontFaceUriElement() { [native code] },Text: function Text() { [native code] },HTMLUListElement: function HTMLUListElement() { [native code] },SpeechInputEvent: function SpeechInputEvent() { [native code] },WebGLUniformLocation: function WebGLUniformLocation() { [native code] },SVGPointList: function SVGPointList() { [native code] },CSSPrimitiveValue: function CSSPrimitiveValue() { [native code] },HTMLEmbedElement: function HTMLEmbedElement() { [native code] },PluginArray: function DOMPluginArray() { [native code] },SVGPathSegCurvetoCubicRel: function SVGPathSegCurvetoCubicRel() { [native code] },ClientRectList: function ClientRectList() { [native code] },SVGMetadataElement: function SVGMetadataElement() { [native code] },SVGTitleElement: function SVGTitleElement() { [native code] },SVGAnimatedAngle: function SVGAnimatedAngle() { [native code] },CSSCharsetRule: function CSSCharsetRule() { [native code] },menubar: [object BarInfo],SVGAnimateColorElement: function SVGAnimateColorElement() { [native code] },SVGMatrix: function SVGMatrix() { [native code] },HTMLBodyElement: function HTMLBodyElement() { [native code] },SVGSymbolElement: function SVGSymbolElement() { [native code] },HTMLAudioElement: function HTMLAudioElement() { [native code] },CDATASection: function CDATASection() { [native code] },SVGFEDiffuseLightingElement: function SVGFEDiffuseLightingElement() { [native code] },SVGFETurbulenceElement: function SVGFETurbulenceElement() { [native code] },WebKitBlobBuilder: function WebKitBlobBuilder() { [native code] },SVGAnimatedEnumeration: function SVGAnimatedEnumeration() { [native code] },WebKitCSSKeyframeRule: function WebKitCSSKeyframeRule() { [native code] },Audio: [object Function],SVGFEMergeNodeElement: function SVGFEMergeNodeElement() { [native code] },history: [object History],Entity: function Entity() { [native code] },SQLException: function SQLException() { [native code] },HTMLTableCaptionElement: function HTMLTableCaptionElement() { [native code] },DOMStringMap: function DOMStringMap() { [native code] },MimeType: function DOMMimeType() { [native code] },EventSource: function EventSource() { [native code] },SVGException: function SVGException() { [native code] },NamedNodeMap: function NamedNodeMap() { [native code] },WebGLFramebuffer: function WebGLFramebuffer() { [native code] },XMLHttpRequestUpload: function XMLHttpRequestUpload() { [native code] },WebKitAnimationEvent: function WebKitAnimationEvent() { [native code] },Uint8Array: function Uint8Array() { [native code] },SVGAnimatedInteger: function SVGAnimatedInteger() { [native code] },HTMLMenuElement: function HTMLMenuElement() { [native code] },SVGDefsElement: function SVGDefsElement() { [native code] },SVGAngle: function SVGAngle() { [native code] },SVGSVGElement: function SVGSVGElement() { [native code] },XPathEvaluator: function XPathEvaluator() { [native code] },HTMLImageElement: function HTMLImageElement() { [native code] },NodeFilter: function NodeFilter() { [native code] },SVGAltGlyphElement: function SVGAltGlyphElement() { [native code] },SVGClipPathElement: function SVGClipPathElement() { [native code] },Attr: function Attr() { [native code] },Counter: function Counter() { [native code] },SVGPolylineElement: function SVGPolylineElement() { [native code] },DOMSettableTokenList: function DOMSettableTokenList() { [native code] },SVGPatternElement: function SVGPatternElement() { [native code] },SVGFECompositeElement: function SVGFECompositeElement() { [native code] },CSSValueList: function CSSValueList() { [native code] },XMLHttpRequestException: function XMLHttpRequestException() { [native code] },SVGFEColorMatrixElement: function SVGFEColorMatrixElement() { [native code] },SVGTRefElement: function SVGTRefElement() { [native code] },WheelEvent: function WheelEvent() { [native code] },SVGUnitTypes: function SVGUnitTypes() { [native code] },HTMLLabelElement: function HTMLLabelElement() { [native code] },HTMLAnchorElement: function HTMLAnchorElement() { [native code] },SVGFEFuncAElement: function SVGFEFuncAElement() { [native code] },CanvasGradient: function CanvasGradient() { [native code] },frameElement: undefined,DocumentType: function DocumentType() { [native code] },Event: function Event() { [native code] },SVGMPathElement: function SVGMPathElement() { [native code] },CSSStyleSheet: function CSSStyleSheet() { [native code] },SVGMarkerElement: function SVGMarkerElement() { [native code] },offscreenBuffering: true,pageYOffset: 0,SVGFontFaceNameElement: function SVGFontFaceNameElement() { [native code] },screenTop: 0})[mapping]\n path:[\"submorphs\"][\"6\"][\"submorphs\"][\"0\"][\"submorphs\"][\"0\"][\"itemList\"][\"0\"][\"value\"][\"pc\"][\"_parent\"][\"_parent\"][\"_parent\"][\"lexicalScope\"]","__layered_draggingEnabled__":true,"_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":446},"eventHandler":{"__isSmartRef__":true,"id":447},"eventStartPos":{"__isSmartRef__":true,"id":448},"worldMenuOpened":true,"prevScroll":[0,-1080],"attributeConnections":[{"__isSmartRef__":true,"id":449}],"doNotSerialize":["$$savedWorldAsURL"],"doNotCopyProperties":["$$savedWorldAsURL"],"draggingEnabled":true,"clickedOnMorphTime":1329104682723,"_Scroll":[0,-1080],"book1":{"__isSmartRef__":true,"id":454},"savedWorldAsURL":{"__isSmartRef__":true,"id":455},"__LivelyClassName__":"lively.morphic.World"},"1":{"submorphs":[],"scripts":[],"id":"DBC5988E-3C47-4435-8F45-3BE816386996","shape":{"__isSmartRef__":true,"id":2},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":8},"_MaxTextWidth":476,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":5},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text","partsBinMetaInfo":{"__isSmartRef__":true,"id":9},"textChunks":[{"__isSmartRef__":true,"id":10}],"charsReplaced":"World traversal","lastFindLoc":30,"priorSelectionRange":[6,6],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":12},"renderContextTable":{"__isSmartRef__":true,"id":13},"eventHandler":{"__isSmartRef__":true,"id":14},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Padding":{"__isSmartRef__":true,"id":15},"_ClipMode":"visible","derivationIds":[355],"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":0},"_MinTextWidth":476,"_MinTextHeight":null,"_Rotation":0,"_Scale":1.002003004005006,"isBeingDragged":false,"previousSelection":[6,6],"__LivelyClassName__":"lively.morphic.Text"},"2":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3},"_Extent":{"__isSmartRef__":true,"id":4},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":5},"renderContextTable":{"__isSmartRef__":true,"id":6},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":7},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4":{"x":476,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"5":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"6":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"7":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"8":{"x":45,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"9":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"10":{"style":{"__isSmartRef__":true,"id":11},"chunkOwner":{"__isSmartRef__":true,"id":1},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Test Introspection","__LivelyClassName__":"lively.morphic.TextChunk"},"11":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"12":{"x":476,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"13":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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","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","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"14":{"morph":{"__isSmartRef__":true,"id":1},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"15":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"16":{"submorphs":[{"__isSmartRef__":true,"id":17},{"__isSmartRef__":true,"id":236}],"scripts":[],"shape":{"__isSmartRef__":true,"id":383},"derivationIds":[null],"id":"077BC394-17F4-46E4-BD54-832D960EF669","renderContextTable":{"__isSmartRef__":true,"id":387},"eventHandler":{"__isSmartRef__":true,"id":388},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":389},"LK2":true,"_Position":{"__isSmartRef__":true,"id":390},"priorExtent":{"__isSmartRef__":true,"id":391},"targetMorph":{"__isSmartRef__":true,"id":17},"titleBar":{"__isSmartRef__":true,"id":236},"contentOffset":{"__isSmartRef__":true,"id":232},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":{"__isSmartRef__":true,"id":0},"highlighted":true,"prevDragPos":{"__isSmartRef__":true,"id":392},"isBeingDragged":false,"showsHalos":false,"_Rotation":0,"_Scale":1,"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.Window","withoutLayers":["Global.lively.morphic.GrabbingLayer"]},"17":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18},"derivationIds":[null],"id":"4EF59446-BD61-4401-8FCB-8519EE02FA25","renderContextTable":{"__isSmartRef__":true,"id":25},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":26},{"__isSmartRef__":true,"id":28},{"__isSmartRef__":true,"id":31},{"__isSmartRef__":true,"id":33},{"__isSmartRef__":true,"id":36},{"__isSmartRef__":true,"id":38},{"__isSmartRef__":true,"id":41},{"__isSmartRef__":true,"id":43},{"__isSmartRef__":true,"id":46},{"__isSmartRef__":true,"id":48},{"__isSmartRef__":true,"id":50},{"__isSmartRef__":true,"id":52},{"__isSmartRef__":true,"id":54},{"__isSmartRef__":true,"id":56},{"__isSmartRef__":true,"id":58},{"__isSmartRef__":true,"id":60},{"__isSmartRef__":true,"id":62},{"__isSmartRef__":true,"id":64},{"__isSmartRef__":true,"id":66},{"__isSmartRef__":true,"id":68},{"__isSmartRef__":true,"id":70},{"__isSmartRef__":true,"id":72},{"__isSmartRef__":true,"id":74},{"__isSmartRef__":true,"id":76},{"__isSmartRef__":true,"id":78},{"__isSmartRef__":true,"id":80},{"__isSmartRef__":true,"id":82},{"__isSmartRef__":true,"id":84},{"__isSmartRef__":true,"id":86},{"__isSmartRef__":true,"id":88},{"__isSmartRef__":true,"id":90},{"__isSmartRef__":true,"id":92},{"__isSmartRef__":true,"id":94},{"__isSmartRef__":true,"id":96},{"__isSmartRef__":true,"id":98},{"__isSmartRef__":true,"id":100},{"__isSmartRef__":true,"id":103},{"__isSmartRef__":true,"id":105},{"__isSmartRef__":true,"id":108},{"__isSmartRef__":true,"id":110},{"__isSmartRef__":true,"id":112},{"__isSmartRef__":true,"id":114},{"__isSmartRef__":true,"id":116},{"__isSmartRef__":true,"id":118},{"__isSmartRef__":true,"id":120},{"__isSmartRef__":true,"id":122},{"__isSmartRef__":true,"id":124},{"__isSmartRef__":true,"id":126},{"__isSmartRef__":true,"id":128},{"__isSmartRef__":true,"id":130},{"__isSmartRef__":true,"id":132},{"__isSmartRef__":true,"id":134},{"__isSmartRef__":true,"id":136},{"__isSmartRef__":true,"id":138},{"__isSmartRef__":true,"id":140},{"__isSmartRef__":true,"id":142},{"__isSmartRef__":true,"id":144},{"__isSmartRef__":true,"id":146},{"__isSmartRef__":true,"id":148},{"__isSmartRef__":true,"id":150},{"__isSmartRef__":true,"id":152},{"__isSmartRef__":true,"id":154},{"__isSmartRef__":true,"id":156},{"__isSmartRef__":true,"id":158},{"__isSmartRef__":true,"id":161},{"__isSmartRef__":true,"id":163},{"__isSmartRef__":true,"id":165},{"__isSmartRef__":true,"id":167},{"__isSmartRef__":true,"id":169},{"__isSmartRef__":true,"id":171},{"__isSmartRef__":true,"id":173},{"__isSmartRef__":true,"id":175},{"__isSmartRef__":true,"id":177},{"__isSmartRef__":true,"id":179},{"__isSmartRef__":true,"id":181},{"__isSmartRef__":true,"id":183},{"__isSmartRef__":true,"id":185},{"__isSmartRef__":true,"id":187},{"__isSmartRef__":true,"id":189},{"__isSmartRef__":true,"id":191},{"__isSmartRef__":true,"id":193},{"__isSmartRef__":true,"id":195},{"__isSmartRef__":true,"id":197},{"__isSmartRef__":true,"id":199},{"__isSmartRef__":true,"id":201},{"__isSmartRef__":true,"id":203},{"__isSmartRef__":true,"id":205},{"__isSmartRef__":true,"id":207},{"__isSmartRef__":true,"id":209},{"__isSmartRef__":true,"id":211},{"__isSmartRef__":true,"id":213},{"__isSmartRef__":true,"id":215},{"__isSmartRef__":true,"id":217},{"__isSmartRef__":true,"id":219},{"__isSmartRef__":true,"id":221},{"__isSmartRef__":true,"id":223},{"__isSmartRef__":true,"id":225},{"__isSmartRef__":true,"id":227},{"__isSmartRef__":true,"id":229}],"eventHandler":{"__isSmartRef__":true,"id":231},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"auto","fixedWidth":true,"fixedHeight":true,"allowInput":true,"_FontFamily":"Monaco,monospace","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":232},"priorExtent":{"__isSmartRef__":true,"id":233},"_MaxTextWidth":564,"_MinTextWidth":564,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":16},"layout":{"__isSmartRef__":true,"id":234},"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":235}],"doNotSerialize":["$$textString"],"doNotCopyProperties":["$$textString"],"lastSyntaxHighlightTime":1329103238525,"accessibleInInactiveWindow":true,"previousSelection":[48,251],"priorSelectionRange":[0,212],"charsReplaced":"// create a few objects and make sure to Ctrl-D\nbook1 = { \n bookName: \"Find me 1\", \n authorName: \"myself\" \n}\nbook2 = { \n bookName: \"Find me 2\",\n authorName: \"myself\" \n}\n\n// then fins them in world\n\nvar w = $world\nw.book1 = book1\nvar d = 0","lastFindLoc":0,"showsHalos":false,"isBeingDragged":false,"__SourceModuleName__":"Global.lively.morphic.TextCore","textString":"\nvar book1 = { \n bookName: \"Find me 1\", \n authorName: \"myself\" \n}\nvar book2 = { \n bookName: \"Find me 2\",\n authorName: \"myself\" \n}\n\n// then fins them in world\n\nvar w = $world\nw.book1 = book1\nvar d = 0\n\nfunction findObjectByKey(obj, keyName) {\n d++\n for ( key in obj ) {\n if (keyName == key) {\n alert (\"key \" + keyName + \" found in Object \" + obj)\n }\n var child = obj[key]\n if (child instanceof String || child instanceof Number || child instanceof Boolean) {\n return\n }\n findObjectByKey(child, keyName)\n }\n}\n\ntry {\n findObjectByKey(w.book1, \"bookName\")\n} catch (ex) {\n alert (\"failed at depth\" + d)\n}\n\n","__LivelyClassName__":"lively.morphic.Text"},"18":{"_Position":{"__isSmartRef__":true,"id":19},"renderContextTable":{"__isSmartRef__":true,"id":20},"_Extent":{"__isSmartRef__":true,"id":21},"_ClipMode":"auto","_Padding":{"__isSmartRef__":true,"id":22},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":23},"_Fill":{"__isSmartRef__":true,"id":24},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"20":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"21":{"x":574,"y":674,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"22":{"x":4,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"23":{"r":0.372,"g":0.369,"b":0.372,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"24":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"25":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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","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","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"26":{"style":{"__isSmartRef__":true,"id":27},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"27":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"28":{"style":{"__isSmartRef__":true,"id":29},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"29":{"color":{"__isSmartRef__":true,"id":30},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"30":{"r":0,"g":0,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"31":{"style":{"__isSmartRef__":true,"id":32},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" book1 = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"32":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"33":{"style":{"__isSmartRef__":true,"id":34},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"34":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"35":{"r":0,"g":0.5019607843137255,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"36":{"style":{"__isSmartRef__":true,"id":37},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" \n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"37":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"38":{"style":{"__isSmartRef__":true,"id":39},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"bookName:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"39":{"color":{"__isSmartRef__":true,"id":40},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"40":{"r":0.5450980392156862,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"41":{"style":{"__isSmartRef__":true,"id":42},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"42":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"43":{"style":{"__isSmartRef__":true,"id":44},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\"Find me 1\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"44":{"color":{"__isSmartRef__":true,"id":45},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"45":{"r":0,"g":0.5019607843137255,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"46":{"style":{"__isSmartRef__":true,"id":47},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":", \n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"47":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"48":{"style":{"__isSmartRef__":true,"id":49},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"authorName:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"49":{"color":{"__isSmartRef__":true,"id":40},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"50":{"style":{"__isSmartRef__":true,"id":51},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"51":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"52":{"style":{"__isSmartRef__":true,"id":53},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\"myself\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"53":{"color":{"__isSmartRef__":true,"id":45},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"54":{"style":{"__isSmartRef__":true,"id":55},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"55":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"56":{"style":{"__isSmartRef__":true,"id":57},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"57":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"58":{"style":{"__isSmartRef__":true,"id":59},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"59":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"60":{"style":{"__isSmartRef__":true,"id":61},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"61":{"color":{"__isSmartRef__":true,"id":30},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"62":{"style":{"__isSmartRef__":true,"id":63},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" book2 = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"63":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"64":{"style":{"__isSmartRef__":true,"id":65},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"65":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"66":{"style":{"__isSmartRef__":true,"id":67},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" \n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"67":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"68":{"style":{"__isSmartRef__":true,"id":69},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"bookName:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"69":{"color":{"__isSmartRef__":true,"id":40},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"70":{"style":{"__isSmartRef__":true,"id":71},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"71":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"72":{"style":{"__isSmartRef__":true,"id":73},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\"Find me 2\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"73":{"color":{"__isSmartRef__":true,"id":45},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"74":{"style":{"__isSmartRef__":true,"id":75},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":",\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"75":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"76":{"style":{"__isSmartRef__":true,"id":77},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"authorName:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"77":{"color":{"__isSmartRef__":true,"id":40},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"78":{"style":{"__isSmartRef__":true,"id":79},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"79":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"80":{"style":{"__isSmartRef__":true,"id":81},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\"myself\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"81":{"color":{"__isSmartRef__":true,"id":45},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"82":{"style":{"__isSmartRef__":true,"id":83},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"83":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"84":{"style":{"__isSmartRef__":true,"id":85},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"85":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"86":{"style":{"__isSmartRef__":true,"id":87},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"87":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"88":{"style":{"__isSmartRef__":true,"id":89},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"// then fins them in world","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"89":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"90":{"style":{"__isSmartRef__":true,"id":91},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"91":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"92":{"style":{"__isSmartRef__":true,"id":93},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"93":{"color":{"__isSmartRef__":true,"id":30},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"94":{"style":{"__isSmartRef__":true,"id":95},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" w = $world\nw.book1 = book1\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"95":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"96":{"style":{"__isSmartRef__":true,"id":97},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"97":{"color":{"__isSmartRef__":true,"id":30},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"98":{"style":{"__isSmartRef__":true,"id":99},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" d = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"99":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"100":{"style":{"__isSmartRef__":true,"id":101},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"101":{"color":{"__isSmartRef__":true,"id":102},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"102":{"r":0,"g":0,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"103":{"style":{"__isSmartRef__":true,"id":104},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"104":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"105":{"style":{"__isSmartRef__":true,"id":106},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"106":{"color":{"__isSmartRef__":true,"id":107},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"107":{"r":0,"g":0,"b":0.5450980392156862,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"108":{"style":{"__isSmartRef__":true,"id":109},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" findObjectByKey(obj, keyName) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"109":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"110":{"style":{"__isSmartRef__":true,"id":111},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"111":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"112":{"style":{"__isSmartRef__":true,"id":113},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n d++\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"113":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"114":{"style":{"__isSmartRef__":true,"id":115},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"for","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"115":{"color":{"__isSmartRef__":true,"id":30},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"116":{"style":{"__isSmartRef__":true,"id":117},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" ( key ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"117":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"118":{"style":{"__isSmartRef__":true,"id":119},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"in","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"119":{"color":{"__isSmartRef__":true,"id":107},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"120":{"style":{"__isSmartRef__":true,"id":121},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" obj ) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"121":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"122":{"style":{"__isSmartRef__":true,"id":123},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"123":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"124":{"style":{"__isSmartRef__":true,"id":125},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"125":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"126":{"style":{"__isSmartRef__":true,"id":127},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"127":{"color":{"__isSmartRef__":true,"id":30},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"128":{"style":{"__isSmartRef__":true,"id":129},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" (keyName == key) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"129":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"130":{"style":{"__isSmartRef__":true,"id":131},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"131":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"132":{"style":{"__isSmartRef__":true,"id":133},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n alert (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"133":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"134":{"style":{"__isSmartRef__":true,"id":135},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\"key \"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"135":{"color":{"__isSmartRef__":true,"id":45},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"136":{"style":{"__isSmartRef__":true,"id":137},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" + keyName + ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"137":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"138":{"style":{"__isSmartRef__":true,"id":139},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\" found in Object \"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"139":{"color":{"__isSmartRef__":true,"id":45},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"140":{"style":{"__isSmartRef__":true,"id":141},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" + obj)\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"141":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"142":{"style":{"__isSmartRef__":true,"id":143},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"143":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"144":{"style":{"__isSmartRef__":true,"id":145},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"145":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"146":{"style":{"__isSmartRef__":true,"id":147},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"147":{"color":{"__isSmartRef__":true,"id":30},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"148":{"style":{"__isSmartRef__":true,"id":149},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" child = obj[key]\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"149":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"150":{"style":{"__isSmartRef__":true,"id":151},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"151":{"color":{"__isSmartRef__":true,"id":30},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"152":{"style":{"__isSmartRef__":true,"id":153},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" (child ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"153":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"154":{"style":{"__isSmartRef__":true,"id":155},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"instanceof","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"155":{"color":{"__isSmartRef__":true,"id":107},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"156":{"style":{"__isSmartRef__":true,"id":157},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"157":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"158":{"style":{"__isSmartRef__":true,"id":159},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"String","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"159":{"color":{"__isSmartRef__":true,"id":160},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"160":{"r":1,"g":0.0784313725490196,"b":0.5764705882352941,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"161":{"style":{"__isSmartRef__":true,"id":162},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" || child ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"162":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"163":{"style":{"__isSmartRef__":true,"id":164},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"instanceof","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"164":{"color":{"__isSmartRef__":true,"id":107},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"165":{"style":{"__isSmartRef__":true,"id":166},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"166":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"167":{"style":{"__isSmartRef__":true,"id":168},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"Number","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"168":{"color":{"__isSmartRef__":true,"id":160},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"169":{"style":{"__isSmartRef__":true,"id":170},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" || child ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"170":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"171":{"style":{"__isSmartRef__":true,"id":172},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"instanceof","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"172":{"color":{"__isSmartRef__":true,"id":107},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"173":{"style":{"__isSmartRef__":true,"id":174},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"174":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"175":{"style":{"__isSmartRef__":true,"id":176},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"Boolean","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"176":{"color":{"__isSmartRef__":true,"id":160},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"177":{"style":{"__isSmartRef__":true,"id":178},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"178":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"179":{"style":{"__isSmartRef__":true,"id":180},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"180":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"181":{"style":{"__isSmartRef__":true,"id":182},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"182":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"183":{"style":{"__isSmartRef__":true,"id":184},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"184":{"color":{"__isSmartRef__":true,"id":30},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"185":{"style":{"__isSmartRef__":true,"id":186},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"186":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"187":{"style":{"__isSmartRef__":true,"id":188},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"188":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"189":{"style":{"__isSmartRef__":true,"id":190},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n findObjectByKey(child, keyName)\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"190":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"191":{"style":{"__isSmartRef__":true,"id":192},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"192":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"193":{"style":{"__isSmartRef__":true,"id":194},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"194":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"195":{"style":{"__isSmartRef__":true,"id":196},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"196":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"197":{"style":{"__isSmartRef__":true,"id":198},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"198":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"199":{"style":{"__isSmartRef__":true,"id":200},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"try","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"200":{"color":{"__isSmartRef__":true,"id":30},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"201":{"style":{"__isSmartRef__":true,"id":202},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"202":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"203":{"style":{"__isSmartRef__":true,"id":204},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"204":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"205":{"style":{"__isSmartRef__":true,"id":206},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n findObjectByKey(w.book1, ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"206":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"207":{"style":{"__isSmartRef__":true,"id":208},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\"bookName\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"208":{"color":{"__isSmartRef__":true,"id":45},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"209":{"style":{"__isSmartRef__":true,"id":210},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":")\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"210":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"211":{"style":{"__isSmartRef__":true,"id":212},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"212":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"213":{"style":{"__isSmartRef__":true,"id":214},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"214":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"215":{"style":{"__isSmartRef__":true,"id":216},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"catch","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"216":{"color":{"__isSmartRef__":true,"id":30},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"217":{"style":{"__isSmartRef__":true,"id":218},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" (ex) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"218":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"219":{"style":{"__isSmartRef__":true,"id":220},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"220":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"221":{"style":{"__isSmartRef__":true,"id":222},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n alert (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"222":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"223":{"style":{"__isSmartRef__":true,"id":224},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\"failed at depth\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"224":{"color":{"__isSmartRef__":true,"id":45},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"225":{"style":{"__isSmartRef__":true,"id":226},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":" + d)\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"226":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"227":{"style":{"__isSmartRef__":true,"id":228},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"228":{"color":{"__isSmartRef__":true,"id":35},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"229":{"style":{"__isSmartRef__":true,"id":230},"chunkOwner":{"__isSmartRef__":true,"id":17},"storedString":"\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"230":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"231":{"morph":{"__isSmartRef__":true,"id":17},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"232":{"x":0,"y":21,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"233":{"x":574,"y":674,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"234":{"resizeWidth":true,"resizeHeight":true},"235":{"sourceObj":{"__isSmartRef__":true,"id":17},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":17},"targetMethodName":"highlightJavaScriptSyntax","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"236":{"submorphs":[{"__isSmartRef__":true,"id":237},{"__isSmartRef__":true,"id":251},{"__isSmartRef__":true,"id":298},{"__isSmartRef__":true,"id":332}],"scripts":[],"shape":{"__isSmartRef__":true,"id":367},"derivationIds":[null],"id":"5EB92A99-487F-4A75-B8CA-F6F2B5747E8B","renderContextTable":{"__isSmartRef__":true,"id":378},"eventHandler":{"__isSmartRef__":true,"id":379},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":380},"_Position":{"__isSmartRef__":true,"id":381},"windowMorph":{"__isSmartRef__":true,"id":16},"label":{"__isSmartRef__":true,"id":237},"closeButton":{"__isSmartRef__":true,"id":251},"menuButton":{"__isSmartRef__":true,"id":298},"collapseButton":{"__isSmartRef__":true,"id":332},"priorExtent":{"__isSmartRef__":true,"id":382},"owner":{"__isSmartRef__":true,"id":16},"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"237":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":238},"derivationIds":[null],"id":"BE4625B0-04B2-4F09-9D25-A91B1963FF1E","renderContextTable":{"__isSmartRef__":true,"id":244},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":245}],"eventHandler":{"__isSmartRef__":true,"id":247},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":248},"_Align":"center","eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":236},"priorExtent":{"__isSmartRef__":true,"id":249},"_MaxTextWidth":514,"_MinTextWidth":514,"_MaxTextHeight":null,"_MinTextHeight":null,"_Position":{"__isSmartRef__":true,"id":250},"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"238":{"_Position":{"__isSmartRef__":true,"id":239},"renderContextTable":{"__isSmartRef__":true,"id":240},"_Extent":{"__isSmartRef__":true,"id":241},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":242},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":243},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"239":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"240":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"241":{"x":514,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"242":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"243":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"244":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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","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","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"245":{"style":{"__isSmartRef__":true,"id":246},"chunkOwner":{"__isSmartRef__":true,"id":237},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Workspace","__LivelyClassName__":"lively.morphic.TextChunk"},"246":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"247":{"morph":{"__isSmartRef__":true,"id":237},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"248":{"resizeWidth":true},"249":{"x":514,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"250":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"251":{"submorphs":[{"__isSmartRef__":true,"id":252}],"scripts":[],"shape":{"__isSmartRef__":true,"id":264},"derivationIds":[null],"id":"6924CA2F-1DEE-46D6-BD61-CABC9AD60C8B","renderContextTable":{"__isSmartRef__":true,"id":280},"eventHandler":{"__isSmartRef__":true,"id":281},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":282},"priorExtent":{"__isSmartRef__":true,"id":283},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":270},"lighterFill":{"__isSmartRef__":true,"id":284},"label":{"__isSmartRef__":true,"id":252},"owner":{"__isSmartRef__":true,"id":236},"layout":{"__isSmartRef__":true,"id":293},"attributeConnections":[{"__isSmartRef__":true,"id":294},{"__isSmartRef__":true,"id":296}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"252":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":253},"derivationIds":[null],"id":"483AAA86-475F-4EC3-8ADC-022372394330","renderContextTable":{"__isSmartRef__":true,"id":258},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":259}],"eventHandler":{"__isSmartRef__":true,"id":261},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":262},"priorExtent":{"__isSmartRef__":true,"id":263},"_MaxTextWidth":17,"_MinTextWidth":17,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":251},"isLabel":true,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":243},"_Align":"center","eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"253":{"_Position":{"__isSmartRef__":true,"id":254},"renderContextTable":{"__isSmartRef__":true,"id":255},"_Extent":{"__isSmartRef__":true,"id":256},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":257},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":243},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"254":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"255":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"256":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"257":{"x":0,"y":3,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"258":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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","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","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"259":{"style":{"__isSmartRef__":true,"id":260},"chunkOwner":{"__isSmartRef__":true,"id":252},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"260":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"261":{"morph":{"__isSmartRef__":true,"id":252},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"262":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"263":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"264":{"_Position":{"__isSmartRef__":true,"id":265},"renderContextTable":{"__isSmartRef__":true,"id":266},"_Extent":{"__isSmartRef__":true,"id":267},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":268},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":269},"_Fill":{"__isSmartRef__":true,"id":270},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"265":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"266":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"267":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"268":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"269":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"270":{"stops":[{"__isSmartRef__":true,"id":271},{"__isSmartRef__":true,"id":273},{"__isSmartRef__":true,"id":275},{"__isSmartRef__":true,"id":277}],"vector":{"__isSmartRef__":true,"id":279},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"271":{"offset":0,"color":{"__isSmartRef__":true,"id":272}},"272":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"273":{"offset":0.4,"color":{"__isSmartRef__":true,"id":274}},"274":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"275":{"offset":0.6,"color":{"__isSmartRef__":true,"id":276}},"276":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"277":{"offset":1,"color":{"__isSmartRef__":true,"id":278}},"278":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"279":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"280":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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"},"281":{"morph":{"__isSmartRef__":true,"id":251},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"282":{"x":553,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"283":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"284":{"stops":[{"__isSmartRef__":true,"id":285},{"__isSmartRef__":true,"id":287},{"__isSmartRef__":true,"id":289},{"__isSmartRef__":true,"id":291}],"vector":{"__isSmartRef__":true,"id":279},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"285":{"offset":0,"color":{"__isSmartRef__":true,"id":286}},"286":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"287":{"offset":0.4,"color":{"__isSmartRef__":true,"id":288}},"288":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"289":{"offset":0.6,"color":{"__isSmartRef__":true,"id":290}},"290":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"291":{"offset":1,"color":{"__isSmartRef__":true,"id":292}},"292":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"293":{"moveHorizontal":true},"294":{"sourceObj":{"__isSmartRef__":true,"id":251},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":16},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":295},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"295":{"source":{"__isSmartRef__":true,"id":251},"target":{"__isSmartRef__":true,"id":16}},"296":{"sourceObj":{"__isSmartRef__":true,"id":251},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":16},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":297},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"297":{"source":{"__isSmartRef__":true,"id":251},"target":{"__isSmartRef__":true,"id":16}},"298":{"submorphs":[{"__isSmartRef__":true,"id":299}],"scripts":[],"shape":{"__isSmartRef__":true,"id":310},"derivationIds":[null],"id":"23C45D55-52A4-4301-9404-D5C24E031FC7","renderContextTable":{"__isSmartRef__":true,"id":315},"eventHandler":{"__isSmartRef__":true,"id":316},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":317},"priorExtent":{"__isSmartRef__":true,"id":318},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":270},"lighterFill":{"__isSmartRef__":true,"id":319},"label":{"__isSmartRef__":true,"id":299},"owner":{"__isSmartRef__":true,"id":236},"attributeConnections":[{"__isSmartRef__":true,"id":328},{"__isSmartRef__":true,"id":330}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"299":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":300},"derivationIds":[null],"id":"72BE0EC5-8C17-4848-8CF8-20BF8C220B27","renderContextTable":{"__isSmartRef__":true,"id":304},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":305}],"eventHandler":{"__isSmartRef__":true,"id":307},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":308},"priorExtent":{"__isSmartRef__":true,"id":309},"_MaxTextWidth":17,"_MinTextWidth":17,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":298},"isLabel":true,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":243},"_Align":"center","eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"300":{"_Position":{"__isSmartRef__":true,"id":301},"renderContextTable":{"__isSmartRef__":true,"id":302},"_Extent":{"__isSmartRef__":true,"id":303},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":257},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":243},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"301":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"302":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"303":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"304":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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","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","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"305":{"style":{"__isSmartRef__":true,"id":306},"chunkOwner":{"__isSmartRef__":true,"id":299},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"306":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"307":{"morph":{"__isSmartRef__":true,"id":299},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"308":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"309":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"310":{"_Position":{"__isSmartRef__":true,"id":311},"renderContextTable":{"__isSmartRef__":true,"id":312},"_Extent":{"__isSmartRef__":true,"id":313},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":314},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":269},"_Fill":{"__isSmartRef__":true,"id":270},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"311":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"312":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"313":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"314":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"315":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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"},"316":{"morph":{"__isSmartRef__":true,"id":298},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"317":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"318":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"319":{"stops":[{"__isSmartRef__":true,"id":320},{"__isSmartRef__":true,"id":322},{"__isSmartRef__":true,"id":324},{"__isSmartRef__":true,"id":326}],"vector":{"__isSmartRef__":true,"id":279},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"320":{"offset":0,"color":{"__isSmartRef__":true,"id":321}},"321":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"322":{"offset":0.4,"color":{"__isSmartRef__":true,"id":323}},"323":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"324":{"offset":0.6,"color":{"__isSmartRef__":true,"id":325}},"325":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"326":{"offset":1,"color":{"__isSmartRef__":true,"id":327}},"327":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"328":{"sourceObj":{"__isSmartRef__":true,"id":298},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":16},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":329},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"329":{"source":{"__isSmartRef__":true,"id":298},"target":{"__isSmartRef__":true,"id":16}},"330":{"sourceObj":{"__isSmartRef__":true,"id":298},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":16},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":331},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"331":{"source":{"__isSmartRef__":true,"id":298},"target":{"__isSmartRef__":true,"id":16}},"332":{"submorphs":[{"__isSmartRef__":true,"id":333}],"scripts":[],"shape":{"__isSmartRef__":true,"id":344},"derivationIds":[null],"id":"E6F9C1D6-EAFA-43CF-942E-331E898D0F84","renderContextTable":{"__isSmartRef__":true,"id":349},"eventHandler":{"__isSmartRef__":true,"id":350},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":351},"priorExtent":{"__isSmartRef__":true,"id":352},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":270},"lighterFill":{"__isSmartRef__":true,"id":353},"label":{"__isSmartRef__":true,"id":333},"owner":{"__isSmartRef__":true,"id":236},"layout":{"__isSmartRef__":true,"id":362},"attributeConnections":[{"__isSmartRef__":true,"id":363},{"__isSmartRef__":true,"id":365}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"333":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":334},"derivationIds":[null],"id":"29D43A38-57C7-4899-B18D-B0BC3049C45B","renderContextTable":{"__isSmartRef__":true,"id":338},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":339}],"eventHandler":{"__isSmartRef__":true,"id":341},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":342},"priorExtent":{"__isSmartRef__":true,"id":343},"_MaxTextWidth":17,"_MinTextWidth":17,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":332},"isLabel":true,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":243},"_Align":"center","eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"334":{"_Position":{"__isSmartRef__":true,"id":335},"renderContextTable":{"__isSmartRef__":true,"id":336},"_Extent":{"__isSmartRef__":true,"id":337},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":257},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":243},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"335":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"336":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"337":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"338":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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","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","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"339":{"style":{"__isSmartRef__":true,"id":340},"chunkOwner":{"__isSmartRef__":true,"id":333},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"340":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"341":{"morph":{"__isSmartRef__":true,"id":333},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"342":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"343":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"344":{"_Position":{"__isSmartRef__":true,"id":345},"renderContextTable":{"__isSmartRef__":true,"id":346},"_Extent":{"__isSmartRef__":true,"id":347},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":348},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":269},"_Fill":{"__isSmartRef__":true,"id":270},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"345":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"346":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"347":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"348":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"349":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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"},"350":{"morph":{"__isSmartRef__":true,"id":332},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"351":{"x":534,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"352":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"353":{"stops":[{"__isSmartRef__":true,"id":354},{"__isSmartRef__":true,"id":356},{"__isSmartRef__":true,"id":358},{"__isSmartRef__":true,"id":360}],"vector":{"__isSmartRef__":true,"id":279},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"354":{"offset":0,"color":{"__isSmartRef__":true,"id":355}},"355":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"356":{"offset":0.4,"color":{"__isSmartRef__":true,"id":357}},"357":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"358":{"offset":0.6,"color":{"__isSmartRef__":true,"id":359}},"359":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"360":{"offset":1,"color":{"__isSmartRef__":true,"id":361}},"361":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"362":{"moveHorizontal":true},"363":{"sourceObj":{"__isSmartRef__":true,"id":332},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":16},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":364},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"364":{"source":{"__isSmartRef__":true,"id":332},"target":{"__isSmartRef__":true,"id":16}},"365":{"sourceObj":{"__isSmartRef__":true,"id":332},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":16},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":366},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"366":{"source":{"__isSmartRef__":true,"id":332},"target":{"__isSmartRef__":true,"id":16}},"367":{"_Position":{"__isSmartRef__":true,"id":368},"renderContextTable":{"__isSmartRef__":true,"id":369},"_Extent":{"__isSmartRef__":true,"id":370},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":371},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":372},"_Fill":{"__isSmartRef__":true,"id":373},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"368":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"369":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"370":{"x":573,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"371":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"372":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"373":{"stops":[{"__isSmartRef__":true,"id":374},{"__isSmartRef__":true,"id":376}],"vector":{"__isSmartRef__":true,"id":279},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"374":{"offset":0,"color":{"__isSmartRef__":true,"id":375}},"375":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"376":{"offset":1,"color":{"__isSmartRef__":true,"id":377}},"377":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"378":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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"},"379":{"morph":{"__isSmartRef__":true,"id":236},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"380":{"resizeWidth":true,"adjustForNewBounds":true},"381":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"382":{"x":573,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"383":{"renderContextTable":{"__isSmartRef__":true,"id":384},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":385},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":386},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"384":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"385":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"386":{"x":573,"y":697,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"387":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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"},"388":{"morph":{"__isSmartRef__":true,"id":16},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"389":{"adjustForNewBounds":true},"390":{"x":31,"y":50,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"391":{"x":573,"y":697,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"392":{"x":188,"y":56,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"393":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":394},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":false,"registeredForMouseEvents":true,"_world":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","carriesGrabbedMorphs":false,"renderContextTable":{"__isSmartRef__":true,"id":400},"eventHandler":{"__isSmartRef__":true,"id":401},"lastScrollTime":1329103307376,"internalClickedOnMorph":{"__isSmartRef__":true,"id":402},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Position":{"__isSmartRef__":true,"id":437},"_Scale":1.002003004005006,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":0},"scrollFocusMorph":{"__isSmartRef__":true,"id":402},"__LivelyClassName__":"lively.morphic.HandMorph","withLayers":["Global.NoMagnetsLayer"]},"394":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":395},"_Extent":{"__isSmartRef__":true,"id":396},"_Fill":{"__isSmartRef__":true,"id":397},"renderContextTable":{"__isSmartRef__":true,"id":398},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":399},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"395":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"396":{"x":2,"y":2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"397":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"398":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"399":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"400":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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"},"401":{"morph":{"__isSmartRef__":true,"id":393},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"402":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":403},"derivationIds":[null],"id":"E6D8AC70-51DD-4768-AB5C-220F4AFCCC81","renderContextTable":{"__isSmartRef__":true,"id":415},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":416}],"eventHandler":{"__isSmartRef__":true,"id":418},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"hidden","fixedWidth":false,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10.5,"_Position":{"__isSmartRef__":true,"id":419},"priorExtent":{"__isSmartRef__":true,"id":420},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":421},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":422},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"403":{"_Position":{"__isSmartRef__":true,"id":404},"renderContextTable":{"__isSmartRef__":true,"id":405},"_Extent":{"__isSmartRef__":true,"id":406},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":407},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":408},"_Fill":{"__isSmartRef__":true,"id":409},"_BorderRadius":4,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"404":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"405":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"406":{"x":184,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"407":{"x":3,"y":2,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"408":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"409":{"stops":[{"__isSmartRef__":true,"id":410},{"__isSmartRef__":true,"id":412}],"vector":{"__isSmartRef__":true,"id":414},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"410":{"offset":0,"color":{"__isSmartRef__":true,"id":411}},"411":{"r":0.39215686274509803,"g":0.5137254901960784,"b":0.9725490196078431,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"412":{"offset":1,"color":{"__isSmartRef__":true,"id":413}},"413":{"r":0.13333333333333333,"g":0.3333333333333333,"b":0.9607843137254902,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"414":{"x":0,"y":0,"width":0,"height":1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"415":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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","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","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"416":{"style":{"__isSmartRef__":true,"id":417},"chunkOwner":{"__isSmartRef__":true,"id":402},"storedString":"save world","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"417":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"418":{"morph":{"__isSmartRef__":true,"id":402},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"419":{"x":0,"y":184,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"420":{"x":180,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"421":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"422":{"onMouseWheel":{"__isSmartRef__":true,"id":423},"onSelectStart":{"__isSmartRef__":true,"id":430}},"423":{"varMapping":{"__isSmartRef__":true,"id":424},"source":"function onMouseWheel(evt) {\n return false; // to allow scrolling\n }","funcProperties":{"__isSmartRef__":true,"id":429},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"424":{"this":{"__isSmartRef__":true,"id":402},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":425}},"425":{"$super":{"__isSmartRef__":true,"id":426}},"426":{"varMapping":{"__isSmartRef__":true,"id":427},"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":428},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"427":{"obj":{"__isSmartRef__":true,"id":402},"name":"onMouseWheel"},"428":{},"429":{},"430":{"varMapping":{"__isSmartRef__":true,"id":431},"source":"function onSelectStart(evt) {\n return false; // to allow scrolling\n }","funcProperties":{"__isSmartRef__":true,"id":436},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"431":{"this":{"__isSmartRef__":true,"id":402},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":432}},"432":{"$super":{"__isSmartRef__":true,"id":433}},"433":{"varMapping":{"__isSmartRef__":true,"id":434},"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":435},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"434":{"obj":{"__isSmartRef__":true,"id":402},"name":"onSelectStart"},"435":{},"436":{},"437":{"x":668,"y":316,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"438":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":439},"_Extent":{"__isSmartRef__":true,"id":440},"_Fill":{"__isSmartRef__":true,"id":441},"renderContextTable":{"__isSmartRef__":true,"id":442},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":443},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"439":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"440":{"x":2800,"y":2900,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"441":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"442":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"443":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"444":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"445":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"446":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","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","setScroll":"setScrollHTML"},"447":{"morph":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"448":{"x":666,"y":314,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"449":{"sourceObj":{"__isSmartRef__":true,"id":0},"sourceAttrName":"savedWorldAsURL","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"visitNewPageAfterSaveAs","converter":null,"converterString":null,"updaterString":"function ($upd, v) {\n if (v && v.toString() !== URL.source.toString()) {\n $upd(v)\n }\n }","varMapping":{"__isSmartRef__":true,"id":450},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":451},"__LivelyClassName__":"AttributeConnection"},"450":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"451":{"updater":{"__isSmartRef__":true,"id":452}},"452":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":450},"source":"function ($upd, v) {\n if (v && v.toString() !== URL.source.toString()) {\n $upd(v)\n }\n }","funcProperties":{"__isSmartRef__":true,"id":453},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"453":{},"454":{"bookName":"Find me 1","authorName":"myself"},"455":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/mzimmerm/Tests/test-lively-introspection.xhtml","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"isSimplifiedRegistry":true}}]]>