32) str = str.substring(0, 36) + '...';\n return str;\n}","funcProperties":{"__isSmartRef__":true,"id":1363},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1362":{"this":{"__isSmartRef__":true,"id":163}},"1363":{"timestamp":{"__isSmartRef__":true,"id":1364},"user":"cschuster","tags":[]},"1364":{"isSerializedDate":true,"string":"Mon Jul 02 2012 23:16:12 GMT+0200 (CEST)"},"1365":{"varMapping":{"__isSmartRef__":true,"id":1366},"source":"function update() {\n if (this.tree.item) this.tree.update();\n}","funcProperties":{"__isSmartRef__":true,"id":1367},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1366":{"this":{"__isSmartRef__":true,"id":163}},"1367":{"timestamp":{"__isSmartRef__":true,"id":1368},"user":"cschuster","tags":[]},"1368":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"1369":{"varMapping":{"__isSmartRef__":true,"id":1370},"source":"function expand(item) {\n var props = Properties.allProperties(item.data, this.getFilter());\n if (!Object.isArray(item.data)) props = props.sort();\n var newChildren = [];\n var lookup = {};\n item.children.each(function(i) { lookup[i.name] = i; });\n props.each(function(prop) {\n var existing = lookup[prop];\n if (existing) {\n existing.data = item.data[prop];\n newChildren.push(existing);\n } else {\n newChildren.push(this.createItem(item.data, prop));\n }\n }.bind(this));\n var proto = !Object.isFunction(item.data) &&\n !this.isPrimitive(item.data) &&\n Object.getPrototypeOf(item.data);\n if (proto) {\n var existing = item.children.detect(function(i) { return i.data === proto; });\n if (existing) {\n newChildren.push(existing);\n } else {\n newChildren.push(this.createPrototypeItem(proto));\n }\n }\n item.children = newChildren;\n}","funcProperties":{"__isSmartRef__":true,"id":1371},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1370":{"this":{"__isSmartRef__":true,"id":163}},"1371":{"timestamp":{"__isSmartRef__":true,"id":1372},"user":"cschuster","tags":[]},"1372":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:20:47 GMT+0200 (CEST)"},"1373":{"varMapping":{"__isSmartRef__":true,"id":1374},"source":"function setFilter(str) {\n var startsAlphaNum = /^[a-zA-Z0-9]/;\n var fn = {\n standard: function(obj, prop) {\n return obj.hasOwnProperty(prop) &&\n startsAlphaNum.test(prop) &&\n !Object.isFunction(obj[prop]);\n },\n properties: function(obj, prop) {\n return obj.hasOwnProperty(prop) &&\n !Object.isFunction(obj[prop]);\n },\n functions: function(obj, prop) {\n return obj.hasOwnProperty(prop) &&\n Object.isFunction(obj[prop]);\n },\n submorphs: function(obj, prop) {\n return obj.hasOwnProperty(prop) &&\n (prop == 'submorphs' || obj[prop] instanceof lively.morphic.Morph);\n },\n };\n this.filter = fn[str];\n var that = this;\n this.tree.layoutAfter(function() { that.update(); });\n}","funcProperties":{"__isSmartRef__":true,"id":1375},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1374":{"this":{"__isSmartRef__":true,"id":163}},"1375":{"timestamp":{"__isSmartRef__":true,"id":1376},"user":"cschuster","tags":[]},"1376":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"1377":{"varMapping":{"__isSmartRef__":true,"id":1378},"source":"function isPrimitive(value) {\n return value === null ||\n value === undefined ||\n Object.isString(value) ||\n Object.isNumber(value) ||\n Object.isBoolean(value);\n}","funcProperties":{"__isSmartRef__":true,"id":1379},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1378":{"this":{"__isSmartRef__":true,"id":163}},"1379":{"timestamp":{"__isSmartRef__":true,"id":1380},"user":"cschuster","tags":[]},"1380":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"1381":{"varMapping":{"__isSmartRef__":true,"id":1382},"source":"function createPrototypeItem(proto) {\n var that = this;\n var item = {data: proto, inspector: this, doNotSerialize: [\"data\"]};\n item.name = \"\";\n item.description = \"inherited from \" + this.typename(proto);\n item.children = [];\n Object.addScript(item, function onExpand() { this.inspector.expand(this); });\n Object.addScript(item, function onUpdateChildren() { this.inspector.expand(this); });\n Object.addScript(item, function onUpdate() {\n this.description = \"inherited from \" + this.inspector.typename(this.data);\n });\n return item;\n}","funcProperties":{"__isSmartRef__":true,"id":1383},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1382":{"this":{"__isSmartRef__":true,"id":163}},"1383":{"timestamp":{"__isSmartRef__":true,"id":1384},"user":"cschuster","tags":[]},"1384":{"isSerializedDate":true,"string":"Wed Aug 01 2012 04:04:06 GMT+0200 (CEST)"},"1385":{"varMapping":{"__isSmartRef__":true,"id":1386},"source":"function typename(proto) {\n return proto.constructor.type || proto.constructor.name || proto.toString();\n}","funcProperties":{"__isSmartRef__":true,"id":1387},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1386":{"this":{"__isSmartRef__":true,"id":163}},"1387":{"timestamp":{"__isSmartRef__":true,"id":1388},"user":"cschuster","tags":[]},"1388":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:23 GMT+0200 (CEST)"},"1389":{"varMapping":{"__isSmartRef__":true,"id":1390},"source":"function getFilter() {\n if (!this.filter) {\n this.setFilter(this.get(\"ObjectInspectorFilterList\").getSelectedItem());\n }\n return this.filter;\n}","funcProperties":{"__isSmartRef__":true,"id":1391},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1390":{"this":{"__isSmartRef__":true,"id":163}},"1391":{"timestamp":{"__isSmartRef__":true,"id":1392},"user":"cschuster","tags":[]},"1392":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:20:17 GMT+0200 (CEST)"},"1393":{"submorphs":[{"__isSmartRef__":true,"id":1394},{"__isSmartRef__":true,"id":1400},{"__isSmartRef__":true,"id":1413},{"__isSmartRef__":true,"id":1425}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1438},"eventHandler":{"__isSmartRef__":true,"id":1439},"_ClipMode":"visible","derivationIds":["3354C449-DE1C-422A-9B91-C1B724A2D784"],"id":"553A2A7D-211D-4352-906E-7DB5104340F3","droppingEnabled":false,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":1440},"windowMorph":{"__isSmartRef__":true,"id":162},"label":{"__isSmartRef__":true,"id":1394},"closeButton":{"__isSmartRef__":true,"id":1400},"menuButton":{"__isSmartRef__":true,"id":1413},"collapseButton":{"__isSmartRef__":true,"id":1425},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":162},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"1394":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1395},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1396}],"eventHandler":{"__isSmartRef__":true,"id":1398},"_ClipMode":"hidden","derivationIds":["683202D2-6E15-4762-BEF3-633DF82B9EE4"],"id":"A32ABCA1-1966-40B8-A7C9-4CFC6DC0F44B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"layout":{"__isSmartRef__":true,"id":1399},"eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1393},"_StyleClassNames":["window-title"],"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(21.0,3.0)"},"1395":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(264.4,18.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1396":{"style":{"__isSmartRef__":true,"id":1397},"chunkOwner":{"__isSmartRef__":true,"id":1394},"_id":"_18037","storedString":"Rectangle","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1397":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1398":{"morph":{"__isSmartRef__":true,"id":1394},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1399":{"resizeWidth":true},"1400":{"submorphs":[{"__isSmartRef__":true,"id":1401}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1406},"eventHandler":{"__isSmartRef__":true,"id":1407},"_ClipMode":"visible","derivationIds":["FB7A3DD8-97CB-4398-883B-A3D2C87C2F82"],"id":"28010586-E84E-4E79-AA62-5C9E0E075937","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1401},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":1393},"layout":{"__isSmartRef__":true,"id":1408},"_StyleClassNames":["close"],"attributeConnections":[{"__isSmartRef__":true,"id":1409},{"__isSmartRef__":true,"id":1411}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(304.4,3.0)"},"1401":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1402},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1403}],"eventHandler":{"__isSmartRef__":true,"id":1405},"_ClipMode":"hidden","derivationIds":["18901FFC-0D21-407F-ABC0-2BB1D80521AD"],"id":"F2D60954-A9F2-4CBF-A1F9-65C4774758D9","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1400},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,-1.0)"},"1402":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1403":{"style":{"__isSmartRef__":true,"id":1404},"chunkOwner":{"__isSmartRef__":true,"id":1401},"_id":"_1670","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1404":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1405":{"morph":{"__isSmartRef__":true,"id":1401},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1406":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1407":{"morph":{"__isSmartRef__":true,"id":1400},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1408":{"moveHorizontal":true},"1409":{"sourceObj":{"__isSmartRef__":true,"id":1400},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":162},"targetMethodName":"getCloseHelp","varMapping":{"__isSmartRef__":true,"id":1410},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1410":{"source":{"__isSmartRef__":true,"id":1400},"target":{"__isSmartRef__":true,"id":162}},"1411":{"sourceObj":{"__isSmartRef__":true,"id":1400},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":162},"targetMethodName":"initiateShutdown","varMapping":{"__isSmartRef__":true,"id":1412},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1412":{"source":{"__isSmartRef__":true,"id":1400},"target":{"__isSmartRef__":true,"id":162}},"1413":{"submorphs":[{"__isSmartRef__":true,"id":1414}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1419},"eventHandler":{"__isSmartRef__":true,"id":1420},"_ClipMode":"visible","derivationIds":["E51FF825-9570-4914-B20B-7029DCC9ACE0"],"id":"A4495EB2-D735-4E6D-9B74-9ABD231E9138","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1414},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":1393},"attributeConnections":[{"__isSmartRef__":true,"id":1421},{"__isSmartRef__":true,"id":1423}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"1414":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1415},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1416}],"eventHandler":{"__isSmartRef__":true,"id":1418},"_ClipMode":"hidden","derivationIds":["37A2A739-1A1F-498C-8EEE-909ABECE1795"],"id":"E40F0395-0BA2-4984-9149-2756DC92E90E","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1413},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"1415":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(18.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1416":{"style":{"__isSmartRef__":true,"id":1417},"chunkOwner":{"__isSmartRef__":true,"id":1414},"_id":"_1672","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1417":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1418":{"morph":{"__isSmartRef__":true,"id":1414},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1419":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1420":{"morph":{"__isSmartRef__":true,"id":1413},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1421":{"sourceObj":{"__isSmartRef__":true,"id":1413},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":162},"targetMethodName":"getMenuHelp","varMapping":{"__isSmartRef__":true,"id":1422},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1422":{"source":{"__isSmartRef__":true,"id":1413},"target":{"__isSmartRef__":true,"id":162}},"1423":{"sourceObj":{"__isSmartRef__":true,"id":1413},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":162},"targetMethodName":"showTargetMorphMenu","varMapping":{"__isSmartRef__":true,"id":1424},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1424":{"source":{"__isSmartRef__":true,"id":1413},"target":{"__isSmartRef__":true,"id":162}},"1425":{"submorphs":[{"__isSmartRef__":true,"id":1426}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1431},"eventHandler":{"__isSmartRef__":true,"id":1432},"_ClipMode":"visible","derivationIds":["158AFC6D-24CB-4DB5-A245-6D7283DDC1D6"],"id":"4B003F80-DBCE-4057-B82D-3BBC23A779E5","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1426},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":1393},"layout":{"__isSmartRef__":true,"id":1433},"attributeConnections":[{"__isSmartRef__":true,"id":1434},{"__isSmartRef__":true,"id":1436}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(285.4,3.0)"},"1426":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1427},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1428}],"eventHandler":{"__isSmartRef__":true,"id":1430},"_ClipMode":"hidden","derivationIds":["864112B1-4791-4892-9D7E-E83FFCFDEAF6"],"id":"BD10128A-D280-4C78-AF06-A73DB1F7A82B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1425},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,1.0)"},"1427":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1428":{"style":{"__isSmartRef__":true,"id":1429},"chunkOwner":{"__isSmartRef__":true,"id":1426},"_id":"_1674","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1429":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1430":{"morph":{"__isSmartRef__":true,"id":1426},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1431":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1432":{"morph":{"__isSmartRef__":true,"id":1425},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1433":{"moveHorizontal":true},"1434":{"sourceObj":{"__isSmartRef__":true,"id":1425},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":162},"targetMethodName":"getCollapseHelp","varMapping":{"__isSmartRef__":true,"id":1435},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1435":{"source":{"__isSmartRef__":true,"id":1425},"target":{"__isSmartRef__":true,"id":162}},"1436":{"sourceObj":{"__isSmartRef__":true,"id":1425},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":162},"targetMethodName":"toggleCollapse","varMapping":{"__isSmartRef__":true,"id":1437},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1437":{"source":{"__isSmartRef__":true,"id":1425},"target":{"__isSmartRef__":true,"id":162}},"1438":{"_AppearanceStylingMode":true,"_BorderStylingMode":true,"_BorderWidth":0,"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(324.4,22.0)","_Padding":"lively.rect(0,0,0,0)"},"1439":{"morph":{"__isSmartRef__":true,"id":1393},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1440":{"resizeWidth":true,"adjustForNewBounds":true},"1441":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1442},"derivationIds":[null,"E34B7A68-766E-4DB7-A7E3-E4EE8A7079AC","7A7C4259-E86A-4D41-9B21-CE6D4EADF5A7","34C6ADC2-7F79-44A2-BEDF-A05F972B36BC","36694142-B04E-484B-957B-9BBF9784B20E","3CFE3EDB-8A42-4E75-A348-120654F234F2","3464720D-ABB2-4C88-BEEA-62B58DD08CD5","B5EA6ABC-057D-4A70-AB94-B3EDCA5E395E","05F4CC34-0F8A-43CA-94B6-9A543A70E55C","A2BF090C-5A85-4E54-92CA-6ABA47629E7B","DDD9B33B-824A-4C58-8107-67C5FADDFB72","09051614-6CE4-4984-B3CF-F3E78B5898B1","284F15EF-EA68-4F32-86F3-EA5DD3A23D1C","BE99321C-F9F7-45C2-9BED-3AC496C10878","344F1643-CC8E-4B9C-A57A-75074EDFDD12","E24B6723-2DA3-42B9-AE0B-1E28DA2C0CF8","035E96EC-B4F1-4D94-A31F-21750A89C148","658D2557-B37E-4C58-8618-9AF1E45EFA55","413248B4-5FDD-4647-9E20-F195F11DF903","20EF83E4-287D-4306-9EA0-65B7286C0E48","77F94626-E559-4BB8-B6EA-1EC2E50823C3","85515935-002D-4FF0-8C2B-E88837E5B98D","1B4B5619-CD65-49B8-939D-06D7DD9E0C4C","79748D72-9031-4011-9BD4-B7FE72461789","68C2CE7C-DB25-4911-B12A-8B0F69C8D46D","90DDEE95-E7B6-4FF5-A7B7-ED97BA99A75C","30A9C6A1-50FD-465E-8884-1FB4E887AA22","133E5671-4F3E-44AE-BA1C-8A23DFEFE806","8133C4D1-E8E5-4C70-BD30-B8BD467A97F0","19DEC829-053A-427D-B74C-447D4BFBBADF","F60BE0BE-9E27-495C-AD10-1BF48EF87F21","A6CCEFD6-C07E-4D58-8DBB-91E5EE97252D","483FFC15-78C6-43CA-88E9-D64C2C67C242","8A45C54F-F39A-477F-B6AB-21DD1002C37F"],"id":"5A06DB94-EDEC-4A1F-9BD6-9E95F49E8498","eventHandler":{"__isSmartRef__":true,"id":1446},"_ClipMode":"visible","droppingEnabled":true,"halosEnabled":true,"owner":{"__isSmartRef__":true,"id":162},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"dragStartPoint":null,"originalTargetExtent":null,"_Rotation":0,"_Scale":1.0000000000000009,"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1447},"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","_Position":"lively.pt(310.4,440.4)"},"1442":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":1443},{"__isSmartRef__":true,"id":1444},{"__isSmartRef__":true,"id":1445}],"_BorderWidth":0,"_BorderColor":null,"_NodeClass":["path"],"_NodeId":"morph-e34b7a68-766e-4db7-a7e3-e4ee8a7079ac","__serializedExpressions__":["_Position","_Extent","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(-1.0,-1.0)","_Extent":"lively.pt(15.0,15.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(204,204,204)"},"1443":{"isAbsolute":true,"x":14,"y":0,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1444":{"isAbsolute":true,"x":14,"y":14,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1445":{"isAbsolute":true,"x":0,"y":14,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"1446":{"morph":{"__isSmartRef__":true,"id":1441},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1447":{"onDragStart":{"__isSmartRef__":true,"id":1448},"onDrag":{"__isSmartRef__":true,"id":1455},"onDragEnd":{"__isSmartRef__":true,"id":1462}},"1448":{"varMapping":{"__isSmartRef__":true,"id":1449},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":1454},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1449":{"this":{"__isSmartRef__":true,"id":1441},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1450}},"1450":{"$super":{"__isSmartRef__":true,"id":1451}},"1451":{"varMapping":{"__isSmartRef__":true,"id":1452},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world) \n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1453},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1452":{"obj":{"__isSmartRef__":true,"id":1441},"name":"onDragStart"},"1453":{},"1454":{},"1455":{"varMapping":{"__isSmartRef__":true,"id":1456},"source":"function onDrag(evt) {\n var moveDelta = evt.mousePoint.subPt(this.dragStartPoint)\n if (evt.isShiftDown()) {\n var maxDelta = Math.max(moveDelta.x, moveDelta.y);\n\t moveDelta = pt(maxDelta, maxDelta);\n };\n this.owner.setExtent(this.originalTargetExtent.addPt(moveDelta));\n this.align(this.bounds().bottomRight(), this.owner.getExtent());\n }","funcProperties":{"__isSmartRef__":true,"id":1461},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1456":{"this":{"__isSmartRef__":true,"id":1441},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1457}},"1457":{"$super":{"__isSmartRef__":true,"id":1458}},"1458":{"varMapping":{"__isSmartRef__":true,"id":1459},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world) \n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1460},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1459":{"obj":{"__isSmartRef__":true,"id":1441},"name":"onDrag"},"1460":{},"1461":{},"1462":{"varMapping":{"__isSmartRef__":true,"id":1463},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n }","funcProperties":{"__isSmartRef__":true,"id":1468},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1463":{"this":{"__isSmartRef__":true,"id":1441},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1464}},"1464":{"$super":{"__isSmartRef__":true,"id":1465}},"1465":{"varMapping":{"__isSmartRef__":true,"id":1466},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world) \n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1467},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1466":{"obj":{"__isSmartRef__":true,"id":1441},"name":"onDragEnd"},"1467":{},"1468":{},"1469":{"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_NodeClass":["window"],"_NodeId":"morph-cd7bcb08-eb4a-48cd-952b-53a1eaeb23d0","__serializedExpressions__":["_Padding","_Extent"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Padding":"lively.rect(0,0,0,0)","_Extent":"lively.pt(324.4,454.4)"},"1470":{"morph":{"__isSmartRef__":true,"id":162},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1471":{"adjustForNewBounds":true},"1472":{"partsSpaceName":"PartsBin/Tools","comment":"A tool for inspecting an object. Very similar to the ObjectExplorer but a lot faster and with the ability to edit primitives, filter properties and display inheritance.","migrationLevel":4,"partName":"ObjectInspector","changes":[{"__isSmartRef__":true,"id":1473},{"__isSmartRef__":true,"id":1475},{"__isSmartRef__":true,"id":1477},{"__isSmartRef__":true,"id":1479},{"__isSmartRef__":true,"id":1481},{"__isSmartRef__":true,"id":1483},{"__isSmartRef__":true,"id":1485},{"__isSmartRef__":true,"id":1487},{"__isSmartRef__":true,"id":1489},{"__isSmartRef__":true,"id":1491},{"__isSmartRef__":true,"id":1493},{"__isSmartRef__":true,"id":1495},{"__isSmartRef__":true,"id":1497},{"__isSmartRef__":true,"id":1499},{"__isSmartRef__":true,"id":1501},{"__isSmartRef__":true,"id":1503},{"__isSmartRef__":true,"id":1505},{"__isSmartRef__":true,"id":1507},{"__isSmartRef__":true,"id":1509},{"__isSmartRef__":true,"id":1511},{"__isSmartRef__":true,"id":1513},{"__isSmartRef__":true,"id":1515},{"__isSmartRef__":true,"id":1517},{"__isSmartRef__":true,"id":1519},{"__isSmartRef__":true,"id":1521},{"__isSmartRef__":true,"id":1523},{"__isSmartRef__":true,"id":1525},{"__isSmartRef__":true,"id":1527},{"__isSmartRef__":true,"id":1529},{"__isSmartRef__":true,"id":1531},{"__isSmartRef__":true,"id":1533},{"__isSmartRef__":true,"id":1535},{"__isSmartRef__":true,"id":1537},{"__isSmartRef__":true,"id":1539},{"__isSmartRef__":true,"id":1541},{"__isSmartRef__":true,"id":1543}],"lastModifiedDate":{"__isSmartRef__":true,"id":1545},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1473":{"date":{"__isSmartRef__":true,"id":1474},"author":"cschuster","message":"reset scale to 1","id":"44F3B7C5-4880-4E0C-8E1A-B0CE032E7594"},"1474":{"isSerializedDate":true,"string":"Fri Jun 29 2012 01:21:07 GMT+0200 (CEST)"},"1475":{"date":{"__isSmartRef__":true,"id":1476},"author":"cschuster","message":"fixed a bug with addScript","id":"A00EC8E9-2F93-46E8-A1C8-22588B39BC11"},"1476":{"isSerializedDate":true,"string":"Thu Jun 14 2012 20:36:16 GMT+0200 (CEST)"},"1477":{"date":{"__isSmartRef__":true,"id":1478},"author":"cschuster","message":"copying should now work","id":"334BC443-5022-4C12-8DE0-532B479A57DC"},"1478":{"isSerializedDate":true,"string":"Thu Jun 14 2012 20:14:16 GMT+0200 (CEST)"},"1479":{"date":{"__isSmartRef__":true,"id":1480},"author":"cschuster","message":"changed submorphs to morphs.","id":"F6E05A4D-23B9-4CCA-88DE-C14C35965B13"},"1480":{"isSerializedDate":true,"string":"Wed Jun 06 2012 18:56:30 GMT+0200 (CEST)"},"1481":{"date":{"__isSmartRef__":true,"id":1482},"author":"cschuster","message":"inheritance now works as well","id":"B6153C82-028D-48C6-A949-B9C16246B7E1"},"1482":{"isSerializedDate":true,"string":"Wed Jun 06 2012 03:06:06 GMT+0200 (CEST)"},"1483":{"date":{"__isSmartRef__":true,"id":1484},"author":"cschuster","message":"started work on displaying inherited properties.","id":"E2D295AA-8DC9-41F0-8699-3B4294FFA5A2"},"1484":{"isSerializedDate":true,"string":"Wed Jun 06 2012 02:46:47 GMT+0200 (CEST)"},"1485":{"date":{"__isSmartRef__":true,"id":1486},"author":"cschuster","message":"fixed handling of null and undefined values","id":"25FAB4E6-9A70-4E32-8213-1098C6A9C363"},"1486":{"isSerializedDate":true,"string":"Wed Jun 06 2012 01:57:14 GMT+0200 (CEST)"},"1487":{"date":{"__isSmartRef__":true,"id":1488},"author":"cschuster","message":"fixed problem with boolean values","id":"ECA8BC3D-29C8-4779-B61C-27DC9E13B7E2"},"1488":{"isSerializedDate":true,"string":"Wed Jun 06 2012 01:25:44 GMT+0200 (CEST)"},"1489":{"date":{"__isSmartRef__":true,"id":1490},"author":"cschuster","message":"fixed bug with primitive values.","id":"6B05214C-6EE6-4F5C-BA36-DFC15578CB12"},"1490":{"isSerializedDate":true,"string":"Wed Jun 06 2012 01:14:48 GMT+0200 (CEST)"},"1491":{"date":{"__isSmartRef__":true,"id":1492},"author":"cschuster","message":"better updating for collapsed items","id":"A37C0C9B-1F7F-49D9-BC86-CA97E05C812D"},"1492":{"isSerializedDate":true,"string":"Wed Jun 06 2012 01:12:20 GMT+0200 (CEST)"},"1493":{"date":{"__isSmartRef__":true,"id":1494},"author":"cschuster","message":"removed filter for inherited properties","id":"CABABBD4-BABE-4D47-8EBF-CED45960532B"},"1494":{"isSerializedDate":true,"string":"Wed Jun 06 2012 00:10:42 GMT+0200 (CEST)"},"1495":{"date":{"__isSmartRef__":true,"id":1496},"author":"cschuster","message":"editing of strings, numbers and boolean values","id":"CE0C9588-EB85-4390-B51B-BC51AA154F11"},"1496":{"isSerializedDate":true,"string":"Tue Jun 05 2012 02:33:18 GMT+0200 (CEST)"},"1497":{"date":{"__isSmartRef__":true,"id":1498},"author":"cschuster","message":"improved text editing","id":"C9950198-82AF-47B8-9BDF-04C7457FE598"},"1498":{"isSerializedDate":true,"string":"Tue Jun 05 2012 01:18:18 GMT+0200 (CEST)"},"1499":{"date":{"__isSmartRef__":true,"id":1500},"author":"cschuster","message":"now supports editing of string properties","id":"4DEA5157-6A26-46F4-AE4E-59112855E522"},"1500":{"isSerializedDate":true,"string":"Tue Jun 05 2012 00:44:13 GMT+0200 (CEST)"},"1501":{"date":{"__isSmartRef__":true,"id":1502},"author":"cschuster","message":"updating should work now. still needs some testing","id":"381E10DB-4391-42E3-A790-D5EAEFF2758B"},"1502":{"isSerializedDate":true,"string":"Sat Jun 02 2012 03:12:07 GMT+0200 (CEST)"},"1503":{"date":{"__isSmartRef__":true,"id":1504},"author":"cschuster","message":"initial commit. still a lot of work to do.","id":"258D3B7C-8C70-4B34-962F-E2F39A8596D5"},"1504":{"isSerializedDate":true,"string":"Tue May 29 2012 23:52:57 GMT+0200 (CEST)"},"1505":{"date":{"__isSmartRef__":true,"id":1506},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"1506":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"1507":{"date":{"__isSmartRef__":true,"id":1508},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"1508":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"1509":{"date":{"__isSmartRef__":true,"id":1510},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"1510":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"1511":{"date":{"__isSmartRef__":true,"id":1512},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"1512":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"1513":{"date":{"__isSmartRef__":true,"id":1514},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"1514":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"1515":{"date":{"__isSmartRef__":true,"id":1516},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"1516":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"1517":{"date":{"__isSmartRef__":true,"id":1518},"author":"cschuster","message":"faster updating","id":"BDDADEB8-FC7D-4240-965D-5C2A8106884F"},"1518":{"isSerializedDate":true,"string":"Mon Jun 04 2012 20:44:27 GMT+0200 (CEST)"},"1519":{"date":{"__isSmartRef__":true,"id":1520},"author":"cschuster","message":"now uses hidden root node","id":"63608436-F5CC-4F6C-8C9E-C4039CAAE8AE"},"1520":{"isSerializedDate":true,"string":"Mon Jun 04 2012 22:34:53 GMT+0200 (CEST)"},"1521":{"date":{"__isSmartRef__":true,"id":1522},"author":"cschuster","message":"now supports filtering","id":"CF4D534E-10BF-4727-8FB1-25AB7DEC6E48"},"1522":{"isSerializedDate":true,"string":"Tue Jun 05 2012 23:45:47 GMT+0200 (CEST)"},"1523":{"date":{"__isSmartRef__":true,"id":1524},"author":"cschuster","message":"fixed the problems with the unspecified filter.","id":"745E611A-B941-4FFD-9759-E982062C03B8"},"1524":{"isSerializedDate":true,"string":"Tue Jun 05 2012 23:51:21 GMT+0200 (CEST)"},"1525":{"date":{"__isSmartRef__":true,"id":1526},"author":"cschuster","message":"fixed bug with prototype of primitives.","id":"A3F3EEC4-36E8-4EC8-B2DD-8B899A275990"},"1526":{"isSerializedDate":true,"string":"Wed Jun 06 2012 03:16:23 GMT+0200 (CEST)"},"1527":{"date":{"__isSmartRef__":true,"id":1528},"author":"jenslincke","message":"added \"show submorphs\" to filter options","id":"93060C3D-5BE0-46C0-BF46-58B7C287E037"},"1528":{"isSerializedDate":true,"string":"Wed Jun 06 2012 10:58:01 GMT+0200 (CEST)"},"1529":{"date":{"__isSmartRef__":true,"id":1530},"author":"cschuster","message":"fixed description string for namespaces and clipping mode.","id":"9CB238CB-7069-43DE-81BD-C09B61A2BDB4"},"1530":{"isSerializedDate":true,"string":"Thu Jun 07 2012 00:19:24 GMT+0200 (CEST)"},"1531":{"date":{"__isSmartRef__":true,"id":1532},"author":"cschuster","message":"hopefully fixed the addScript bug","id":"D040A117-4200-449C-A492-272C4498EDBD"},"1532":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:12:43 GMT+0200 (CEST)"},"1533":{"date":{"__isSmartRef__":true,"id":1534},"author":"cschuster","message":"fixed serialization of filter","id":"776E7AFA-1299-4714-94C4-F514AC2A255C"},"1534":{"isSerializedDate":true,"string":"Fri Jun 15 2012 00:21:17 GMT+0200 (CEST)"},"1535":{"date":{"__isSmartRef__":true,"id":1536},"author":"cschuster","message":"fixed string describe bug","id":"B38CA966-52EB-420C-84FB-ADED1B421078"},"1536":{"isSerializedDate":true,"string":"Mon Jul 02 2012 23:16:55 GMT+0200 (CEST)"},"1537":{"date":{"__isSmartRef__":true,"id":1538},"author":"cschuster","message":"do not serialize prototype data","id":"E13FF3C5-692E-45E6-81DA-497C4F1A252B"},"1538":{"isSerializedDate":true,"string":"Wed Aug 01 2012 04:04:41 GMT+0200 (CEST)"},"1539":{"date":{"__isSmartRef__":true,"id":1540},"author":"jenslincke","message":"changed layout and added splitter","id":"98C76CEA-1AFB-4802-B245-BC542286BE14"},"1540":{"isSerializedDate":true,"string":"Thu Nov 22 2012 14:43:32 GMT+0100 (CET)"},"1541":{"date":{"__isSmartRef__":true,"id":1542},"author":"jenslincke","message":"changed layout and added splitter","id":"8CE1DD54-E7A9-40CC-9761-30F2B4D4191C"},"1542":{"isSerializedDate":true,"string":"Thu Nov 22 2012 14:43:37 GMT+0100 (CET)"},"1543":{"date":{"__isSmartRef__":true,"id":1544},"author":"jenslincke","message":"new title bar","id":"24261115-4F33-48D7-9E6F-D580EF3CB481"},"1544":{"isSerializedDate":true,"string":"Thu Nov 29 2012 09:58:12 GMT+0100 (CET)"},"1545":{"isSerializedDate":true,"string":"Thu Nov 29 2012 09:55:17 GMT+0100 (CET)"},"1546":{"inspect":{"__isSmartRef__":true,"id":1547}},"1547":{"varMapping":{"__isSmartRef__":true,"id":1548},"source":"function inspect(obj) {\n this.get('ObjectInspector').inspect(obj);\n}","funcProperties":{"__isSmartRef__":true,"id":1549},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1548":{"this":{"__isSmartRef__":true,"id":162}},"1549":{"timestamp":{"__isSmartRef__":true,"id":1550},"user":"cschuster","tags":[]},"1550":{"isSerializedDate":true,"string":"Fri Jun 01 2012 21:32:31 GMT+0200 (CEST)"},"1551":{"submorphs":[{"__isSmartRef__":true,"id":1552},{"__isSmartRef__":true,"id":2323},{"__isSmartRef__":true,"id":2348},{"__isSmartRef__":true,"id":2373},{"__isSmartRef__":true,"id":2421}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2446},"eventHandler":{"__isSmartRef__":true,"id":2447},"_ClipMode":"visible","derivationIds":[],"id":"7A6F523E-0E17-499D-B851-DD917FDDCA40","droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":2448},"LK2":true,"__serializedExpressions__":["_Position","contentOffset","prevDragPos"],"targetMorph":{"__isSmartRef__":true,"id":1552},"reframeHandle":{"__isSmartRef__":true,"id":2421},"bottomReframeHandle":{"__isSmartRef__":true,"id":2323},"rightReframeHandle":{"__isSmartRef__":true,"id":2348},"titleBar":{"__isSmartRef__":true,"id":2373},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":0},"highlighted":false,"prevScroll":[0,0],"isBeingDragged":false,"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withoutLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(69.0,75.7)","contentOffset":"lively.pt(4.0,22.0)","prevDragPos":"lively.pt(572.1,78.2)"},"1552":{"submorphs":[{"__isSmartRef__":true,"id":1553},{"__isSmartRef__":true,"id":2290},{"__isSmartRef__":true,"id":2301},{"__isSmartRef__":true,"id":1667},{"__isSmartRef__":true,"id":1822},{"__isSmartRef__":true,"id":1854},{"__isSmartRef__":true,"id":1885},{"__isSmartRef__":true,"id":2312},{"__isSmartRef__":true,"id":1917},{"__isSmartRef__":true,"id":1562},{"__isSmartRef__":true,"id":1576},{"__isSmartRef__":true,"id":1590},{"__isSmartRef__":true,"id":1604},{"__isSmartRef__":true,"id":1618},{"__isSmartRef__":true,"id":1632},{"__isSmartRef__":true,"id":1646}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2320},"eventHandler":{"__isSmartRef__":true,"id":2321},"_ClipMode":"visible","derivationIds":[],"id":"196CEA3F-3441-441F-A3B9-6CAC7C97CBDE","droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":2322},"__serializedExpressions__":["_Position"],"locationPane":{"__isSmartRef__":true,"id":1553},"codeBaseDirBtn":{"__isSmartRef__":true,"id":2290},"localDirBtn":{"__isSmartRef__":true,"id":2301},"Pane1":{"__isSmartRef__":true,"id":1667},"Pane2":{"__isSmartRef__":true,"id":1822},"Pane3":{"__isSmartRef__":true,"id":1854},"Pane4":{"__isSmartRef__":true,"id":1885},"midResizer":{"__isSmartRef__":true,"id":2312},"sourcePane":{"__isSmartRef__":true,"id":1917},"ownerWidget":{"__isSmartRef__":true,"id":1560},"owner":{"__isSmartRef__":true,"id":1551},"ownerApp":{"__isSmartRef__":true,"id":1560},"targetURL":{"__isSmartRef__":true,"id":1665},"prevScroll":[0,0],"__LivelyClassName__":"lively.ide.BrowserPanel","__SourceModuleName__":"Global.lively.ide.BrowserFramework","_Position":"lively.pt(4.0,22.0)"},"1553":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1554},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1555}],"eventHandler":{"__isSmartRef__":true,"id":1557},"_ClipMode":"hidden","derivationIds":[],"id":"8E666D9D-4690-4027-92BE-02B42F580D16","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1552},"isInputLine":true,"layout":{"__isSmartRef__":true,"id":1558},"noEval":true,"styleClass":["Browser_locationInput"],"attributeConnections":[{"__isSmartRef__":true,"id":1559}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(102,102,102)","_Position":"lively.pt(0.0,0.0)"},"1554":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(656.0,16.5)","_Padding":"lively.rect(1,1,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(255,255,255)"},"1555":{"style":{"__isSmartRef__":true,"id":1556},"chunkOwner":{"__isSmartRef__":true,"id":1553},"_id":"_855","storedString":"http://www.lively-kernel.org/repository/webwerkstatt/core/apps/","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1556":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1557":{"morph":{"__isSmartRef__":true,"id":1553},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1558":{"scaleVertical":true,"scaleHorizontal":true},"1559":{"sourceObj":{"__isSmartRef__":true,"id":1553},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"setTargetURL","varMapping":{"__isSmartRef__":true,"id":2289},"converterString":"function (value) { return new URL(value) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1560":{"buttonCommands":[{"__isSmartRef__":true,"id":1561},{"__isSmartRef__":true,"id":1575},{"__isSmartRef__":true,"id":1589},{"__isSmartRef__":true,"id":1603},{"__isSmartRef__":true,"id":1617},{"__isSmartRef__":true,"id":1631},{"__isSmartRef__":true,"id":1645}],"RootFilters":[{"__isSmartRef__":true,"id":1659}],"Pane1Filters":[{"__isSmartRef__":true,"id":1660},{"__isSmartRef__":true,"id":1661}],"Pane2Filters":[{"__isSmartRef__":true,"id":1662}],"Pane3Filters":[{"__isSmartRef__":true,"id":1663}],"Pane4Filters":[{"__isSmartRef__":true,"id":1664}],"evaluate":true,"targetURL":{"__isSmartRef__":true,"id":1665},"panel":{"__isSmartRef__":true,"id":1552},"attributeConnections":[{"__isSmartRef__":true,"id":1666},{"__isSmartRef__":true,"id":1821},{"__isSmartRef__":true,"id":1853},{"__isSmartRef__":true,"id":1884},{"__isSmartRef__":true,"id":1916},{"__isSmartRef__":true,"id":2282}],"SourceString":"module('apps.ObjectGrapher').requires().toRun(function() {\n\nObject.subclass('apps.ObjectGrapher.Grapher',\n\n'initialization', {\n initialize: function() {\n this.nodes = [];\n this.edges = [];\n }\n},\n'accessing', {\n getNodes: function() {\n return this.nodes;\n },\n getEdges: function() {\n return this.edges;\n }\n},\n'traversing', {\n traverseVars: function(vars, depth) {\n for(var v in vars) {\n this.nodes.push(vars[v]);\n this.traverseObjAt(this.nodes.length - 1, 0, depth);\n }\n },\n traverseObjAt: function(obj_idx, currentDepth, maxDepth) {\n if(currentDepth > maxDepth) {\n return;\n }\n var obj = this.nodes[obj_idx];\n for(var v in obj) {\n if(this.isStandardProperty(obj, v)) {\n this.nodes.push(obj[v]);\n this.edges.push({source: obj_idx, target: this.nodes.length - 1, weight: 1});\n this.traverseObjAt(this.nodes.length - 1, currentDepth + 1, maxDepth);\n }\n }\n },\n isStandardProperty: function(obj, prop) {\n return obj.hasOwnProperty(prop) &&\n startsAlphaNum.test(prop) &&\n !Object.isFunction(obj[prop]);\n }\n\n});\n}) // end of module","sourceString":"module('apps.ObjectGrapher').requires().toRun(function() {\n\nObject.subclass('apps.ObjectGrapher.Grapher',\n\n'initialization', {\n initialize: function() {\n this.nodes = [];\n this.edges = [];\n }\n},\n'accessing', {\n getNodes: function() {\n return this.nodes;\n },\n getEdges: function() {\n return this.edges;\n }\n},\n'traversing', {\n traverseVars: function(vars, depth) {\n for(var v in vars) {\n this.nodes.push(vars[v]);\n this.traverseObjAt(this.nodes.length - 1, 0, depth);\n }\n },\n traverseObjAt: function(obj_idx, currentDepth, maxDepth) {\n if(currentDepth > maxDepth) {\n return;\n }\n var obj = this.nodes[obj_idx];\n for(var v in obj) {\n if(this.isStandardProperty(obj, v)) {\n this.nodes.push(obj[v]);\n this.edges.push({source: obj_idx, target: this.nodes.length - 1, weight: 1});\n this.traverseObjAt(this.nodes.length - 1, currentDepth + 1, maxDepth);\n }\n }\n },\n isStandardProperty: function(obj, prop) {\n return obj.hasOwnProperty(prop) &&\n startsAlphaNum.test(prop) &&\n !Object.isFunction(obj[prop]);\n }\n\n});\n}) // end of module","doNotSerialize":["$$targetURL"],"doNotCopyProperties":["$$targetURL"],"_rootNode":{"__isSmartRef__":true,"id":1672},"Pane1Selection":{"__isSmartRef__":true,"id":1716},"pane1Selection":{"__isSmartRef__":true,"id":1716},"Pane2Selection":null,"pane2Selection":null,"Pane3Selection":null,"pane3Selection":null,"Pane4Selection":null,"pane4Selection":null,"Pane4Content":["-----"],"Pane3Content":["-----"],"Pane2Content":[{"__isSmartRef__":true,"id":1824}],"Pane1Content":[{"__isSmartRef__":true,"id":1669},{"__isSmartRef__":true,"id":1743},{"__isSmartRef__":true,"id":1744},{"__isSmartRef__":true,"id":1745},{"__isSmartRef__":true,"id":1746},{"__isSmartRef__":true,"id":1747},{"__isSmartRef__":true,"id":1748},{"__isSmartRef__":true,"id":1749},{"__isSmartRef__":true,"id":1750},{"__isSmartRef__":true,"id":1751},{"__isSmartRef__":true,"id":1752},{"__isSmartRef__":true,"id":1753},{"__isSmartRef__":true,"id":1754},{"__isSmartRef__":true,"id":1755},{"__isSmartRef__":true,"id":1756},{"__isSmartRef__":true,"id":1757},{"__isSmartRef__":true,"id":1758},{"__isSmartRef__":true,"id":1759},{"__isSmartRef__":true,"id":1760},{"__isSmartRef__":true,"id":1761},{"__isSmartRef__":true,"id":1762},{"__isSmartRef__":true,"id":1763},{"__isSmartRef__":true,"id":1764},{"__isSmartRef__":true,"id":1765},{"__isSmartRef__":true,"id":1766},{"__isSmartRef__":true,"id":1767},{"__isSmartRef__":true,"id":1768},{"__isSmartRef__":true,"id":1769},{"__isSmartRef__":true,"id":1770},{"__isSmartRef__":true,"id":1771},{"__isSmartRef__":true,"id":1772},{"__isSmartRef__":true,"id":1773},{"__isSmartRef__":true,"id":1774},{"__isSmartRef__":true,"id":1775},{"__isSmartRef__":true,"id":1776},{"__isSmartRef__":true,"id":1777},{"__isSmartRef__":true,"id":1778},{"__isSmartRef__":true,"id":1779},{"__isSmartRef__":true,"id":1780},{"__isSmartRef__":true,"id":1781},{"__isSmartRef__":true,"id":1782},{"__isSmartRef__":true,"id":1783},{"__isSmartRef__":true,"id":1784},{"__isSmartRef__":true,"id":1785},{"__isSmartRef__":true,"id":1786},{"__isSmartRef__":true,"id":1787},{"__isSmartRef__":true,"id":1788},{"__isSmartRef__":true,"id":1789},{"__isSmartRef__":true,"id":1790},{"__isSmartRef__":true,"id":1791},{"__isSmartRef__":true,"id":1792},{"__isSmartRef__":true,"id":1793},{"__isSmartRef__":true,"id":1794}],"view":{"__isSmartRef__":true,"id":1551},"Pane1Menu":[["Add to world requirements"],["remove"],["reparse"],["-------"],["open in text editor"],["show versions"],["diff versions"],["get module part"]],"Pane2Menu":[["-------"],["add class"],["add object extension"],["add layer"],["open in text editor"],["show versions"],["diff versions"],["get module part"]],"Pane3Menu":[["-------"],["open in text editor"],["show versions"],["diff versions"],["get module part"]],"currentModuleName":"apps.ObjectGrapher","Pane4Menu":[["senders"],["implementors"],["add sibling below"],["remove"],["show browse ref"],["-------"],["add method"]],"_statusMorph":{"__isSmartRef__":true,"id":2284},"__LivelyClassName__":"lively.ide.SystemBrowser","__SourceModuleName__":"Global.lively.ide.SystemCodeBrowser"},"1561":{"browser":{"__isSmartRef__":true,"id":1560},"button":{"__isSmartRef__":true,"id":1562},"__LivelyClassName__":"lively.ide.AddNewFileCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1562":{"submorphs":[{"__isSmartRef__":true,"id":1563}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1568},"eventHandler":{"__isSmartRef__":true,"id":1569},"_ClipMode":"visible","derivationIds":[],"id":"51052542-F2A9-42A2-9906-BA1341286D81","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1563},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1561},"attributeConnections":[{"__isSmartRef__":true,"id":1570},{"__isSmartRef__":true,"id":1572}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1552},"layout":{"__isSmartRef__":true,"id":1574},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,220.0)"},"1563":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1564},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1565}],"eventHandler":{"__isSmartRef__":true,"id":1567},"_ClipMode":"hidden","derivationIds":[],"id":"6B99CA40-D8D1-41E6-9122-D99657809847","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1562},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1564":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1565":{"style":{"__isSmartRef__":true,"id":1566},"chunkOwner":{"__isSmartRef__":true,"id":1563},"_id":"_823","storedString":"Add module","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1566":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1567":{"morph":{"__isSmartRef__":true,"id":1563},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1568":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1569":{"morph":{"__isSmartRef__":true,"id":1562},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1570":{"sourceObj":{"__isSmartRef__":true,"id":1562},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1561},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1571},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1571":{"source":{"__isSmartRef__":true,"id":1562},"target":{"__isSmartRef__":true,"id":1561}},"1572":{"sourceObj":{"__isSmartRef__":true,"id":1562},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1562},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1573},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1573":{"source":{"__isSmartRef__":true,"id":1562},"target":{"__isSmartRef__":true,"id":1562}},"1574":{"scaleVertical":true,"scaleHorizontal":true},"1575":{"browser":{"__isSmartRef__":true,"id":1560},"button":{"__isSmartRef__":true,"id":1576},"__LivelyClassName__":"lively.ide.AllModulesLoadCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1576":{"submorphs":[{"__isSmartRef__":true,"id":1577}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1582},"eventHandler":{"__isSmartRef__":true,"id":1583},"_ClipMode":"visible","derivationIds":[],"id":"D9FB3970-3154-483E-B702-4ED33D4FD73B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1577},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1575},"attributeConnections":[{"__isSmartRef__":true,"id":1584},{"__isSmartRef__":true,"id":1586}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1552},"layout":{"__isSmartRef__":true,"id":1588},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(117.1,220.0)"},"1577":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1578},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1579}],"eventHandler":{"__isSmartRef__":true,"id":1581},"_ClipMode":"hidden","derivationIds":[],"id":"81860260-7F73-41AC-B67D-C9018BF0273B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1576},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1578":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1579":{"style":{"__isSmartRef__":true,"id":1580},"chunkOwner":{"__isSmartRef__":true,"id":1577},"_id":"_826","storedString":"Load all","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1580":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1581":{"morph":{"__isSmartRef__":true,"id":1577},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1582":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1583":{"morph":{"__isSmartRef__":true,"id":1576},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1584":{"sourceObj":{"__isSmartRef__":true,"id":1576},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1575},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1585},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1585":{"source":{"__isSmartRef__":true,"id":1576},"target":{"__isSmartRef__":true,"id":1575}},"1586":{"sourceObj":{"__isSmartRef__":true,"id":1576},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1576},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1587},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1587":{"source":{"__isSmartRef__":true,"id":1576},"target":{"__isSmartRef__":true,"id":1576}},"1588":{"scaleVertical":true,"scaleHorizontal":true},"1589":{"browser":{"__isSmartRef__":true,"id":1560},"button":{"__isSmartRef__":true,"id":1590},"__LivelyClassName__":"lively.ide.ShowLineNumbersCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1590":{"submorphs":[{"__isSmartRef__":true,"id":1591}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1596},"eventHandler":{"__isSmartRef__":true,"id":1597},"_ClipMode":"visible","derivationIds":[],"id":"F86BD3E7-C03A-4D60-8EF5-47CD66F694D3","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1591},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1589},"attributeConnections":[{"__isSmartRef__":true,"id":1598},{"__isSmartRef__":true,"id":1600}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1552},"layout":{"__isSmartRef__":true,"id":1602},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(234.3,220.0)"},"1591":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1592},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1593}],"eventHandler":{"__isSmartRef__":true,"id":1595},"_ClipMode":"hidden","derivationIds":[],"id":"C8C683B5-A9BB-423A-A5DF-E504FE2E83FA","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1590},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1592":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1593":{"style":{"__isSmartRef__":true,"id":1594},"chunkOwner":{"__isSmartRef__":true,"id":1591},"_id":"_829","storedString":"LineNo","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1594":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1595":{"morph":{"__isSmartRef__":true,"id":1591},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1596":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1597":{"morph":{"__isSmartRef__":true,"id":1590},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1598":{"sourceObj":{"__isSmartRef__":true,"id":1590},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1589},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1599},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1599":{"source":{"__isSmartRef__":true,"id":1590},"target":{"__isSmartRef__":true,"id":1589}},"1600":{"sourceObj":{"__isSmartRef__":true,"id":1590},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1590},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1601},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1601":{"source":{"__isSmartRef__":true,"id":1590},"target":{"__isSmartRef__":true,"id":1590}},"1602":{"scaleVertical":true,"scaleHorizontal":true},"1603":{"browser":{"__isSmartRef__":true,"id":1560},"button":{"__isSmartRef__":true,"id":1604},"__LivelyClassName__":"lively.ide.ParserDebugCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1604":{"submorphs":[{"__isSmartRef__":true,"id":1605}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1610},"eventHandler":{"__isSmartRef__":true,"id":1611},"_ClipMode":"visible","derivationIds":[],"id":"EA74DE21-3D91-4070-91F6-11C960B225BD","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1605},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1603},"attributeConnections":[{"__isSmartRef__":true,"id":1612},{"__isSmartRef__":true,"id":1614}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1552},"layout":{"__isSmartRef__":true,"id":1616},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(351.4,220.0)"},"1605":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1606},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1607}],"eventHandler":{"__isSmartRef__":true,"id":1609},"_ClipMode":"hidden","derivationIds":[],"id":"99E06F50-787D-4584-B9D4-C3F9F69D3BEC","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1604},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1606":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1607":{"style":{"__isSmartRef__":true,"id":1608},"chunkOwner":{"__isSmartRef__":true,"id":1605},"_id":"_832","storedString":"Dbg errors is off","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1608":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1609":{"morph":{"__isSmartRef__":true,"id":1605},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1610":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1611":{"morph":{"__isSmartRef__":true,"id":1604},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1612":{"sourceObj":{"__isSmartRef__":true,"id":1604},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1603},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1613},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1613":{"source":{"__isSmartRef__":true,"id":1604},"target":{"__isSmartRef__":true,"id":1603}},"1614":{"sourceObj":{"__isSmartRef__":true,"id":1604},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1604},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1615},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1615":{"source":{"__isSmartRef__":true,"id":1604},"target":{"__isSmartRef__":true,"id":1604}},"1616":{"scaleVertical":true,"scaleHorizontal":true},"1617":{"browser":{"__isSmartRef__":true,"id":1560},"button":{"__isSmartRef__":true,"id":1618},"__LivelyClassName__":"lively.ide.EvaluateCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1618":{"submorphs":[{"__isSmartRef__":true,"id":1619}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1624},"eventHandler":{"__isSmartRef__":true,"id":1625},"_ClipMode":"visible","derivationIds":[],"id":"27B4980A-55DB-4D11-87D8-BF41FDC57F86","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1619},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1617},"attributeConnections":[{"__isSmartRef__":true,"id":1626},{"__isSmartRef__":true,"id":1628}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1552},"layout":{"__isSmartRef__":true,"id":1630},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(468.6,220.0)"},"1619":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1620},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1621}],"eventHandler":{"__isSmartRef__":true,"id":1623},"_ClipMode":"hidden","derivationIds":[],"id":"0BB6A4BA-F273-43BF-BB98-5D6D5858E22E","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1618},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1620":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1621":{"style":{"__isSmartRef__":true,"id":1622},"chunkOwner":{"__isSmartRef__":true,"id":1619},"_id":"_835","storedString":"Eval on","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1622":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1623":{"morph":{"__isSmartRef__":true,"id":1619},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1624":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1625":{"morph":{"__isSmartRef__":true,"id":1618},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1626":{"sourceObj":{"__isSmartRef__":true,"id":1618},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1617},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1627},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1627":{"source":{"__isSmartRef__":true,"id":1618},"target":{"__isSmartRef__":true,"id":1617}},"1628":{"sourceObj":{"__isSmartRef__":true,"id":1618},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1618},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1629},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1629":{"source":{"__isSmartRef__":true,"id":1618},"target":{"__isSmartRef__":true,"id":1618}},"1630":{"scaleVertical":true,"scaleHorizontal":true},"1631":{"browser":{"__isSmartRef__":true,"id":1560},"button":{"__isSmartRef__":true,"id":1632},"__LivelyClassName__":"lively.ide.SortCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1632":{"submorphs":[{"__isSmartRef__":true,"id":1633}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1638},"eventHandler":{"__isSmartRef__":true,"id":1639},"_ClipMode":"visible","derivationIds":[],"id":"4F0336EE-2E07-4F1E-8DAF-E2D0A82D8DC5","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1633},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1631},"attributeConnections":[{"__isSmartRef__":true,"id":1640},{"__isSmartRef__":true,"id":1642}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1552},"layout":{"__isSmartRef__":true,"id":1644},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(585.7,220.0)"},"1633":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1634},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1635}],"eventHandler":{"__isSmartRef__":true,"id":1637},"_ClipMode":"hidden","derivationIds":[],"id":"350675EC-A786-4515-9FB5-5F32B42333BD","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1632},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1634":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1635":{"style":{"__isSmartRef__":true,"id":1636},"chunkOwner":{"__isSmartRef__":true,"id":1633},"_id":"_838","storedString":"Sort","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1636":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1637":{"morph":{"__isSmartRef__":true,"id":1633},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1638":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1639":{"morph":{"__isSmartRef__":true,"id":1632},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1640":{"sourceObj":{"__isSmartRef__":true,"id":1632},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1631},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1641":{"source":{"__isSmartRef__":true,"id":1632},"target":{"__isSmartRef__":true,"id":1631}},"1642":{"sourceObj":{"__isSmartRef__":true,"id":1632},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1632},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1643},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1643":{"source":{"__isSmartRef__":true,"id":1632},"target":{"__isSmartRef__":true,"id":1632}},"1644":{"scaleVertical":true,"scaleHorizontal":true},"1645":{"browser":{"__isSmartRef__":true,"id":1560},"button":{"__isSmartRef__":true,"id":1646},"__LivelyClassName__":"lively.ide.ViewSourceCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1646":{"submorphs":[{"__isSmartRef__":true,"id":1647}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1652},"eventHandler":{"__isSmartRef__":true,"id":1653},"_ClipMode":"visible","derivationIds":[],"id":"8218F28D-BAE8-4285-9106-06E731946210","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1647},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1645},"attributeConnections":[{"__isSmartRef__":true,"id":1654},{"__isSmartRef__":true,"id":1656}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1552},"layout":{"__isSmartRef__":true,"id":1658},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(702.9,220.0)"},"1647":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1648},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1649}],"eventHandler":{"__isSmartRef__":true,"id":1651},"_ClipMode":"hidden","derivationIds":[],"id":"37CB18E5-91A0-4F9F-810C-15D48C58F881","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1646},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1648":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1649":{"style":{"__isSmartRef__":true,"id":1650},"chunkOwner":{"__isSmartRef__":true,"id":1647},"_id":"_841","storedString":"View as...","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1650":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1651":{"morph":{"__isSmartRef__":true,"id":1647},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1652":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1653":{"morph":{"__isSmartRef__":true,"id":1646},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1654":{"sourceObj":{"__isSmartRef__":true,"id":1646},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1645},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1655},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1655":{"source":{"__isSmartRef__":true,"id":1646},"target":{"__isSmartRef__":true,"id":1645}},"1656":{"sourceObj":{"__isSmartRef__":true,"id":1646},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1646},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1657},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1657":{"source":{"__isSmartRef__":true,"id":1646},"target":{"__isSmartRef__":true,"id":1646}},"1658":{"scaleVertical":true,"scaleHorizontal":true},"1659":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1660":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1661":{"attributes":["isClassNode","isGrammarNode","isChangeNode","isFunctionNode","isObjectNode"],"__LivelyClassName__":"lively.ide.NodeTypeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1662":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1663":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1664":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1665":{"protocol":"http:","hostname":"www.lively-kernel.org","pathname":"/repository/webwerkstatt/core/apps/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1666":{"sourceObj":{"__isSmartRef__":true,"id":1560},"sourceAttrName":"setPane1Content","targetObj":{"__isSmartRef__":true,"id":1667},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":1820},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1667":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1668},"itemList":[{"__isSmartRef__":true,"id":1669},{"__isSmartRef__":true,"id":1743},{"__isSmartRef__":true,"id":1744},{"__isSmartRef__":true,"id":1745},{"__isSmartRef__":true,"id":1746},{"__isSmartRef__":true,"id":1747},{"__isSmartRef__":true,"id":1748},{"__isSmartRef__":true,"id":1749},{"__isSmartRef__":true,"id":1750},{"__isSmartRef__":true,"id":1751},{"__isSmartRef__":true,"id":1752},{"__isSmartRef__":true,"id":1753},{"__isSmartRef__":true,"id":1754},{"__isSmartRef__":true,"id":1755},{"__isSmartRef__":true,"id":1756},{"__isSmartRef__":true,"id":1757},{"__isSmartRef__":true,"id":1758},{"__isSmartRef__":true,"id":1759},{"__isSmartRef__":true,"id":1760},{"__isSmartRef__":true,"id":1761},{"__isSmartRef__":true,"id":1762},{"__isSmartRef__":true,"id":1763},{"__isSmartRef__":true,"id":1764},{"__isSmartRef__":true,"id":1765},{"__isSmartRef__":true,"id":1766},{"__isSmartRef__":true,"id":1767},{"__isSmartRef__":true,"id":1768},{"__isSmartRef__":true,"id":1769},{"__isSmartRef__":true,"id":1770},{"__isSmartRef__":true,"id":1771},{"__isSmartRef__":true,"id":1772},{"__isSmartRef__":true,"id":1773},{"__isSmartRef__":true,"id":1774},{"__isSmartRef__":true,"id":1775},{"__isSmartRef__":true,"id":1776},{"__isSmartRef__":true,"id":1777},{"__isSmartRef__":true,"id":1778},{"__isSmartRef__":true,"id":1779},{"__isSmartRef__":true,"id":1780},{"__isSmartRef__":true,"id":1781},{"__isSmartRef__":true,"id":1782},{"__isSmartRef__":true,"id":1783},{"__isSmartRef__":true,"id":1784},{"__isSmartRef__":true,"id":1785},{"__isSmartRef__":true,"id":1786},{"__isSmartRef__":true,"id":1787},{"__isSmartRef__":true,"id":1788},{"__isSmartRef__":true,"id":1789},{"__isSmartRef__":true,"id":1790},{"__isSmartRef__":true,"id":1791},{"__isSmartRef__":true,"id":1792},{"__isSmartRef__":true,"id":1793},{"__isSmartRef__":true,"id":1794}],"eventHandler":{"__isSmartRef__":true,"id":1795},"derivationIds":[],"id":"C4E7D6F6-80CA-4EB6-A2C6-FC938AC2155D","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":{"__isSmartRef__":true,"id":1716},"selectedLineNo":40,"owner":{"__isSmartRef__":true,"id":1552},"layout":{"__isSmartRef__":true,"id":1796},"attributeConnections":[{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1801},{"__isSmartRef__":true,"id":1803}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"prevScroll":[0,576],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1805},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,16.5)"},"1668":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"1669":{"isListItem":true,"string":"dwarfcassowary/","value":{"__isSmartRef__":true,"id":1670}},"1670":{"target":{"__isSmartRef__":true,"id":1671},"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"localName":"dwarfcassowary/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1671":{"protocol":"http:","hostname":"www.lively-kernel.org","pathname":"/repository/webwerkstatt/core/apps/dwarfcassowary/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1672":{"target":{"__isSmartRef__":true,"id":1673},"browser":{"__isSmartRef__":true,"id":1560},"parent":null,"allFiles":["apps/DiffMatchPatch.js","apps/cssParser.js","apps/d3.js","apps/CouchDB.js","apps/MindMaps.js","apps/ActivityStream.js","apps/Dropbox.js","apps/jquery.js","apps/NewPaper.js","apps/JSINQ.js","apps/AtomFeed.js","apps/Grid.js","apps/md5.js","apps/JSONPath.js","apps/d3Interface.js","apps/StaticDocGeneration.js","apps/ColorParser.js","apps/Clock.js","apps/BinFileReader.js","apps/sha1.js","apps/XMLPrettifier.js","apps/wikipedia.js","apps/Less.js","apps/ProtoVisInterface.js","apps/FooBar.js","apps/PDF.js","apps/ElasticSearch.js","apps/CodeUpdate.js","apps/Notifier.js","apps/ObjectGrapher.js","apps/Neo4j.js","apps/OAuth.js","apps/SocketIO.js","apps/constraintjs.js","apps/Markdown.js","apps/Base64.js","apps/chatbot.js","apps/DateFormat.js","apps/OData.js","apps/LivelySearching.js","apps/CDB.js","apps/MathJaxSupport.js","apps/Trac.js","apps/benchmark.js","apps/CDBBrowser.js","apps/GraphLayout.js","apps/zz_Ark.js","apps/Zip.js"],"subNamespacePaths":[{"__isSmartRef__":true,"id":1674},{"__isSmartRef__":true,"id":1671},{"__isSmartRef__":true,"id":1675}],"parentNamespacePath":{"__isSmartRef__":true,"id":1676},"_childNodes":[{"__isSmartRef__":true,"id":1670},{"__isSmartRef__":true,"id":1677},{"__isSmartRef__":true,"id":1678},{"__isSmartRef__":true,"id":1679},{"__isSmartRef__":true,"id":1680},{"__isSmartRef__":true,"id":1681},{"__isSmartRef__":true,"id":1682},{"__isSmartRef__":true,"id":1683},{"__isSmartRef__":true,"id":1684},{"__isSmartRef__":true,"id":1685},{"__isSmartRef__":true,"id":1686},{"__isSmartRef__":true,"id":1687},{"__isSmartRef__":true,"id":1688},{"__isSmartRef__":true,"id":1689},{"__isSmartRef__":true,"id":1690},{"__isSmartRef__":true,"id":1691},{"__isSmartRef__":true,"id":1692},{"__isSmartRef__":true,"id":1693},{"__isSmartRef__":true,"id":1694},{"__isSmartRef__":true,"id":1695},{"__isSmartRef__":true,"id":1696},{"__isSmartRef__":true,"id":1697},{"__isSmartRef__":true,"id":1698},{"__isSmartRef__":true,"id":1699},{"__isSmartRef__":true,"id":1700},{"__isSmartRef__":true,"id":1701},{"__isSmartRef__":true,"id":1702},{"__isSmartRef__":true,"id":1703},{"__isSmartRef__":true,"id":1704},{"__isSmartRef__":true,"id":1705},{"__isSmartRef__":true,"id":1706},{"__isSmartRef__":true,"id":1707},{"__isSmartRef__":true,"id":1708},{"__isSmartRef__":true,"id":1709},{"__isSmartRef__":true,"id":1710},{"__isSmartRef__":true,"id":1711},{"__isSmartRef__":true,"id":1712},{"__isSmartRef__":true,"id":1713},{"__isSmartRef__":true,"id":1714},{"__isSmartRef__":true,"id":1715},{"__isSmartRef__":true,"id":1716},{"__isSmartRef__":true,"id":1730},{"__isSmartRef__":true,"id":1731},{"__isSmartRef__":true,"id":1732},{"__isSmartRef__":true,"id":1733},{"__isSmartRef__":true,"id":1734},{"__isSmartRef__":true,"id":1735},{"__isSmartRef__":true,"id":1736},{"__isSmartRef__":true,"id":1737},{"__isSmartRef__":true,"id":1738},{"__isSmartRef__":true,"id":1739},{"__isSmartRef__":true,"id":1740},{"__isSmartRef__":true,"id":1741}],"__LivelyClassName__":"lively.ide.SourceControlNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1673":{"__LivelyClassName__":"AnotherSourceDatabase","__SourceModuleName__":"Global.lively.ide.SourceDatabase"},"1674":{"protocol":"http:","hostname":"www.lively-kernel.org","pathname":"/repository/webwerkstatt/core/apps/tests/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1675":{"protocol":"http:","hostname":"www.lively-kernel.org","pathname":"/repository/webwerkstatt/core/apps/google/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1676":{"protocol":"http:","hostname":"www.lively-kernel.org","pathname":"/repository/webwerkstatt/core/apps/../","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1677":{"target":{"__isSmartRef__":true,"id":1675},"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"localName":"google/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1678":{"target":{"__isSmartRef__":true,"id":1674},"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"localName":"tests/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1679":{"target":{"__isSmartRef__":true,"id":1676},"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"localName":"../","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1680":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/ActivityStream.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1681":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/AtomFeed.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1682":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/Base64.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1683":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/benchmark.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1684":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/BinFileReader.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1685":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/CDB.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1686":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/CDBBrowser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1687":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/chatbot.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1688":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/Clock.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1689":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/CodeUpdate.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1690":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/ColorParser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1691":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/constraintjs.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1692":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/CouchDB.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1693":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/cssParser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1694":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/d3.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1695":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/d3Interface.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1696":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/DateFormat.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1697":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/DiffMatchPatch.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1698":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/Dropbox.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1699":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/ElasticSearch.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1700":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/FooBar.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1701":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/GraphLayout.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1702":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/Grid.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1703":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/jquery.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1704":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/JSINQ.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1705":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/JSONPath.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1706":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/Less.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1707":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/LivelySearching.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1708":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/Markdown.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1709":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/MathJaxSupport.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1710":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/md5.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1711":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/MindMaps.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1712":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/Neo4j.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1713":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/NewPaper.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1714":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/Notifier.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1715":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/OAuth.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1716":{"target":{"__isSmartRef__":true,"id":1717},"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/ObjectGrapher.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1717":{"name":"apps.ObjectGrapher","type":"moduleDef","startIndex":0,"stopIndex":1276,"fileName":"apps/ObjectGrapher.js","_subElements":[{"__isSmartRef__":true,"id":1718},{"__isSmartRef__":true,"id":1719}],"sourceControl":{"__isSmartRef__":true,"id":1673},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1718":{"name":null,"type":"comment","startIndex":59,"stopIndex":59,"fileName":"apps/ObjectGrapher.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1673},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1719":{"name":"apps.ObjectGrapher.Grapher","type":"klassDef","startIndex":60,"stopIndex":1257,"fileName":"apps/ObjectGrapher.js","_subElements":[{"__isSmartRef__":true,"id":1720},{"__isSmartRef__":true,"id":1723},{"__isSmartRef__":true,"id":1725},{"__isSmartRef__":true,"id":1726},{"__isSmartRef__":true,"id":1728},{"__isSmartRef__":true,"id":1729}],"sourceControl":{"__isSmartRef__":true,"id":1673},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":1721},{"__isSmartRef__":true,"id":1724},{"__isSmartRef__":true,"id":1727}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1720":{"name":"initialize","type":"propertyDef","startIndex":127,"stopIndex":211,"fileName":"apps/ObjectGrapher.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1673},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1721},"className":"apps.ObjectGrapher.Grapher","_owner":{"__isSmartRef__":true,"id":1722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1721":{"name":"initialization","type":"categoryDef","startIndex":107,"stopIndex":213,"fileName":"apps/ObjectGrapher.js","_subElements":[{"__isSmartRef__":true,"id":1720}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1722":{"name":"apps.ObjectGrapher.Grapher","type":"klassDef","startIndex":60,"stopIndex":1054,"fileName":"apps/ObjectGrapher.js","_subElements":[{"__isSmartRef__":true,"id":1720},{"__isSmartRef__":true,"id":1723},{"__isSmartRef__":true,"id":1725},{"__isSmartRef__":true,"id":1726},{"__isSmartRef__":true,"id":1728},{"__isSmartRef__":true,"id":1729}],"sourceControl":{"__isSmartRef__":true,"id":1673},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":1721},{"__isSmartRef__":true,"id":1724},{"__isSmartRef__":true,"id":1727}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1723":{"name":"getNodes","type":"propertyDef","startIndex":230,"stopIndex":289,"fileName":"apps/ObjectGrapher.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1673},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1724},"className":"apps.ObjectGrapher.Grapher","_owner":{"__isSmartRef__":true,"id":1722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1724":{"name":"accessing","type":"categoryDef","startIndex":215,"stopIndex":352,"fileName":"apps/ObjectGrapher.js","_subElements":[{"__isSmartRef__":true,"id":1723},{"__isSmartRef__":true,"id":1725}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1725":{"name":"getEdges","type":"propertyDef","startIndex":291,"stopIndex":350,"fileName":"apps/ObjectGrapher.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1673},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1724},"className":"apps.ObjectGrapher.Grapher","_owner":{"__isSmartRef__":true,"id":1722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1726":{"name":"traverseVars","type":"propertyDef","startIndex":370,"stopIndex":559,"fileName":"apps/ObjectGrapher.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1673},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1727},"className":"apps.ObjectGrapher.Grapher","_owner":{"__isSmartRef__":true,"id":1722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1727":{"name":"traversing","type":"categoryDef","startIndex":354,"stopIndex":1051,"fileName":"apps/ObjectGrapher.js","_subElements":[{"__isSmartRef__":true,"id":1726},{"__isSmartRef__":true,"id":1728},{"__isSmartRef__":true,"id":1729}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1728":{"name":"traverseObjAt","type":"propertyDef","startIndex":561,"stopIndex":1060,"fileName":"apps/ObjectGrapher.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1673},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1727},"className":"apps.ObjectGrapher.Grapher","_owner":{"__isSmartRef__":true,"id":1722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1729":{"name":"isStandardProperty","type":"propertyDef","startIndex":1062,"stopIndex":1253,"fileName":"apps/ObjectGrapher.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1673},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1727},"className":"apps.ObjectGrapher.Grapher","_owner":{"__isSmartRef__":true,"id":1722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1730":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/OData.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1731":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/PDF.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1732":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/ProtoVisInterface.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1733":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/sha1.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1734":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/SocketIO.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1735":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/StaticDocGeneration.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1736":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/Trac.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1737":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/wikipedia.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1738":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/XMLPrettifier.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1739":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/Zip.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1740":{"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1672},"moduleName":"apps/zz_Ark.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1741":{"target":{"__isSmartRef__":true,"id":1742},"browser":{"__isSmartRef__":true,"id":1560},"__LivelyClassName__":"lively.ide.ChangeSetNode","__SourceModuleName__":"Global.lively.ide.LocalBrowser"},"1742":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"1743":{"isListItem":true,"string":"google/","value":{"__isSmartRef__":true,"id":1677}},"1744":{"isListItem":true,"string":"tests/","value":{"__isSmartRef__":true,"id":1678}},"1745":{"isListItem":true,"string":"../","value":{"__isSmartRef__":true,"id":1679}},"1746":{"isListItem":true,"string":"ActivityStream.js (not parsed)","value":{"__isSmartRef__":true,"id":1680}},"1747":{"isListItem":true,"string":"AtomFeed.js (not parsed)","value":{"__isSmartRef__":true,"id":1681}},"1748":{"isListItem":true,"string":"Base64.js (not parsed)","value":{"__isSmartRef__":true,"id":1682}},"1749":{"isListItem":true,"string":"benchmark.js (not parsed)","value":{"__isSmartRef__":true,"id":1683}},"1750":{"isListItem":true,"string":"BinFileReader.js (not parsed)","value":{"__isSmartRef__":true,"id":1684}},"1751":{"isListItem":true,"string":"CDB.js (not parsed)","value":{"__isSmartRef__":true,"id":1685}},"1752":{"isListItem":true,"string":"CDBBrowser.js (not parsed)","value":{"__isSmartRef__":true,"id":1686}},"1753":{"isListItem":true,"string":"chatbot.js (not parsed)","value":{"__isSmartRef__":true,"id":1687}},"1754":{"isListItem":true,"string":"Clock.js (not parsed)","value":{"__isSmartRef__":true,"id":1688}},"1755":{"isListItem":true,"string":"CodeUpdate.js (not parsed)","value":{"__isSmartRef__":true,"id":1689}},"1756":{"isListItem":true,"string":"ColorParser.js (not parsed)","value":{"__isSmartRef__":true,"id":1690}},"1757":{"isListItem":true,"string":"constraintjs.js (not parsed)","value":{"__isSmartRef__":true,"id":1691}},"1758":{"isListItem":true,"string":"CouchDB.js (not parsed)","value":{"__isSmartRef__":true,"id":1692}},"1759":{"isListItem":true,"string":"cssParser.js (not parsed)","value":{"__isSmartRef__":true,"id":1693}},"1760":{"isListItem":true,"string":"d3.js (not parsed)","value":{"__isSmartRef__":true,"id":1694}},"1761":{"isListItem":true,"string":"d3Interface.js (not parsed)","value":{"__isSmartRef__":true,"id":1695}},"1762":{"isListItem":true,"string":"DateFormat.js (not parsed)","value":{"__isSmartRef__":true,"id":1696}},"1763":{"isListItem":true,"string":"DiffMatchPatch.js (not parsed)","value":{"__isSmartRef__":true,"id":1697}},"1764":{"isListItem":true,"string":"Dropbox.js (not parsed)","value":{"__isSmartRef__":true,"id":1698}},"1765":{"isListItem":true,"string":"ElasticSearch.js (not parsed)","value":{"__isSmartRef__":true,"id":1699}},"1766":{"isListItem":true,"string":"FooBar.js (not parsed)","value":{"__isSmartRef__":true,"id":1700}},"1767":{"isListItem":true,"string":"GraphLayout.js (not parsed)","value":{"__isSmartRef__":true,"id":1701}},"1768":{"isListItem":true,"string":"Grid.js (not parsed)","value":{"__isSmartRef__":true,"id":1702}},"1769":{"isListItem":true,"string":"jquery.js (not parsed)","value":{"__isSmartRef__":true,"id":1703}},"1770":{"isListItem":true,"string":"JSINQ.js (not parsed)","value":{"__isSmartRef__":true,"id":1704}},"1771":{"isListItem":true,"string":"JSONPath.js (not parsed)","value":{"__isSmartRef__":true,"id":1705}},"1772":{"isListItem":true,"string":"Less.js (not parsed)","value":{"__isSmartRef__":true,"id":1706}},"1773":{"isListItem":true,"string":"LivelySearching.js (not parsed)","value":{"__isSmartRef__":true,"id":1707}},"1774":{"isListItem":true,"string":"Markdown.js (not parsed)","value":{"__isSmartRef__":true,"id":1708}},"1775":{"isListItem":true,"string":"MathJaxSupport.js (not parsed)","value":{"__isSmartRef__":true,"id":1709}},"1776":{"isListItem":true,"string":"md5.js (not parsed)","value":{"__isSmartRef__":true,"id":1710}},"1777":{"isListItem":true,"string":"MindMaps.js (not parsed)","value":{"__isSmartRef__":true,"id":1711}},"1778":{"isListItem":true,"string":"Neo4j.js (not parsed)","value":{"__isSmartRef__":true,"id":1712}},"1779":{"isListItem":true,"string":"NewPaper.js (not parsed)","value":{"__isSmartRef__":true,"id":1713}},"1780":{"isListItem":true,"string":"Notifier.js (not parsed)","value":{"__isSmartRef__":true,"id":1714}},"1781":{"isListItem":true,"string":"OAuth.js (not parsed)","value":{"__isSmartRef__":true,"id":1715}},"1782":{"isListItem":true,"string":"ObjectGrapher.js","value":{"__isSmartRef__":true,"id":1716}},"1783":{"isListItem":true,"string":"OData.js (not parsed)","value":{"__isSmartRef__":true,"id":1730}},"1784":{"isListItem":true,"string":"PDF.js (not parsed)","value":{"__isSmartRef__":true,"id":1731}},"1785":{"isListItem":true,"string":"ProtoVisInterface.js (not parsed)","value":{"__isSmartRef__":true,"id":1732}},"1786":{"isListItem":true,"string":"sha1.js (not parsed)","value":{"__isSmartRef__":true,"id":1733}},"1787":{"isListItem":true,"string":"SocketIO.js (not parsed)","value":{"__isSmartRef__":true,"id":1734}},"1788":{"isListItem":true,"string":"StaticDocGeneration.js (not parsed)","value":{"__isSmartRef__":true,"id":1735}},"1789":{"isListItem":true,"string":"Trac.js (not parsed)","value":{"__isSmartRef__":true,"id":1736}},"1790":{"isListItem":true,"string":"wikipedia.js (not parsed)","value":{"__isSmartRef__":true,"id":1737}},"1791":{"isListItem":true,"string":"XMLPrettifier.js (not parsed)","value":{"__isSmartRef__":true,"id":1738}},"1792":{"isListItem":true,"string":"Zip.js (not parsed)","value":{"__isSmartRef__":true,"id":1739}},"1793":{"isListItem":true,"string":"zz_Ark.js (not parsed)","value":{"__isSmartRef__":true,"id":1740}},"1794":{"isListItem":true,"string":"Local code","value":{"__isSmartRef__":true,"id":1741}},"1795":{"morph":{"__isSmartRef__":true,"id":1667},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1796":{"scaleVertical":true,"scaleHorizontal":true},"1797":{"sourceObj":{"__isSmartRef__":true,"id":1667},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"setPane1Selection","varMapping":{"__isSmartRef__":true,"id":1798},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1798":{"source":{"__isSmartRef__":true,"id":1667},"target":{"__isSmartRef__":true,"id":1560}},"1799":{"sourceObj":{"__isSmartRef__":true,"id":1667},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane1Selection","varMapping":{"__isSmartRef__":true,"id":1800},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1800":{"source":{"__isSmartRef__":true,"id":1667},"target":{"__isSmartRef__":true,"id":1560}},"1801":{"sourceObj":{"__isSmartRef__":true,"id":1667},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane1Content","varMapping":{"__isSmartRef__":true,"id":1802},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1802":{"source":{"__isSmartRef__":true,"id":1667},"target":{"__isSmartRef__":true,"id":1560}},"1803":{"sourceObj":{"__isSmartRef__":true,"id":1667},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane1Menu","varMapping":{"__isSmartRef__":true,"id":1804},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1804":{"source":{"__isSmartRef__":true,"id":1667},"target":{"__isSmartRef__":true,"id":1560}},"1805":{"onDownPressed":{"__isSmartRef__":true,"id":1806},"onUpPressed":{"__isSmartRef__":true,"id":1813}},"1806":{"varMapping":{"__isSmartRef__":true,"id":1807},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1812},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1807":{"this":{"__isSmartRef__":true,"id":1667},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1808}},"1808":{"$super":{"__isSmartRef__":true,"id":1809}},"1809":{"varMapping":{"__isSmartRef__":true,"id":1810},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1811},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1810":{"obj":{"__isSmartRef__":true,"id":1667},"name":"onDownPressed"},"1811":{},"1812":{},"1813":{"varMapping":{"__isSmartRef__":true,"id":1814},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1819},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1814":{"this":{"__isSmartRef__":true,"id":1667},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1815}},"1815":{"$super":{"__isSmartRef__":true,"id":1816}},"1816":{"varMapping":{"__isSmartRef__":true,"id":1817},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1818},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1817":{"obj":{"__isSmartRef__":true,"id":1667},"name":"onUpPressed"},"1818":{},"1819":{},"1820":{"source":{"__isSmartRef__":true,"id":1560},"target":{"__isSmartRef__":true,"id":1667}},"1821":{"sourceObj":{"__isSmartRef__":true,"id":1560},"sourceAttrName":"setPane2Content","targetObj":{"__isSmartRef__":true,"id":1822},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":1852},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1822":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1823},"itemList":[{"__isSmartRef__":true,"id":1824}],"eventHandler":{"__isSmartRef__":true,"id":1826},"derivationIds":[],"id":"8B1A5664-525E-4BE9-9653-C23D8BC12974","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":{"__isSmartRef__":true,"id":1827},"selectedLineNo":0,"owner":{"__isSmartRef__":true,"id":1552},"layout":{"__isSmartRef__":true,"id":1828},"attributeConnections":[{"__isSmartRef__":true,"id":1829},{"__isSmartRef__":true,"id":1831},{"__isSmartRef__":true,"id":1833},{"__isSmartRef__":true,"id":1835}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1837},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(205.0,16.5)"},"1823":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"1824":{"isListItem":true,"string":"apps.ObjectGrapher.Grapher","value":{"__isSmartRef__":true,"id":1825}},"1825":{"target":{"__isSmartRef__":true,"id":1719},"browser":{"__isSmartRef__":true,"id":1560},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1826":{"morph":{"__isSmartRef__":true,"id":1822},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1827":{"target":{"__isSmartRef__":true,"id":1719},"browser":{"__isSmartRef__":true,"id":1560},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1828":{"scaleVertical":true,"scaleHorizontal":true},"1829":{"sourceObj":{"__isSmartRef__":true,"id":1822},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"setPane2Selection","varMapping":{"__isSmartRef__":true,"id":1830},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1830":{"source":{"__isSmartRef__":true,"id":1822},"target":{"__isSmartRef__":true,"id":1560}},"1831":{"sourceObj":{"__isSmartRef__":true,"id":1822},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane2Selection","varMapping":{"__isSmartRef__":true,"id":1832},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1832":{"source":{"__isSmartRef__":true,"id":1822},"target":{"__isSmartRef__":true,"id":1560}},"1833":{"sourceObj":{"__isSmartRef__":true,"id":1822},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane2Content","varMapping":{"__isSmartRef__":true,"id":1834},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1834":{"source":{"__isSmartRef__":true,"id":1822},"target":{"__isSmartRef__":true,"id":1560}},"1835":{"sourceObj":{"__isSmartRef__":true,"id":1822},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane2Menu","varMapping":{"__isSmartRef__":true,"id":1836},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1836":{"source":{"__isSmartRef__":true,"id":1822},"target":{"__isSmartRef__":true,"id":1560}},"1837":{"onDownPressed":{"__isSmartRef__":true,"id":1838},"onUpPressed":{"__isSmartRef__":true,"id":1845}},"1838":{"varMapping":{"__isSmartRef__":true,"id":1839},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1844},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1839":{"this":{"__isSmartRef__":true,"id":1822},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1840}},"1840":{"$super":{"__isSmartRef__":true,"id":1841}},"1841":{"varMapping":{"__isSmartRef__":true,"id":1842},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1843},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1842":{"obj":{"__isSmartRef__":true,"id":1822},"name":"onDownPressed"},"1843":{},"1844":{},"1845":{"varMapping":{"__isSmartRef__":true,"id":1846},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1851},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1846":{"this":{"__isSmartRef__":true,"id":1822},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1847}},"1847":{"$super":{"__isSmartRef__":true,"id":1848}},"1848":{"varMapping":{"__isSmartRef__":true,"id":1849},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1850},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1849":{"obj":{"__isSmartRef__":true,"id":1822},"name":"onUpPressed"},"1850":{},"1851":{},"1852":{"source":{"__isSmartRef__":true,"id":1560},"target":{"__isSmartRef__":true,"id":1822}},"1853":{"sourceObj":{"__isSmartRef__":true,"id":1560},"sourceAttrName":"setPane3Content","targetObj":{"__isSmartRef__":true,"id":1854},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":1883},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1854":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1855},"itemList":["-----"],"eventHandler":{"__isSmartRef__":true,"id":1856},"derivationIds":[],"id":"D4B1C125-FB65-4BA9-9A62-344B2248BCD9","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":{"__isSmartRef__":true,"id":1857},"selectedLineNo":0,"owner":{"__isSmartRef__":true,"id":1552},"layout":{"__isSmartRef__":true,"id":1859},"attributeConnections":[{"__isSmartRef__":true,"id":1860},{"__isSmartRef__":true,"id":1862},{"__isSmartRef__":true,"id":1864},{"__isSmartRef__":true,"id":1866}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1868},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(410.0,16.5)"},"1855":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"1856":{"morph":{"__isSmartRef__":true,"id":1854},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1857":{"target":{"__isSmartRef__":true,"id":1719},"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1858},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1858":{"target":{"__isSmartRef__":true,"id":1719},"browser":{"__isSmartRef__":true,"id":1560},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1859":{"scaleVertical":true,"scaleHorizontal":true},"1860":{"sourceObj":{"__isSmartRef__":true,"id":1854},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"setPane3Selection","varMapping":{"__isSmartRef__":true,"id":1861},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1861":{"source":{"__isSmartRef__":true,"id":1854},"target":{"__isSmartRef__":true,"id":1560}},"1862":{"sourceObj":{"__isSmartRef__":true,"id":1854},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane3Selection","varMapping":{"__isSmartRef__":true,"id":1863},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1863":{"source":{"__isSmartRef__":true,"id":1854},"target":{"__isSmartRef__":true,"id":1560}},"1864":{"sourceObj":{"__isSmartRef__":true,"id":1854},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane3Content","varMapping":{"__isSmartRef__":true,"id":1865},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1865":{"source":{"__isSmartRef__":true,"id":1854},"target":{"__isSmartRef__":true,"id":1560}},"1866":{"sourceObj":{"__isSmartRef__":true,"id":1854},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane3Menu","varMapping":{"__isSmartRef__":true,"id":1867},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1867":{"source":{"__isSmartRef__":true,"id":1854},"target":{"__isSmartRef__":true,"id":1560}},"1868":{"onDownPressed":{"__isSmartRef__":true,"id":1869},"onUpPressed":{"__isSmartRef__":true,"id":1876}},"1869":{"varMapping":{"__isSmartRef__":true,"id":1870},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1875},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1870":{"this":{"__isSmartRef__":true,"id":1854},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1871}},"1871":{"$super":{"__isSmartRef__":true,"id":1872}},"1872":{"varMapping":{"__isSmartRef__":true,"id":1873},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1874},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1873":{"obj":{"__isSmartRef__":true,"id":1854},"name":"onDownPressed"},"1874":{},"1875":{},"1876":{"varMapping":{"__isSmartRef__":true,"id":1877},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1882},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1877":{"this":{"__isSmartRef__":true,"id":1854},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1878}},"1878":{"$super":{"__isSmartRef__":true,"id":1879}},"1879":{"varMapping":{"__isSmartRef__":true,"id":1880},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1881},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1880":{"obj":{"__isSmartRef__":true,"id":1854},"name":"onUpPressed"},"1881":{},"1882":{},"1883":{"source":{"__isSmartRef__":true,"id":1560},"target":{"__isSmartRef__":true,"id":1854}},"1884":{"sourceObj":{"__isSmartRef__":true,"id":1560},"sourceAttrName":"setPane4Content","targetObj":{"__isSmartRef__":true,"id":1885},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":1915},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1885":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1886},"itemList":["-----"],"eventHandler":{"__isSmartRef__":true,"id":1887},"derivationIds":[],"id":"CFABC823-EF2A-4186-9E7F-2D04072E0DBA","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":{"__isSmartRef__":true,"id":1888},"selectedLineNo":4,"owner":{"__isSmartRef__":true,"id":1552},"layout":{"__isSmartRef__":true,"id":1891},"attributeConnections":[{"__isSmartRef__":true,"id":1892},{"__isSmartRef__":true,"id":1894},{"__isSmartRef__":true,"id":1896},{"__isSmartRef__":true,"id":1898}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1900},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(615.0,16.5)"},"1886":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"1887":{"morph":{"__isSmartRef__":true,"id":1885},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1888":{"target":{"__isSmartRef__":true,"id":1728},"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1889},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1889":{"target":{"__isSmartRef__":true,"id":1719},"browser":{"__isSmartRef__":true,"id":1560},"parent":{"__isSmartRef__":true,"id":1890},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1890":{"target":{"__isSmartRef__":true,"id":1719},"browser":{"__isSmartRef__":true,"id":1560},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1891":{"scaleVertical":true,"scaleHorizontal":true},"1892":{"sourceObj":{"__isSmartRef__":true,"id":1885},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"setPane4Selection","varMapping":{"__isSmartRef__":true,"id":1893},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1893":{"source":{"__isSmartRef__":true,"id":1885},"target":{"__isSmartRef__":true,"id":1560}},"1894":{"sourceObj":{"__isSmartRef__":true,"id":1885},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane4Selection","varMapping":{"__isSmartRef__":true,"id":1895},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1895":{"source":{"__isSmartRef__":true,"id":1885},"target":{"__isSmartRef__":true,"id":1560}},"1896":{"sourceObj":{"__isSmartRef__":true,"id":1885},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane4Content","varMapping":{"__isSmartRef__":true,"id":1897},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1897":{"source":{"__isSmartRef__":true,"id":1885},"target":{"__isSmartRef__":true,"id":1560}},"1898":{"sourceObj":{"__isSmartRef__":true,"id":1885},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"getPane4Menu","varMapping":{"__isSmartRef__":true,"id":1899},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1899":{"source":{"__isSmartRef__":true,"id":1885},"target":{"__isSmartRef__":true,"id":1560}},"1900":{"onDownPressed":{"__isSmartRef__":true,"id":1901},"onUpPressed":{"__isSmartRef__":true,"id":1908}},"1901":{"varMapping":{"__isSmartRef__":true,"id":1902},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1907},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1902":{"this":{"__isSmartRef__":true,"id":1885},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1903}},"1903":{"$super":{"__isSmartRef__":true,"id":1904}},"1904":{"varMapping":{"__isSmartRef__":true,"id":1905},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1906},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1905":{"obj":{"__isSmartRef__":true,"id":1885},"name":"onDownPressed"},"1906":{},"1907":{},"1908":{"varMapping":{"__isSmartRef__":true,"id":1909},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1914},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1909":{"this":{"__isSmartRef__":true,"id":1885},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1910}},"1910":{"$super":{"__isSmartRef__":true,"id":1911}},"1911":{"varMapping":{"__isSmartRef__":true,"id":1912},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1913},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1912":{"obj":{"__isSmartRef__":true,"id":1885},"name":"onUpPressed"},"1913":{},"1914":{},"1915":{"source":{"__isSmartRef__":true,"id":1560},"target":{"__isSmartRef__":true,"id":1885}},"1916":{"sourceObj":{"__isSmartRef__":true,"id":1560},"sourceAttrName":"setSourceString","targetObj":{"__isSmartRef__":true,"id":1917},"targetMethodName":"setTextString","varMapping":{"__isSmartRef__":true,"id":2281},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1917":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1918},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1919},{"__isSmartRef__":true,"id":1921},{"__isSmartRef__":true,"id":1923},{"__isSmartRef__":true,"id":1925},{"__isSmartRef__":true,"id":1927},{"__isSmartRef__":true,"id":1929},{"__isSmartRef__":true,"id":1931},{"__isSmartRef__":true,"id":1933},{"__isSmartRef__":true,"id":1935},{"__isSmartRef__":true,"id":1937},{"__isSmartRef__":true,"id":1939},{"__isSmartRef__":true,"id":1941},{"__isSmartRef__":true,"id":1943},{"__isSmartRef__":true,"id":1945},{"__isSmartRef__":true,"id":1947},{"__isSmartRef__":true,"id":1949},{"__isSmartRef__":true,"id":1951},{"__isSmartRef__":true,"id":1953},{"__isSmartRef__":true,"id":1955},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1961},{"__isSmartRef__":true,"id":1963},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1971},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1975},{"__isSmartRef__":true,"id":1977},{"__isSmartRef__":true,"id":1979},{"__isSmartRef__":true,"id":1981},{"__isSmartRef__":true,"id":1983},{"__isSmartRef__":true,"id":1985},{"__isSmartRef__":true,"id":1987},{"__isSmartRef__":true,"id":1989},{"__isSmartRef__":true,"id":1991},{"__isSmartRef__":true,"id":1993},{"__isSmartRef__":true,"id":1995},{"__isSmartRef__":true,"id":1997},{"__isSmartRef__":true,"id":1999},{"__isSmartRef__":true,"id":2001},{"__isSmartRef__":true,"id":2003},{"__isSmartRef__":true,"id":2005},{"__isSmartRef__":true,"id":2007},{"__isSmartRef__":true,"id":2009},{"__isSmartRef__":true,"id":2011},{"__isSmartRef__":true,"id":2013},{"__isSmartRef__":true,"id":2015},{"__isSmartRef__":true,"id":2017},{"__isSmartRef__":true,"id":2019},{"__isSmartRef__":true,"id":2021},{"__isSmartRef__":true,"id":2023},{"__isSmartRef__":true,"id":2025},{"__isSmartRef__":true,"id":2027},{"__isSmartRef__":true,"id":2029},{"__isSmartRef__":true,"id":2031},{"__isSmartRef__":true,"id":2033},{"__isSmartRef__":true,"id":2035},{"__isSmartRef__":true,"id":2037},{"__isSmartRef__":true,"id":2039},{"__isSmartRef__":true,"id":2041},{"__isSmartRef__":true,"id":2043},{"__isSmartRef__":true,"id":2045},{"__isSmartRef__":true,"id":2047},{"__isSmartRef__":true,"id":2049},{"__isSmartRef__":true,"id":2051},{"__isSmartRef__":true,"id":2053},{"__isSmartRef__":true,"id":2055},{"__isSmartRef__":true,"id":2057},{"__isSmartRef__":true,"id":2059},{"__isSmartRef__":true,"id":2061},{"__isSmartRef__":true,"id":2063},{"__isSmartRef__":true,"id":2065},{"__isSmartRef__":true,"id":2067},{"__isSmartRef__":true,"id":2069},{"__isSmartRef__":true,"id":2071},{"__isSmartRef__":true,"id":2073},{"__isSmartRef__":true,"id":2075},{"__isSmartRef__":true,"id":2077},{"__isSmartRef__":true,"id":2079},{"__isSmartRef__":true,"id":2081},{"__isSmartRef__":true,"id":2083},{"__isSmartRef__":true,"id":2085},{"__isSmartRef__":true,"id":2087},{"__isSmartRef__":true,"id":2089},{"__isSmartRef__":true,"id":2091},{"__isSmartRef__":true,"id":2093},{"__isSmartRef__":true,"id":2095},{"__isSmartRef__":true,"id":2097},{"__isSmartRef__":true,"id":2099},{"__isSmartRef__":true,"id":2101},{"__isSmartRef__":true,"id":2103},{"__isSmartRef__":true,"id":2105},{"__isSmartRef__":true,"id":2107},{"__isSmartRef__":true,"id":2109},{"__isSmartRef__":true,"id":2111},{"__isSmartRef__":true,"id":2113},{"__isSmartRef__":true,"id":2115},{"__isSmartRef__":true,"id":2117},{"__isSmartRef__":true,"id":2119},{"__isSmartRef__":true,"id":2121},{"__isSmartRef__":true,"id":2123},{"__isSmartRef__":true,"id":2125},{"__isSmartRef__":true,"id":2127},{"__isSmartRef__":true,"id":2129},{"__isSmartRef__":true,"id":2131},{"__isSmartRef__":true,"id":2133},{"__isSmartRef__":true,"id":2135},{"__isSmartRef__":true,"id":2137},{"__isSmartRef__":true,"id":2139},{"__isSmartRef__":true,"id":2141},{"__isSmartRef__":true,"id":2143},{"__isSmartRef__":true,"id":2145},{"__isSmartRef__":true,"id":2147},{"__isSmartRef__":true,"id":2149},{"__isSmartRef__":true,"id":2151},{"__isSmartRef__":true,"id":2153},{"__isSmartRef__":true,"id":2155},{"__isSmartRef__":true,"id":2157},{"__isSmartRef__":true,"id":2159},{"__isSmartRef__":true,"id":2161},{"__isSmartRef__":true,"id":2163},{"__isSmartRef__":true,"id":2165},{"__isSmartRef__":true,"id":2167},{"__isSmartRef__":true,"id":2169},{"__isSmartRef__":true,"id":2171},{"__isSmartRef__":true,"id":2173},{"__isSmartRef__":true,"id":2175},{"__isSmartRef__":true,"id":2177},{"__isSmartRef__":true,"id":2179},{"__isSmartRef__":true,"id":2181},{"__isSmartRef__":true,"id":2183},{"__isSmartRef__":true,"id":2185},{"__isSmartRef__":true,"id":2187},{"__isSmartRef__":true,"id":2189},{"__isSmartRef__":true,"id":2191},{"__isSmartRef__":true,"id":2193},{"__isSmartRef__":true,"id":2195},{"__isSmartRef__":true,"id":2197},{"__isSmartRef__":true,"id":2199},{"__isSmartRef__":true,"id":2201},{"__isSmartRef__":true,"id":2203},{"__isSmartRef__":true,"id":2205},{"__isSmartRef__":true,"id":2207},{"__isSmartRef__":true,"id":2209},{"__isSmartRef__":true,"id":2211},{"__isSmartRef__":true,"id":2213},{"__isSmartRef__":true,"id":2215},{"__isSmartRef__":true,"id":2217},{"__isSmartRef__":true,"id":2219},{"__isSmartRef__":true,"id":2221},{"__isSmartRef__":true,"id":2223},{"__isSmartRef__":true,"id":2225},{"__isSmartRef__":true,"id":2227},{"__isSmartRef__":true,"id":2229},{"__isSmartRef__":true,"id":2231},{"__isSmartRef__":true,"id":2233},{"__isSmartRef__":true,"id":2235},{"__isSmartRef__":true,"id":2237},{"__isSmartRef__":true,"id":2239},{"__isSmartRef__":true,"id":2241},{"__isSmartRef__":true,"id":2243},{"__isSmartRef__":true,"id":2245},{"__isSmartRef__":true,"id":2247},{"__isSmartRef__":true,"id":2249},{"__isSmartRef__":true,"id":2251},{"__isSmartRef__":true,"id":2253},{"__isSmartRef__":true,"id":2255},{"__isSmartRef__":true,"id":2257},{"__isSmartRef__":true,"id":2259},{"__isSmartRef__":true,"id":2261},{"__isSmartRef__":true,"id":2263},{"__isSmartRef__":true,"id":2265},{"__isSmartRef__":true,"id":2267},{"__isSmartRef__":true,"id":2269},{"__isSmartRef__":true,"id":2271},{"__isSmartRef__":true,"id":2273}],"eventHandler":{"__isSmartRef__":true,"id":2275},"_ClipMode":"auto","derivationIds":[],"id":"7E36C886-83C2-405B-AE29-653D8B4399A5","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Courier","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1552},"accessibleInInactiveWindow":true,"layout":{"__isSmartRef__":true,"id":2276},"noEval":true,"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":2277},{"__isSmartRef__":true,"id":2279}],"doNotSerialize":["$$textString","$$savedTextString","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors"],"doNotCopyProperties":["$$textString","$$savedTextString"],"textString":"module('apps.ObjectGrapher').requires().toRun(function() {\n\nObject.subclass('apps.ObjectGrapher.Grapher',\n\n'initialization', {\n initialize: function() {\n this.nodes = [];\n this.edges = [];\n }\n},\n'accessing', {\n getNodes: function() {\n return this.nodes;\n },\n getEdges: function() {\n return this.edges;\n }\n},\n'traversing', {\n traverseVars: function(vars, depth) {\n for(var v in vars) {\n this.nodes.push(vars[v]);\n this.traverseObjAt(this.nodes.length - 1, 0, depth);\n }\n },\n traverseObjAt: function(obj_idx, currentDepth, maxDepth) {\n if(currentDepth > maxDepth) {\n return;\n }\n var obj = this.nodes[obj_idx];\n for(var v in obj) {\n if(this.isStandardProperty(obj, v)) {\n this.nodes.push(obj[v]);\n this.edges.push({source: obj_idx, target: this.nodes.length - 1, weight: 1});\n this.traverseObjAt(this.nodes.length - 1, currentDepth + 1, maxDepth);\n }\n }\n },\n isStandardProperty: function(obj, prop) {\n return obj.hasOwnProperty(prop) &&\n startsAlphaNum.test(prop) &&\n !Object.isFunction(obj[prop]);\n }\n\n});\n}) // end of module","savedTextString":" traverseObjAt: function(obj_idx, currentDepth, maxDepth) {\n if(currentDepth > maxDepth) {\n return;\n }\n var obj = this.nodes[obj_idx];\n for(var v in obj) {\n if(this.isStandardProperty(obj, v)) {\n this.nodes.push(obj[v]);\n this.edges.push({source: obj_idx, target: this.nodes.length - 1, weight: 1});\n this.traverseObjAt(this.nodes.length - 1, currentDepth + 1, maxDepth);\n }\n }\n },","specialHighlighting":"topLevel","styleClass":["Browser_codePaneText"],"focusHaloBorderWidth":0.5,"_lastSyntaxHighlightTime":448,"charsReplaced":" ","lastFindLoc":482,"isBeingDragged":false,"priorSelectionRange":[155,155],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,247.5)"},"1918":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(820.0,302.5)","_Padding":"lively.rect(5,5,0,0)","_BorderColor":"Color.rgb(102,102,102)","_Fill":"Color.rgb(255,255,255)"},"1919":{"style":{"__isSmartRef__":true,"id":1920},"chunkOwner":{"__isSmartRef__":true,"id":1917},"_id":"_20228","storedString":"module","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1920":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(204,0,0)"},"1921":{"_id":"_20752","style":{"__isSmartRef__":true,"id":1922},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1922":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1923":{"_id":"_20230","style":{"__isSmartRef__":true,"id":1924},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"'apps.ObjectGrapher'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1924":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"1925":{"_id":"_20231","style":{"__isSmartRef__":true,"id":1926},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":").requires().toRun(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1926":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1927":{"_id":"_20232","style":{"__isSmartRef__":true,"id":1928},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1928":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"1929":{"_id":"_20233","style":{"__isSmartRef__":true,"id":1930},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"() ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1930":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1931":{"_id":"_20234","style":{"__isSmartRef__":true,"id":1932},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1932":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1933":{"_id":"_20235","style":{"__isSmartRef__":true,"id":1934},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1934":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1935":{"_id":"_20236","style":{"__isSmartRef__":true,"id":1936},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"Object","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1936":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"1937":{"_id":"_20237","style":{"__isSmartRef__":true,"id":1938},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1938":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1939":{"_id":"_20238","style":{"__isSmartRef__":true,"id":1940},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"subclass","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1940":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,128,128)"},"1941":{"_id":"_20239","style":{"__isSmartRef__":true,"id":1942},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1942":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1943":{"_id":"_20240","style":{"__isSmartRef__":true,"id":1944},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"'apps.ObjectGrapher.Grapher'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1944":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"1945":{"_id":"_20241","style":{"__isSmartRef__":true,"id":1946},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":",\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1946":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1947":{"_id":"_20242","style":{"__isSmartRef__":true,"id":1948},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"'initialization'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1948":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"1949":{"_id":"_20243","style":{"__isSmartRef__":true,"id":1950},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1950":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1951":{"_id":"_20244","style":{"__isSmartRef__":true,"id":1952},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1952":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1953":{"_id":"_20245","style":{"__isSmartRef__":true,"id":1954},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1954":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1955":{"_id":"_20246","style":{"__isSmartRef__":true,"id":1956},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"initialize:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1956":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"1957":{"_id":"_20247","style":{"__isSmartRef__":true,"id":1958},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1958":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1959":{"_id":"_20248","style":{"__isSmartRef__":true,"id":1960},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1960":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"1961":{"_id":"_20249","style":{"__isSmartRef__":true,"id":1962},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"() ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1962":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1963":{"_id":"_20250","style":{"__isSmartRef__":true,"id":1964},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1964":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1965":{"_id":"_20251","style":{"__isSmartRef__":true,"id":1966},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1966":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1967":{"_id":"_20252","style":{"__isSmartRef__":true,"id":1968},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1968":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"1969":{"_id":"_20253","style":{"__isSmartRef__":true,"id":1970},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".nodes = [];\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1970":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1971":{"_id":"_20254","style":{"__isSmartRef__":true,"id":1972},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1972":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"1973":{"_id":"_20255","style":{"__isSmartRef__":true,"id":1974},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".edges = [];\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1974":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1975":{"_id":"_20256","style":{"__isSmartRef__":true,"id":1976},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1976":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1977":{"_id":"_20257","style":{"__isSmartRef__":true,"id":1978},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1978":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1979":{"_id":"_20258","style":{"__isSmartRef__":true,"id":1980},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1980":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1981":{"_id":"_20259","style":{"__isSmartRef__":true,"id":1982},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":",\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1982":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1983":{"_id":"_20260","style":{"__isSmartRef__":true,"id":1984},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"'accessing'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1984":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"1985":{"_id":"_20261","style":{"__isSmartRef__":true,"id":1986},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1986":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1987":{"_id":"_20262","style":{"__isSmartRef__":true,"id":1988},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1988":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1989":{"_id":"_20263","style":{"__isSmartRef__":true,"id":1990},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1990":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1991":{"_id":"_20264","style":{"__isSmartRef__":true,"id":1992},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"getNodes:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1992":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"1993":{"_id":"_20265","style":{"__isSmartRef__":true,"id":1994},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1994":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1995":{"_id":"_20266","style":{"__isSmartRef__":true,"id":1996},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1996":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"1997":{"_id":"_20267","style":{"__isSmartRef__":true,"id":1998},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"() ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1998":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1999":{"_id":"_20268","style":{"__isSmartRef__":true,"id":2000},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2000":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2001":{"_id":"_20269","style":{"__isSmartRef__":true,"id":2002},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2002":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2003":{"_id":"_20270","style":{"__isSmartRef__":true,"id":2004},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2004":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2005":{"_id":"_20271","style":{"__isSmartRef__":true,"id":2006},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2006":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2007":{"_id":"_20272","style":{"__isSmartRef__":true,"id":2008},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2008":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2009":{"_id":"_20273","style":{"__isSmartRef__":true,"id":2010},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".nodes;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2010":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2011":{"_id":"_20274","style":{"__isSmartRef__":true,"id":2012},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2012":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2013":{"_id":"_20275","style":{"__isSmartRef__":true,"id":2014},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":",\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2014":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2015":{"_id":"_20276","style":{"__isSmartRef__":true,"id":2016},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"getEdges:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2016":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2017":{"_id":"_20277","style":{"__isSmartRef__":true,"id":2018},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2018":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2019":{"_id":"_20278","style":{"__isSmartRef__":true,"id":2020},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2020":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2021":{"_id":"_20279","style":{"__isSmartRef__":true,"id":2022},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"() ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2022":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2023":{"_id":"_20280","style":{"__isSmartRef__":true,"id":2024},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2024":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2025":{"_id":"_20281","style":{"__isSmartRef__":true,"id":2026},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2026":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2027":{"_id":"_20282","style":{"__isSmartRef__":true,"id":2028},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2028":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2029":{"_id":"_20283","style":{"__isSmartRef__":true,"id":2030},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2030":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2031":{"_id":"_20284","style":{"__isSmartRef__":true,"id":2032},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2032":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2033":{"_id":"_20285","style":{"__isSmartRef__":true,"id":2034},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".edges;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2034":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2035":{"_id":"_20286","style":{"__isSmartRef__":true,"id":2036},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2036":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2037":{"_id":"_20287","style":{"__isSmartRef__":true,"id":2038},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2038":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2039":{"_id":"_20288","style":{"__isSmartRef__":true,"id":2040},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2040":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2041":{"_id":"_20289","style":{"__isSmartRef__":true,"id":2042},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":",\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2042":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2043":{"_id":"_20290","style":{"__isSmartRef__":true,"id":2044},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"'traversing'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2044":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"2045":{"_id":"_20291","style":{"__isSmartRef__":true,"id":2046},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2046":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2047":{"_id":"_20292","style":{"__isSmartRef__":true,"id":2048},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2048":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2049":{"_id":"_20293","style":{"__isSmartRef__":true,"id":2050},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2050":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2051":{"_id":"_20294","style":{"__isSmartRef__":true,"id":2052},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"traverseVars:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2052":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2053":{"_id":"_20295","style":{"__isSmartRef__":true,"id":2054},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2054":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2055":{"_id":"_20296","style":{"__isSmartRef__":true,"id":2056},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2056":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2057":{"_id":"_20297","style":{"__isSmartRef__":true,"id":2058},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"(vars, depth) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2058":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2059":{"_id":"_20298","style":{"__isSmartRef__":true,"id":2060},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2060":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2061":{"_id":"_20299","style":{"__isSmartRef__":true,"id":2062},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2062":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2063":{"_id":"_20300","style":{"__isSmartRef__":true,"id":2064},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"for","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2064":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2065":{"_id":"_20301","style":{"__isSmartRef__":true,"id":2066},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2066":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2067":{"_id":"_20302","style":{"__isSmartRef__":true,"id":2068},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2068":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2069":{"_id":"_20303","style":{"__isSmartRef__":true,"id":2070},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" v ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2070":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2071":{"_id":"_20304","style":{"__isSmartRef__":true,"id":2072},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"in","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2072":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2073":{"_id":"_20305","style":{"__isSmartRef__":true,"id":2074},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" vars) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2074":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2075":{"_id":"_20306","style":{"__isSmartRef__":true,"id":2076},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2076":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2077":{"_id":"_20307","style":{"__isSmartRef__":true,"id":2078},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2078":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2079":{"_id":"_20308","style":{"__isSmartRef__":true,"id":2080},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2080":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2081":{"_id":"_20309","style":{"__isSmartRef__":true,"id":2082},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".nodes.push(vars[v]);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2082":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2083":{"_id":"_20310","style":{"__isSmartRef__":true,"id":2084},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2084":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2085":{"_id":"_20311","style":{"__isSmartRef__":true,"id":2086},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".traverseObjAt(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2086":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2087":{"_id":"_20312","style":{"__isSmartRef__":true,"id":2088},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2088":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2089":{"_id":"_20313","style":{"__isSmartRef__":true,"id":2090},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".nodes.length - ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2090":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2091":{"_id":"_20314","style":{"__isSmartRef__":true,"id":2092},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2092":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2093":{"_id":"_20315","style":{"__isSmartRef__":true,"id":2094},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2094":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2095":{"_id":"_20316","style":{"__isSmartRef__":true,"id":2096},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2096":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2097":{"_id":"_20317","style":{"__isSmartRef__":true,"id":2098},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":", depth);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2098":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2099":{"_id":"_20318","style":{"__isSmartRef__":true,"id":2100},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2100":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2101":{"_id":"_20319","style":{"__isSmartRef__":true,"id":2102},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2102":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2103":{"_id":"_20320","style":{"__isSmartRef__":true,"id":2104},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2104":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2105":{"_id":"_20321","style":{"__isSmartRef__":true,"id":2106},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":",\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2106":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2107":{"_id":"_20322","style":{"__isSmartRef__":true,"id":2108},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"traverseObjAt:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2108":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2109":{"_id":"_20323","style":{"__isSmartRef__":true,"id":2110},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2110":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2111":{"_id":"_20324","style":{"__isSmartRef__":true,"id":2112},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2112":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2113":{"_id":"_20325","style":{"__isSmartRef__":true,"id":2114},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"(obj_idx, currentDepth, maxDepth) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2114":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2115":{"_id":"_20326","style":{"__isSmartRef__":true,"id":2116},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2116":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2117":{"_id":"_20327","style":{"__isSmartRef__":true,"id":2118},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2118":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2119":{"_id":"_20328","style":{"__isSmartRef__":true,"id":2120},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2120":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2121":{"_id":"_20329","style":{"__isSmartRef__":true,"id":2122},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"(currentDepth > maxDepth) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2122":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2123":{"_id":"_20330","style":{"__isSmartRef__":true,"id":2124},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2124":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2125":{"_id":"_20331","style":{"__isSmartRef__":true,"id":2126},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2126":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2127":{"_id":"_20332","style":{"__isSmartRef__":true,"id":2128},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2128":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2129":{"_id":"_20333","style":{"__isSmartRef__":true,"id":2130},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2130":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2131":{"_id":"_20334","style":{"__isSmartRef__":true,"id":2132},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2132":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2133":{"_id":"_20335","style":{"__isSmartRef__":true,"id":2134},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2134":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2135":{"_id":"_20336","style":{"__isSmartRef__":true,"id":2136},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2136":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2137":{"_id":"_20337","style":{"__isSmartRef__":true,"id":2138},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" obj = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2138":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2139":{"_id":"_20338","style":{"__isSmartRef__":true,"id":2140},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2140":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2141":{"_id":"_20339","style":{"__isSmartRef__":true,"id":2142},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".nodes[obj_idx];\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2142":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2143":{"_id":"_20340","style":{"__isSmartRef__":true,"id":2144},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"for","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2144":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2145":{"_id":"_20341","style":{"__isSmartRef__":true,"id":2146},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2146":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2147":{"_id":"_20342","style":{"__isSmartRef__":true,"id":2148},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2148":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2149":{"_id":"_20343","style":{"__isSmartRef__":true,"id":2150},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" v ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2150":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2151":{"_id":"_20344","style":{"__isSmartRef__":true,"id":2152},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"in","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2152":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2153":{"_id":"_20345","style":{"__isSmartRef__":true,"id":2154},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" obj) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2154":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2155":{"_id":"_20346","style":{"__isSmartRef__":true,"id":2156},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2156":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2157":{"_id":"_20347","style":{"__isSmartRef__":true,"id":2158},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2158":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2159":{"_id":"_20348","style":{"__isSmartRef__":true,"id":2160},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2160":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2161":{"_id":"_20349","style":{"__isSmartRef__":true,"id":2162},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2162":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2163":{"_id":"_20350","style":{"__isSmartRef__":true,"id":2164},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2164":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2165":{"_id":"_20351","style":{"__isSmartRef__":true,"id":2166},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".isStandardProperty(obj, v)) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2166":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2167":{"_id":"_20352","style":{"__isSmartRef__":true,"id":2168},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2168":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2169":{"_id":"_20353","style":{"__isSmartRef__":true,"id":2170},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2170":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2171":{"_id":"_20354","style":{"__isSmartRef__":true,"id":2172},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2172":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2173":{"_id":"_20355","style":{"__isSmartRef__":true,"id":2174},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".nodes.push(obj[v]);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2174":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2175":{"_id":"_20356","style":{"__isSmartRef__":true,"id":2176},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2176":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2177":{"_id":"_20357","style":{"__isSmartRef__":true,"id":2178},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".edges.push(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2178":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2179":{"_id":"_20358","style":{"__isSmartRef__":true,"id":2180},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2180":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2181":{"_id":"_20359","style":{"__isSmartRef__":true,"id":2182},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"source:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2182":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2183":{"_id":"_20360","style":{"__isSmartRef__":true,"id":2184},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" obj_idx, ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2184":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2185":{"_id":"_20361","style":{"__isSmartRef__":true,"id":2186},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"target:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2186":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2187":{"_id":"_20362","style":{"__isSmartRef__":true,"id":2188},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2188":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2189":{"_id":"_20363","style":{"__isSmartRef__":true,"id":2190},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2190":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2191":{"_id":"_20364","style":{"__isSmartRef__":true,"id":2192},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".nodes.length - ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2192":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2193":{"_id":"_20365","style":{"__isSmartRef__":true,"id":2194},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2194":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2195":{"_id":"_20366","style":{"__isSmartRef__":true,"id":2196},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2196":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2197":{"_id":"_20367","style":{"__isSmartRef__":true,"id":2198},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"weight:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2198":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2199":{"_id":"_20368","style":{"__isSmartRef__":true,"id":2200},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2200":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2201":{"_id":"_20369","style":{"__isSmartRef__":true,"id":2202},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2202":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2203":{"_id":"_20370","style":{"__isSmartRef__":true,"id":2204},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2204":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2205":{"_id":"_20371","style":{"__isSmartRef__":true,"id":2206},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":");\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2206":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2207":{"_id":"_20372","style":{"__isSmartRef__":true,"id":2208},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2208":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2209":{"_id":"_20373","style":{"__isSmartRef__":true,"id":2210},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".traverseObjAt(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2210":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2211":{"_id":"_20374","style":{"__isSmartRef__":true,"id":2212},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2212":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2213":{"_id":"_20375","style":{"__isSmartRef__":true,"id":2214},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".nodes.length - ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2214":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2215":{"_id":"_20376","style":{"__isSmartRef__":true,"id":2216},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2216":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2217":{"_id":"_20377","style":{"__isSmartRef__":true,"id":2218},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":", currentDepth + ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2218":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2219":{"_id":"_20378","style":{"__isSmartRef__":true,"id":2220},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2220":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2221":{"_id":"_20379","style":{"__isSmartRef__":true,"id":2222},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":", maxDepth);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2222":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2223":{"_id":"_20380","style":{"__isSmartRef__":true,"id":2224},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2224":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2225":{"_id":"_20381","style":{"__isSmartRef__":true,"id":2226},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2226":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2227":{"_id":"_20382","style":{"__isSmartRef__":true,"id":2228},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2228":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2229":{"_id":"_20383","style":{"__isSmartRef__":true,"id":2230},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2230":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2231":{"_id":"_20384","style":{"__isSmartRef__":true,"id":2232},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2232":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2233":{"_id":"_20385","style":{"__isSmartRef__":true,"id":2234},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":",\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2234":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2235":{"_id":"_20386","style":{"__isSmartRef__":true,"id":2236},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"isStandardProperty:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2236":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2237":{"_id":"_20387","style":{"__isSmartRef__":true,"id":2238},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2238":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2239":{"_id":"_20388","style":{"__isSmartRef__":true,"id":2240},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2240":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2241":{"_id":"_20389","style":{"__isSmartRef__":true,"id":2242},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"(obj, prop) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2242":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2243":{"_id":"_20390","style":{"__isSmartRef__":true,"id":2244},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2244":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2245":{"_id":"_20391","style":{"__isSmartRef__":true,"id":2246},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2246":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2247":{"_id":"_20392","style":{"__isSmartRef__":true,"id":2248},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2248":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2249":{"_id":"_20393","style":{"__isSmartRef__":true,"id":2250},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" obj.hasOwnProperty(prop) &&\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2250":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2251":{"_id":"_20753","style":{"__isSmartRef__":true,"id":2252},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"startsAlphaNum","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2252":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(204,0,0)"},"2253":{"_id":"_20754","style":{"__isSmartRef__":true,"id":2254},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".test(prop) &&\n !","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2254":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2255":{"_id":"_20394","style":{"__isSmartRef__":true,"id":2256},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"Object","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2256":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(255,20,147)"},"2257":{"_id":"_20395","style":{"__isSmartRef__":true,"id":2258},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":".isFunction(obj[prop]);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2258":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2259":{"_id":"_20396","style":{"__isSmartRef__":true,"id":2260},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2260":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2261":{"_id":"_20397","style":{"__isSmartRef__":true,"id":2262},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2262":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2263":{"_id":"_20398","style":{"__isSmartRef__":true,"id":2264},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2264":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2265":{"_id":"_20399","style":{"__isSmartRef__":true,"id":2266},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":");\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2266":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2267":{"_id":"_20400","style":{"__isSmartRef__":true,"id":2268},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2268":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2269":{"_id":"_20401","style":{"__isSmartRef__":true,"id":2270},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2270":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2271":{"_id":"_20402","style":{"__isSmartRef__":true,"id":2272},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2272":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"2273":{"_id":"_20403","style":{"__isSmartRef__":true,"id":2274},"chunkOwner":{"__isSmartRef__":true,"id":1917},"storedString":" end of module","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2274":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2275":{"morph":{"__isSmartRef__":true,"id":1917},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2276":{"scaleVertical":true,"scaleHorizontal":true},"2277":{"sourceObj":{"__isSmartRef__":true,"id":1917},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":1917},"targetMethodName":"highlightSyntaxDebounced","varMapping":{"__isSmartRef__":true,"id":2278},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2278":{"source":{"__isSmartRef__":true,"id":1917},"target":{"__isSmartRef__":true,"id":1917}},"2279":{"sourceObj":{"__isSmartRef__":true,"id":1917},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"setSourceString","varMapping":{"__isSmartRef__":true,"id":2280},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2280":{"source":{"__isSmartRef__":true,"id":1917},"target":{"__isSmartRef__":true,"id":1560}},"2281":{"source":{"__isSmartRef__":true,"id":1560},"target":{"__isSmartRef__":true,"id":1917}},"2282":{"sourceObj":{"__isSmartRef__":true,"id":1560},"sourceAttrName":"targetURL","targetObj":{"__isSmartRef__":true,"id":1553},"targetMethodName":"setTextString","varMapping":{"__isSmartRef__":true,"id":2283},"updaterString":"function ($upd, value) { value && $upd(String(value)) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2283":{"source":{"__isSmartRef__":true,"id":1560},"target":{"__isSmartRef__":true,"id":1553}},"2284":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2285},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2286}],"eventHandler":{"__isSmartRef__":true,"id":2288},"_ClipMode":"visible","derivationIds":[],"id":"2A1B397D-9C45-463A-B262-65CDE6C26597","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"owner":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)","_Position":"lively.pt(260.0,136.3)"},"2285":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"_StrokeOpacity":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(300.0,30.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"2286":{"style":{"__isSmartRef__":true,"id":2287},"chunkOwner":{"__isSmartRef__":true,"id":2284},"_id":"_16696","storedString":"Saving traverseObjAt...\nSuccessfully saved\nEval disabled for traverseObjAt","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2287":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2288":{"morph":{"__isSmartRef__":true,"id":2284},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2289":{"source":{"__isSmartRef__":true,"id":1553},"target":{"__isSmartRef__":true,"id":1560}},"2290":{"submorphs":[{"__isSmartRef__":true,"id":2291}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2296},"eventHandler":{"__isSmartRef__":true,"id":2297},"_ClipMode":"visible","derivationIds":[],"id":"F7FF7CA3-7924-45B0-977E-0494C954067E","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":2291},"_PreviousBorderWidth":1,"owner":{"__isSmartRef__":true,"id":1552},"attributeConnections":[{"__isSmartRef__":true,"id":2298}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":2300},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(656.0,0.0)"},"2291":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2292},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2293}],"eventHandler":{"__isSmartRef__":true,"id":2295},"_ClipMode":"hidden","derivationIds":[],"id":"E48C2EB7-998C-4F8D-A985-51FEF1D30798","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":2290},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"2292":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(98.4,16.5)","_Padding":"lively.rect(2,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2293":{"style":{"__isSmartRef__":true,"id":2294},"chunkOwner":{"__isSmartRef__":true,"id":2291},"_id":"_819","storedString":"Codebase","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2294":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2295":{"morph":{"__isSmartRef__":true,"id":2291},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2296":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(98.4,16.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"2297":{"morph":{"__isSmartRef__":true,"id":2290},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2298":{"sourceObj":{"__isSmartRef__":true,"id":2290},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"setTargetURL","varMapping":{"__isSmartRef__":true,"id":2299},"converterString":"function () { return URL.codeBase.withFilename('lively/')}","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2299":{"source":{"__isSmartRef__":true,"id":2290},"target":{"__isSmartRef__":true,"id":1560}},"2300":{"scaleVertical":true,"scaleHorizontal":true},"2301":{"submorphs":[{"__isSmartRef__":true,"id":2302}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2307},"eventHandler":{"__isSmartRef__":true,"id":2308},"_ClipMode":"visible","derivationIds":[],"id":"DBADFEB3-1A1C-40C9-B6E5-D13AC5A90FE1","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":2302},"_PreviousBorderWidth":1,"owner":{"__isSmartRef__":true,"id":1552},"attributeConnections":[{"__isSmartRef__":true,"id":2309}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":2311},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(754.4,0.0)"},"2302":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2303},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2304}],"eventHandler":{"__isSmartRef__":true,"id":2306},"_ClipMode":"hidden","derivationIds":[],"id":"4FEF0D1A-3A4D-41A6-9A53-80D8833DCDD1","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":2301},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"2303":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(65.6,16.5)","_Padding":"lively.rect(2,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2304":{"style":{"__isSmartRef__":true,"id":2305},"chunkOwner":{"__isSmartRef__":true,"id":2302},"_id":"_820","storedString":"Local","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2305":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2306":{"morph":{"__isSmartRef__":true,"id":2302},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2307":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(65.6,16.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"2308":{"morph":{"__isSmartRef__":true,"id":2301},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2309":{"sourceObj":{"__isSmartRef__":true,"id":2301},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1560},"targetMethodName":"setTargetURL","varMapping":{"__isSmartRef__":true,"id":2310},"converterString":"function () {\n return $world.getUserName() ? $world.getUserDir() : URL.source.getDirectory() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2310":{"source":{"__isSmartRef__":true,"id":2301},"target":{"__isSmartRef__":true,"id":1560}},"2311":{"scaleVertical":true,"scaleHorizontal":true},"2312":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2313},"eventHandler":{"__isSmartRef__":true,"id":2318},"_ClipMode":"visible","derivationIds":[],"id":"9883B2ED-3537-415D-A4E3-5ED32C6C1B63","droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"__serializedExpressions__":["_Position"],"fixed":[{"__isSmartRef__":true,"id":1562},{"__isSmartRef__":true,"id":1576},{"__isSmartRef__":true,"id":1590},{"__isSmartRef__":true,"id":1604},{"__isSmartRef__":true,"id":1618},{"__isSmartRef__":true,"id":1632},{"__isSmartRef__":true,"id":1646}],"scalingBelow":[{"__isSmartRef__":true,"id":1917}],"scalingAbove":[{"__isSmartRef__":true,"id":1667},{"__isSmartRef__":true,"id":1822},{"__isSmartRef__":true,"id":1854},{"__isSmartRef__":true,"id":1885}],"minHeight":20,"pointerConnection":null,"owner":{"__isSmartRef__":true,"id":1552},"styleClass":["Browser_resizer"],"layout":{"__isSmartRef__":true,"id":2319},"__LivelyClassName__":"lively.morphic.HorizontalDivider","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,242.0)"},"2313":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"_Fill":{"__isSmartRef__":true,"id":2314},"_BorderRadius":3,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(820.0,5.5)","_Padding":"lively.rect(0,0,0,0)"},"2314":{"stops":[{"__isSmartRef__":true,"id":2315},{"__isSmartRef__":true,"id":2316},{"__isSmartRef__":true,"id":2317}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2315":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(235,235,235)"},"2316":{"offset":0.5,"__serializedExpressions__":["color"],"color":"Color.rgb(215,215,215)"},"2317":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(184,184,184)"},"2318":{"morph":{"__isSmartRef__":true,"id":2312},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2319":{"scaleVertical":true,"scaleHorizontal":true},"2320":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(820.0,550.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(230,230,230)"},"2321":{"morph":{"__isSmartRef__":true,"id":1552},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2322":{"resizeWidth":true,"resizeHeight":true,"adjustForNewBounds":true},"2323":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2324},"eventHandler":{"__isSmartRef__":true,"id":2325},"_ClipMode":"visible","derivationIds":[],"id":"B9A5B30F-647F-4BAA-90BE-01E849C52CDE","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_StyleClassNames":["reframe-handle bottom"],"owner":{"__isSmartRef__":true,"id":1551},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2326},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,572.0)"},"2324":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(814.0,4.0)","_Padding":"lively.rect(0,0,0,0)"},"2325":{"morph":{"__isSmartRef__":true,"id":2323},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2326":{"onDragStart":{"__isSmartRef__":true,"id":2327},"onDrag":{"__isSmartRef__":true,"id":2334},"onDragEnd":{"__isSmartRef__":true,"id":2341}},"2327":{"varMapping":{"__isSmartRef__":true,"id":2328},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":2333},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2328":{"this":{"__isSmartRef__":true,"id":2323},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2329}},"2329":{"$super":{"__isSmartRef__":true,"id":2330}},"2330":{"varMapping":{"__isSmartRef__":true,"id":2331},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2332},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2331":{"obj":{"__isSmartRef__":true,"id":2323},"name":"onDragStart"},"2332":{},"2333":{},"2334":{"varMapping":{"__isSmartRef__":true,"id":2335},"source":"function onDrag(evt) {\n var moveDelta = pt(0,evt.mousePoint.subPt(this.dragStartPoint).y);\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.y < this.owner.minHeight) newExtent.y = this.owner.minHeight;\n this.owner.setExtent(newExtent);\n\n this.align(this.bounds().bottomLeft(), pt(0,this.owner.getExtent().y));\n }","funcProperties":{"__isSmartRef__":true,"id":2340},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2335":{"this":{"__isSmartRef__":true,"id":2323},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2336}},"2336":{"$super":{"__isSmartRef__":true,"id":2337}},"2337":{"varMapping":{"__isSmartRef__":true,"id":2338},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2339},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2338":{"obj":{"__isSmartRef__":true,"id":2323},"name":"onDrag"},"2339":{},"2340":{},"2341":{"varMapping":{"__isSmartRef__":true,"id":2342},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignReframeHandle();\n this.owner.alignRightReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":2347},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2342":{"this":{"__isSmartRef__":true,"id":2323},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2343}},"2343":{"$super":{"__isSmartRef__":true,"id":2344}},"2344":{"varMapping":{"__isSmartRef__":true,"id":2345},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2346},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2345":{"obj":{"__isSmartRef__":true,"id":2323},"name":"onDragEnd"},"2346":{},"2347":{},"2348":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2349},"eventHandler":{"__isSmartRef__":true,"id":2350},"_ClipMode":"visible","derivationIds":[],"id":"4824EAEB-FEFE-44FB-B247-4666FC991138","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_StyleClassNames":["reframe-handle right"],"owner":{"__isSmartRef__":true,"id":1551},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2351},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(824.0,0.0)"},"2349":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(4.0,562.0)","_Padding":"lively.rect(0,0,0,0)"},"2350":{"morph":{"__isSmartRef__":true,"id":2348},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2351":{"onDragStart":{"__isSmartRef__":true,"id":2352},"onDrag":{"__isSmartRef__":true,"id":2359},"onDragEnd":{"__isSmartRef__":true,"id":2366}},"2352":{"varMapping":{"__isSmartRef__":true,"id":2353},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":2358},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2353":{"this":{"__isSmartRef__":true,"id":2348},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2354}},"2354":{"$super":{"__isSmartRef__":true,"id":2355}},"2355":{"varMapping":{"__isSmartRef__":true,"id":2356},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2357},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2356":{"obj":{"__isSmartRef__":true,"id":2348},"name":"onDragStart"},"2357":{},"2358":{},"2359":{"varMapping":{"__isSmartRef__":true,"id":2360},"source":"function onDrag(evt) {\n var moveDelta = pt(evt.mousePoint.subPt(this.dragStartPoint).x,0);\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.x < this.owner.minWidth) newExtent.x = this.owner.minWidth;\n\n this.owner.setExtent(newExtent);\n this.align(this.bounds().topRight(), pt(this.owner.getExtent().x,0));\n }","funcProperties":{"__isSmartRef__":true,"id":2365},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2360":{"this":{"__isSmartRef__":true,"id":2348},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2361}},"2361":{"$super":{"__isSmartRef__":true,"id":2362}},"2362":{"varMapping":{"__isSmartRef__":true,"id":2363},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2364},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2363":{"obj":{"__isSmartRef__":true,"id":2348},"name":"onDrag"},"2364":{},"2365":{},"2366":{"varMapping":{"__isSmartRef__":true,"id":2367},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignReframeHandle();\n this.owner.alignBottomReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":2372},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2367":{"this":{"__isSmartRef__":true,"id":2348},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2368}},"2368":{"$super":{"__isSmartRef__":true,"id":2369}},"2369":{"varMapping":{"__isSmartRef__":true,"id":2370},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2371},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2370":{"obj":{"__isSmartRef__":true,"id":2348},"name":"onDragEnd"},"2371":{},"2372":{},"2373":{"submorphs":[{"__isSmartRef__":true,"id":2374},{"__isSmartRef__":true,"id":2380},{"__isSmartRef__":true,"id":2393},{"__isSmartRef__":true,"id":2405}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2418},"eventHandler":{"__isSmartRef__":true,"id":2419},"_ClipMode":"visible","derivationIds":[],"id":"A18254F6-501B-4FE9-9B91-DC68FD1AAAFB","droppingEnabled":false,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":2420},"__serializedExpressions__":["_Position"],"windowMorph":{"__isSmartRef__":true,"id":1551},"label":{"__isSmartRef__":true,"id":2374},"closeButton":{"__isSmartRef__":true,"id":2380},"menuButton":{"__isSmartRef__":true,"id":2393},"collapseButton":{"__isSmartRef__":true,"id":2405},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":1551},"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"2374":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2375},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2376}],"eventHandler":{"__isSmartRef__":true,"id":2378},"_ClipMode":"hidden","derivationIds":[],"id":"4B567A4D-7261-4061-B3C1-2A0E0681CFE4","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"isLabel":true,"layout":{"__isSmartRef__":true,"id":2379},"eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":2373},"_StyleClassNames":["window-title"],"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(21.0,3.0)"},"2375":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(768.0,18.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2376":{"style":{"__isSmartRef__":true,"id":2377},"chunkOwner":{"__isSmartRef__":true,"id":2374},"_id":"_20229","storedString":"ObjectGrapher.js","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2377":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2378":{"morph":{"__isSmartRef__":true,"id":2374},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2379":{"resizeWidth":true},"2380":{"submorphs":[{"__isSmartRef__":true,"id":2381}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2386},"eventHandler":{"__isSmartRef__":true,"id":2387},"_ClipMode":"visible","derivationIds":[],"id":"D5822A08-6EE2-4A22-8256-DC6A28ED7876","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":2381},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":2373},"layout":{"__isSmartRef__":true,"id":2388},"_StyleClassNames":["close"],"attributeConnections":[{"__isSmartRef__":true,"id":2389},{"__isSmartRef__":true,"id":2391}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(808.0,3.0)"},"2381":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2382},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":2383}],"eventHandler":{"__isSmartRef__":true,"id":2385},"_ClipMode":"hidden","derivationIds":[],"id":"83369E5F-B4A2-472E-81DE-F8CEF56792D6","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"_WordBreak":null,"fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":2380},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,-1.0)"},"2382":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2383":{"style":{"__isSmartRef__":true,"id":2384},"chunkOwner":{"__isSmartRef__":true,"id":2381},"_id":"_847","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2384":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2385":{"morph":{"__isSmartRef__":true,"id":2381},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2386":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"2387":{"morph":{"__isSmartRef__":true,"id":2380},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2388":{"moveHorizontal":true},"2389":{"sourceObj":{"__isSmartRef__":true,"id":2380},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1551},"targetMethodName":"getCloseHelp","varMapping":{"__isSmartRef__":true,"id":2390},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2390":{"source":{"__isSmartRef__":true,"id":2380},"target":{"__isSmartRef__":true,"id":1551}},"2391":{"sourceObj":{"__isSmartRef__":true,"id":2380},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1551},"targetMethodName":"initiateShutdown","varMapping":{"__isSmartRef__":true,"id":2392},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2392":{"source":{"__isSmartRef__":true,"id":2380},"target":{"__isSmartRef__":true,"id":1551}},"2393":{"submorphs":[{"__isSmartRef__":true,"id":2394}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2399},"eventHandler":{"__isSmartRef__":true,"id":2400},"_ClipMode":"visible","derivationIds":[],"id":"7C57FCBF-3619-40A5-8033-18ACF9D044A6","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":2394},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":2373},"attributeConnections":[{"__isSmartRef__":true,"id":2401},{"__isSmartRef__":true,"id":2403}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"2394":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2395},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":2396}],"eventHandler":{"__isSmartRef__":true,"id":2398},"_ClipMode":"hidden","derivationIds":[],"id":"5D10D4EE-7590-4BF8-903A-0868F5F2FD45","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"_WordBreak":null,"fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":2393},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"2395":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(18.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2396":{"style":{"__isSmartRef__":true,"id":2397},"chunkOwner":{"__isSmartRef__":true,"id":2394},"_id":"_849","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2397":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2398":{"morph":{"__isSmartRef__":true,"id":2394},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2399":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"2400":{"morph":{"__isSmartRef__":true,"id":2393},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2401":{"sourceObj":{"__isSmartRef__":true,"id":2393},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1551},"targetMethodName":"getMenuHelp","varMapping":{"__isSmartRef__":true,"id":2402},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2402":{"source":{"__isSmartRef__":true,"id":2393},"target":{"__isSmartRef__":true,"id":1551}},"2403":{"sourceObj":{"__isSmartRef__":true,"id":2393},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1551},"targetMethodName":"showTargetMorphMenu","varMapping":{"__isSmartRef__":true,"id":2404},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2404":{"source":{"__isSmartRef__":true,"id":2393},"target":{"__isSmartRef__":true,"id":1551}},"2405":{"submorphs":[{"__isSmartRef__":true,"id":2406}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2411},"eventHandler":{"__isSmartRef__":true,"id":2412},"_ClipMode":"visible","derivationIds":[],"id":"5C0ED119-1259-4C06-B332-746566AA232E","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":2406},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":2373},"layout":{"__isSmartRef__":true,"id":2413},"attributeConnections":[{"__isSmartRef__":true,"id":2414},{"__isSmartRef__":true,"id":2416}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(789.0,3.0)"},"2406":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2407},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":2408}],"eventHandler":{"__isSmartRef__":true,"id":2410},"_ClipMode":"hidden","derivationIds":[],"id":"84316A91-59C6-4B44-AC4C-85907B46B7C0","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"_WordBreak":null,"fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":2405},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,1.0)"},"2407":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2408":{"style":{"__isSmartRef__":true,"id":2409},"chunkOwner":{"__isSmartRef__":true,"id":2406},"_id":"_851","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2409":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2410":{"morph":{"__isSmartRef__":true,"id":2406},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2411":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"2412":{"morph":{"__isSmartRef__":true,"id":2405},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2413":{"moveHorizontal":true},"2414":{"sourceObj":{"__isSmartRef__":true,"id":2405},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1551},"targetMethodName":"getCollapseHelp","varMapping":{"__isSmartRef__":true,"id":2415},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2415":{"source":{"__isSmartRef__":true,"id":2405},"target":{"__isSmartRef__":true,"id":1551}},"2416":{"sourceObj":{"__isSmartRef__":true,"id":2405},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1551},"targetMethodName":"toggleCollapse","varMapping":{"__isSmartRef__":true,"id":2417},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2417":{"source":{"__isSmartRef__":true,"id":2405},"target":{"__isSmartRef__":true,"id":1551}},"2418":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"_AppearanceStylingMode":true,"_BorderStylingMode":true,"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(828.0,22.0)","_Padding":"lively.rect(0,0,0,0)"},"2419":{"morph":{"__isSmartRef__":true,"id":2373},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2420":{"resizeWidth":true,"adjustForNewBounds":true},"2421":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2422},"eventHandler":{"__isSmartRef__":true,"id":2423},"_ClipMode":"visible","derivationIds":[],"id":"F0AAA47F-BE3B-4DB5-9E4F-62A152644CF2","droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position"],"_StyleClassNames":["reframe-handle corner"],"owner":{"__isSmartRef__":true,"id":1551},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2424},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(814.0,562.0)"},"2422":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,14.0)","_Padding":"lively.rect(0,0,0,0)"},"2423":{"morph":{"__isSmartRef__":true,"id":2421},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2424":{"onDragStart":{"__isSmartRef__":true,"id":2425},"onDrag":{"__isSmartRef__":true,"id":2432},"onDragEnd":{"__isSmartRef__":true,"id":2439}},"2425":{"varMapping":{"__isSmartRef__":true,"id":2426},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":2431},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2426":{"this":{"__isSmartRef__":true,"id":2421},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2427}},"2427":{"$super":{"__isSmartRef__":true,"id":2428}},"2428":{"varMapping":{"__isSmartRef__":true,"id":2429},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2430},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2429":{"obj":{"__isSmartRef__":true,"id":2421},"name":"onDragStart"},"2430":{},"2431":{},"2432":{"varMapping":{"__isSmartRef__":true,"id":2433},"source":"function onDrag(evt) {\n var moveDelta = evt.mousePoint.subPt(this.dragStartPoint)\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.x < this.owner.minWidth) newExtent.x = this.owner.minWidth;\n if (newExtent.y < this.owner.minHeight) newExtent.y = this.owner.minHeight;\n this.owner.setExtent(newExtent);\n //console.log(\"WindowExtent: \"+this.owner.getExtent().x+\" , \"+this.owner.getExtent().y);\n this.align(this.bounds().bottomRight(), this.owner.getExtent());\n }","funcProperties":{"__isSmartRef__":true,"id":2438},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2433":{"this":{"__isSmartRef__":true,"id":2421},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2434}},"2434":{"$super":{"__isSmartRef__":true,"id":2435}},"2435":{"varMapping":{"__isSmartRef__":true,"id":2436},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2437},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2436":{"obj":{"__isSmartRef__":true,"id":2421},"name":"onDrag"},"2437":{},"2438":{},"2439":{"varMapping":{"__isSmartRef__":true,"id":2440},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignBottomReframeHandle();\n this.owner.alignRightReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":2445},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2440":{"this":{"__isSmartRef__":true,"id":2421},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2441}},"2441":{"$super":{"__isSmartRef__":true,"id":2442}},"2442":{"varMapping":{"__isSmartRef__":true,"id":2443},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2444},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2443":{"obj":{"__isSmartRef__":true,"id":2421},"name":"onDragEnd"},"2444":{},"2445":{},"2446":{"__serializedExpressions__":["_Padding","_Extent"],"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Padding":"lively.rect(0,0,0,0)","_Extent":"lively.pt(828.0,576.0)"},"2447":{"morph":{"__isSmartRef__":true,"id":1551},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2448":{"adjustForNewBounds":true},"2449":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2450},"id":2,"eventHandler":{"__isSmartRef__":true,"id":2451},"droppingEnabled":false,"halosEnabled":false,"_world":{"__isSmartRef__":true,"id":0},"eventsAreIgnored":true,"_HandStyle":"default","_PointerEvents":"none","__serializedExpressions__":["_Position"],"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1,"carriesGrabbedMorphs":false,"lastScrollTime":1357219938424,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.HandMorph","__SourceModuleName__":"Global.lively.morphic.Events","withLayers":["Global.NoMagnetsLayer"],"_Position":"lively.pt(771.5,392.8)"},"2450":{"__serializedExpressions__":["_Position","_Extent","_Fill","_Padding"],"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(2.0,2.0)","_Fill":"Color.rgb(204,0,0)","_Padding":"lively.rect(0,0,0,0)"},"2451":{"morph":{"__isSmartRef__":true,"id":2449},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2452":{"__serializedExpressions__":["_Position","_Extent","_Fill","_Padding"],"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(41024.0,1768.0)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)"},"2453":{"morph":{"__isSmartRef__":true,"id":0},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2454":{"submorphs":[{"__isSmartRef__":true,"id":2455}],"scripts":[],"id":"B542AFF3-8724-4AA3-92CA-854260A14E18","shape":{"__isSmartRef__":true,"id":2466},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"showsHalos":false,"name":"LoadingMorph","partsBinMetaInfo":{"__isSmartRef__":true,"id":2467},"eventHandler":{"__isSmartRef__":true,"id":2565},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[127,"59692BC3-6C7B-4E23-B820-8699260EA722","486BB935-1313-4103-B2A8-642B19437478","18AFFD44-46CD-489E-B1D6-DED43E2B6B06","2608C892-2204-4981-9A87-8E749F8944AB","5535861F-4EA2-44AB-8A40-0538124E0AAC","16C292B3-86E8-4622-B516-27C48263B8CC","87731A20-D455-44D0-97E5-98A7CFD4E417","A17081E7-E597-47ED-BD32-6E4D206BD7D7","CFB4A44C-BFEA-4584-BCBA-AE2A56739200","76B3DD9B-8D01-42BA-A574-AB99D5F899BB","1EBC5512-8F54-4B24-998C-69A285EC8533","DD1165C7-6C1A-4361-A4AE-FCF6F31152FD","4D6D36E8-48F3-408A-B03C-202E4DC182BD","5F3B3E0F-BBC6-4DDA-BAA0-7EFC05FF2011","E0A6B33B-767A-4532-9021-892414520200","F5F5E2B1-5FF0-4E09-B323-AE88A3920B8D","0C7E832A-A741-430F-B295-8BC181D066FE","472AED3B-CB76-49BD-BF49-354A2D568F86","A7C52F65-D140-4791-880F-F7584C7BB570","3516412B-8B36-4E52-9416-6B7FB358BDC2","1840CACC-078C-4795-AD3F-E9D6F8D557A0","1FEDCA25-0131-46FA-840F-DC5F1B05C6CA","C620CED3-0AE9-4097-9AA7-2706A042F9C9","679A861B-40E0-4DB2-B22F-95B454C6978D","FEF39B3C-E634-4825-BAB8-2D44FE647B03"],"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":2566},"prevScroll":[0,0],"moved":true,"_Rotation":0,"_Scale":1,"headRevision":146469,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2567},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)","distanceToDragEvent":"lively.pt(171.0,-13.0)"},"2455":{"submorphs":[{"__isSmartRef__":true,"id":2456}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2462},"id":"83F12A2F-BDBF-4D3B-A875-11F1CA63A8D4","eventHandler":{"__isSmartRef__":true,"id":2463},"droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"name":"ProgressIndicator","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":2464},"derivationIds":[520,"071F18BE-FF28-40F5-ACAD-1916E0D25C38","DF185A10-743D-45FC-B9C2-76E12D908BCF","BF125D2C-596A-4C1E-A5F8-DAE4801E9497","3CEE8CFF-B8F1-4B4B-A405-CB583080252A","D0652878-8F9C-4591-8A82-296898AACDB6","31441DDF-2220-43BE-A99F-69E1FEC68030","14A90039-0D3E-46DC-8445-D42B8E02EB42","681EF5DE-A344-4114-B2F3-B96CE3872524","C0381116-5116-4F33-B082-A411D0E4534E","24E9581E-B008-46EE-9CBC-D5190E100D98","C69D1041-2C5E-48FE-B04C-04E66450658A","4830945B-4FFF-4564-9424-34D7995DAE60","8602C233-B3E7-4682-9B0E-D7549761D934","B4E0E11F-2BED-462E-B708-89D63971856E","EE0144C2-D016-4390-8A67-4E7DEF171C83","F44DF6E4-5F27-440E-AB5F-3721C0A10CA6","73FC6648-DAAF-4673-8CF4-7DA219513F22","B78EB1B5-780C-45F7-B0A7-B988B52B1FF1","DFDB8CD1-72F7-40F4-849B-1F9B866277AB","66111105-B1FC-41F7-BF70-D45118C9E09F","02420416-1E35-4831-AABB-91CD0460CA1A","7C6B2EB2-4510-4A8E-BAFF-5CF0040DD7F5","0503F5A1-1732-4610-9A5A-920D658CA766","07C5AE03-36AD-4849-BACD-27D7D9A2CCF2","9FFF9D73-931C-404C-AA4B-5AC2E7C53504"],"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":2454},"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":2465},"prevScroll":[0,0],"_Rotation":0,"_Scale":1,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Image","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(113.5,81.0)","distanceToDragEvent":"lively.pt(39.0,-11.0)"},"2456":{"submorphs":[],"scripts":[],"id":"2F412724-D7D1-4552-851E-66FA858A12E1","shape":{"__isSmartRef__":true,"id":2457},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","textColor","_Padding","distanceToDragEvent"],"_MaxTextWidth":257,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"loadedMorphName","partsBinMetaInfo":{"__isSmartRef__":true,"id":2458},"textChunks":[{"__isSmartRef__":true,"id":2459}],"charsReplaced":"MorphName","lastFindLoc":18,"priorSelectionRange":[9,0],"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":2461},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_ClipMode":"visible","derivationIds":[355,"023045B3-2D6B-4425-89FB-F4806D527BE0","DC0C2365-868C-41AE-8369-51C31E91493E","C6D9D314-86A1-4015-970B-F6787F535E1A","6AA4552E-2E85-447E-9033-99D5AA1A94BC","D94BE49C-8A3E-4F1F-BF28-FEDD9B40D213","AA8F0470-654C-4AA2-8135-4607F5429AC5","E0BAABCC-FFB2-4EDF-BAE5-C63CC99B6A97","1A86AE17-73AE-442E-AB36-DD90C6DFC8BC","EF750075-E964-4CD3-B6A4-161511E1D058","CED69CBF-FFA5-45E7-B333-FBACE4F278AC","E56978C1-7424-4C10-8168-11FD3237B540","D5AB2532-A4DC-42D6-AF17-99CBBCEAA848","245866CB-598A-4172-A3A0-A06D4D26C6AD","43B0F12E-5793-43AA-80E1-496774E0EBA6","1B776A8C-0413-475F-8EBD-120BBD91D2BB","F84F2C9A-8003-4E81-833A-83F48C92F3B8","3124B389-9FA4-4348-BC5D-0DFF9C59CD1B","1A1BCBAC-D7CC-4BAE-B8C2-7C693F7327A1","1CB201BA-5E0B-4771-821A-139FA2AEFBC2","195520FA-4816-47A4-B0F5-BA890AFD9DF9","0D15F28A-24C9-46B7-89C5-6D2354728AC1","316FE9D3-62EC-4FD6-9B0F-FFA622B79575","739F3743-9BE1-48C8-813D-C0BFB0DCACA6","01877B3B-7DA7-4222-B011-7B5F4E501862","B8FE7DEE-9568-4BE6-BA12-EA674BA79E08"],"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":2455},"_MinTextWidth":257,"_MinTextHeight":null,"previousSelection":[6,6],"_Align":"center","isBeingDragged":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(-109.0,38.0)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)","distanceToDragEvent":"lively.pt(179.0,-11.0)"},"2457":{"fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_ClipMode":"visible","_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(257.0,23.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"2458":{"partsSpaceName":"PartsBin/Basic","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2459":{"style":{"__isSmartRef__":true,"id":2460},"chunkOwner":{"__isSmartRef__":true,"id":2456},"storedString":"loading part","_id":"_222","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2460":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2461":{"morph":{"__isSmartRef__":true,"id":2456},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2462":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"_ImageURL":"data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isLoaded":true,"_ClipMode":"visible","_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Image","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(31.0,31.0)","_Padding":"lively.rect(0,0,0,0)"},"2463":{"morph":{"__isSmartRef__":true,"id":2455},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2464":{"partName":"ProgressIndicator","requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2465":{"centeredHorizontal":true,"centeredVertical":true},"2466":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":8.515,"_Opacity":0.8146,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(266.0,223.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"2467":{"partsSpaceName":"PartsBin/iPadWidgets","comment":"This is a placeholder to indicate that a morph is being loaded. It will be replaced by the morph as soon as the requested morph finished loading.","migrationLevel":4,"partName":"LoadingMorph","changes":[{"__isSmartRef__":true,"id":2468},{"__isSmartRef__":true,"id":2470},{"__isSmartRef__":true,"id":2472},{"__isSmartRef__":true,"id":2474},{"__isSmartRef__":true,"id":2476},{"__isSmartRef__":true,"id":2478},{"__isSmartRef__":true,"id":2480},{"__isSmartRef__":true,"id":2482},{"__isSmartRef__":true,"id":2484},{"__isSmartRef__":true,"id":2486},{"__isSmartRef__":true,"id":2488},{"__isSmartRef__":true,"id":2490},{"__isSmartRef__":true,"id":2492},{"__isSmartRef__":true,"id":2494},{"__isSmartRef__":true,"id":2496},{"__isSmartRef__":true,"id":2498},{"__isSmartRef__":true,"id":2500},{"__isSmartRef__":true,"id":2502},{"__isSmartRef__":true,"id":2504},{"__isSmartRef__":true,"id":2506},{"__isSmartRef__":true,"id":2508},{"__isSmartRef__":true,"id":2510},{"__isSmartRef__":true,"id":2512},{"__isSmartRef__":true,"id":2514},{"__isSmartRef__":true,"id":2516},{"__isSmartRef__":true,"id":2518},{"__isSmartRef__":true,"id":2520},{"__isSmartRef__":true,"id":2522},{"__isSmartRef__":true,"id":2524},{"__isSmartRef__":true,"id":2526},{"__isSmartRef__":true,"id":2528},{"__isSmartRef__":true,"id":2530},{"__isSmartRef__":true,"id":2532},{"__isSmartRef__":true,"id":2534},{"__isSmartRef__":true,"id":2536},{"__isSmartRef__":true,"id":2538},{"__isSmartRef__":true,"id":2540},{"__isSmartRef__":true,"id":2542},{"__isSmartRef__":true,"id":2544},{"__isSmartRef__":true,"id":2546},{"__isSmartRef__":true,"id":2548},{"__isSmartRef__":true,"id":2550},{"__isSmartRef__":true,"id":2552},{"__isSmartRef__":true,"id":2554},{"__isSmartRef__":true,"id":2556},{"__isSmartRef__":true,"id":2558},{"__isSmartRef__":true,"id":2560},{"__isSmartRef__":true,"id":2562}],"revisionOnLoad":151069,"lastModifiedDate":{"__isSmartRef__":true,"id":2564},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2468":{"date":{"__isSmartRef__":true,"id":2469},"author":"sstamm","message":"","id":"1C1391AE-5722-4707-BE52-F0094FC56829"},"2469":{"isSerializedDate":true,"string":"Wed Feb 22 2012 14:02:04 GMT+0100 (CET)"},"2470":{"date":{"__isSmartRef__":true,"id":2471},"author":"sstamm","message":"","id":"663F147A-9084-4AC3-81A7-1E7BA6547F08"},"2471":{"isSerializedDate":true,"string":"Wed Feb 22 2012 12:43:10 GMT+0100 (CET)"},"2472":{"date":{"__isSmartRef__":true,"id":2473},"author":"sstamm","message":"","id":"F72B746E-B170-4EFB-9074-5E8770640B8A"},"2473":{"isSerializedDate":true,"string":"Wed Feb 22 2012 12:36:14 GMT+0100 (CET)"},"2474":{"date":{"__isSmartRef__":true,"id":2475},"author":"sstamm","message":"","id":"568D2EFD-C535-43AE-8944-6D8B967129F5"},"2475":{"isSerializedDate":true,"string":"Wed Feb 22 2012 12:23:04 GMT+0100 (CET)"},"2476":{"date":{"__isSmartRef__":true,"id":2477},"author":"sstamm","message":"","id":"AB2484A6-0707-4E13-845E-F0A5F48BBA3D"},"2477":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:59:45 GMT+0100 (CET)"},"2478":{"date":{"__isSmartRef__":true,"id":2479},"author":"sstamm","message":"","id":"97D20633-F76C-46A5-A32A-FFE9BC83CAB3"},"2479":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:59:10 GMT+0100 (CET)"},"2480":{"date":{"__isSmartRef__":true,"id":2481},"author":"sstamm","message":"","id":"8A697DF5-9A45-4A84-B709-9719BF55083E"},"2481":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:56:54 GMT+0100 (CET)"},"2482":{"date":{"__isSmartRef__":true,"id":2483},"author":"sstamm","message":"","id":"F2157D66-1571-4B9A-B325-6FA96488260F"},"2483":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:51:05 GMT+0100 (CET)"},"2484":{"date":{"__isSmartRef__":true,"id":2485},"author":"sstamm","message":"","id":"E5E808CA-06AB-47DC-A9C9-CA7967591545"},"2485":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:47:19 GMT+0100 (CET)"},"2486":{"date":{"__isSmartRef__":true,"id":2487},"author":"sstamm","message":"","id":"009DC4E0-23CA-485A-A796-801AA0F75049"},"2487":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:46:25 GMT+0100 (CET)"},"2488":{"date":{"__isSmartRef__":true,"id":2489},"author":"sstamm","message":"","id":"C0CE1397-6E2E-4E8C-AEFF-9017E24BB7E4"},"2489":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:45:05 GMT+0100 (CET)"},"2490":{"date":{"__isSmartRef__":true,"id":2491},"author":"sstamm","message":"","id":"FFE16986-548D-4AC2-A627-CF6416282BC4"},"2491":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:37:15 GMT+0100 (CET)"},"2492":{"date":{"__isSmartRef__":true,"id":2493},"author":"sstamm","message":"","id":"57213D63-7147-4057-ADC9-30994443B066"},"2493":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:35:29 GMT+0100 (CET)"},"2494":{"date":{"__isSmartRef__":true,"id":2495},"author":"sstamm","message":"","id":"75A31364-B380-4312-BB5B-F8F2DA1CE824"},"2495":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:31:52 GMT+0100 (CET)"},"2496":{"date":{"__isSmartRef__":true,"id":2497},"author":"sstamm","message":"","id":"5AA50B7E-7D33-44C4-807B-BF1ABA31D530"},"2497":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:14:10 GMT+0100 (CET)"},"2498":{"date":{"__isSmartRef__":true,"id":2499},"author":"sstamm","message":"","id":"BCDCC505-534C-45E5-9BB2-5238959A5AD0"},"2499":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:02:56 GMT+0100 (CET)"},"2500":{"date":{"__isSmartRef__":true,"id":2501},"author":"sstamm","message":"","id":"890D14F4-E89D-4E05-BFB9-875D6AB6C765"},"2501":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:01:50 GMT+0100 (CET)"},"2502":{"date":{"__isSmartRef__":true,"id":2503},"author":"sstamm","message":"","id":"B6FE0805-0D24-4267-8238-8B332352617E"},"2503":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:55:44 GMT+0100 (CET)"},"2504":{"date":{"__isSmartRef__":true,"id":2505},"author":"sstamm","message":"callbacks are working","id":"9348260A-3B55-4659-BC85-440BFBD98EA4"},"2505":{"isSerializedDate":true,"string":"Fri Feb 10 2012 09:45:55 GMT+0100 (CET)"},"2506":{"date":{"__isSmartRef__":true,"id":2507},"author":"sstamm","message":"made it more opaque","id":"1B84264C-2822-407F-A58F-19217BCD2762"},"2507":{"isSerializedDate":true,"string":"Wed Feb 08 2012 11:41:50 GMT+0100 (CET)"},"2508":{"date":{"__isSmartRef__":true,"id":2509},"author":"sstamm","message":"","id":"0FB41D7D-2A52-4782-814B-A66C24FCE569"},"2509":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:13:49 GMT+0100 (CET)"},"2510":{"date":{"__isSmartRef__":true,"id":2511},"author":"sstamm","message":"","id":"A0C2D7C1-04AF-493A-A7D7-70750F7D3E2F"},"2511":{"isSerializedDate":true,"string":"Thu Feb 02 2012 17:22:07 GMT+0100 (CET)"},"2512":{"date":{"__isSmartRef__":true,"id":2513},"author":"sstamm","message":"trollolol","id":"F6CFAD78-AC72-4DE2-9F38-79776C2E9462"},"2513":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:55:14 GMT+0100 (CET)"},"2514":{"date":{"__isSmartRef__":true,"id":2515},"author":"sstamm","message":"should be centered now","id":"EE366B4D-C272-477F-8C28-4EAE5A7EC7CB"},"2515":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:54:35 GMT+0100 (CET)"},"2516":{"date":{"__isSmartRef__":true,"id":2517},"author":"sstamm","message":"initial commit","id":"8920D925-DD16-4667-B8C7-FB74D78C2424"},"2517":{"isSerializedDate":true,"string":"Thu Feb 02 2012 13:26:01 GMT+0100 (CET)"},"2518":{"date":{"__isSmartRef__":true,"id":2519},"author":"sstamm","message":"changed text morph name","id":"80E88A3C-5AF3-48F2-A600-710877630997"},"2519":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:04:01 GMT+0100 (CET)"},"2520":{"date":{"__isSmartRef__":true,"id":2521},"author":"sstamm","message":"added loading script","id":"EE9B8F4D-1F03-4232-82E6-794046974F8F"},"2521":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:28:30 GMT+0100 (CET)"},"2522":{"date":{"__isSmartRef__":true,"id":2523},"author":"sstamm","message":"added disconnection","id":"11F19267-924E-4087-99ED-998245576BD2"},"2523":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:32:58 GMT+0100 (CET)"},"2524":{"date":{"__isSmartRef__":true,"id":2525},"author":"sstamm","message":"removed connections before deletion","id":"35A88218-6864-4D52-83A2-BFF7B9A6907C"},"2525":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:41:00 GMT+0100 (CET)"},"2526":{"date":{"__isSmartRef__":true,"id":2527},"author":"sstamm","message":"now able to load parts by name and category as well as per partItem","id":"F36A5782-461D-4813-95F8-0207990A261C"},"2527":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:24:30 GMT+0100 (CET)"},"2528":{"date":{"__isSmartRef__":true,"id":2529},"author":"sstamm","message":"now with round corners","id":"F42C39CB-CC37-467D-BF10-D362241F047E"},"2529":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:26:23 GMT+0100 (CET)"},"2530":{"date":{"__isSmartRef__":true,"id":2531},"author":"sstamm","message":"loadingMorph is sync now","id":"12ACFFC9-BA53-4A2A-ABD4-894A5ECE1145"},"2531":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:48:04 GMT+0100 (CET)"},"2532":{"date":{"__isSmartRef__":true,"id":2533},"author":"sstamm","message":"display the loadingMorph in new thread","id":"2BA51E30-F02B-4AF0-B3BE-52DD4ED522CC"},"2533":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:53:49 GMT+0100 (CET)"},"2534":{"date":{"__isSmartRef__":true,"id":2535},"author":"sstamm","message":"","id":"DF0AE4EA-1B08-4556-8BBE-E6488F23B8A3"},"2535":{"isSerializedDate":true,"string":"Thu Feb 02 2012 16:49:48 GMT+0100 (CET)"},"2536":{"date":{"__isSmartRef__":true,"id":2537},"author":"sstamm","message":"","id":"220821B3-C589-41C9-A324-8E7E6D9D6CEB"},"2537":{"isSerializedDate":true,"string":"Thu Feb 02 2012 16:58:43 GMT+0100 (CET)"},"2538":{"date":{"__isSmartRef__":true,"id":2539},"author":"sstamm","message":"","id":"DEBFACE2-7EC5-4A86-AD46-5A0A88A73707"},"2539":{"isSerializedDate":true,"string":"Thu Feb 02 2012 17:04:28 GMT+0100 (CET)"},"2540":{"date":{"__isSmartRef__":true,"id":2541},"author":"sstamm","message":"load request in new thread if loading should be async","id":"18282D28-D6D4-48C9-A508-6E3244449BD8"},"2541":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:10:27 GMT+0100 (CET)"},"2542":{"date":{"__isSmartRef__":true,"id":2543},"author":"sstamm","message":"added benchmarking output","id":"249CFF90-DDF5-4A83-9759-0289E96D7D58"},"2543":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:31:50 GMT+0100 (CET)"},"2544":{"date":{"__isSmartRef__":true,"id":2545},"author":"sstamm","message":"","id":"882082E1-29B6-418D-9B8B-672729D60619"},"2545":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:38:26 GMT+0100 (CET)"},"2546":{"date":{"__isSmartRef__":true,"id":2547},"author":"sstamm","message":"","id":"5179AEF9-E19F-4B0C-BBD8-556C5687988A"},"2547":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:44:11 GMT+0100 (CET)"},"2548":{"date":{"__isSmartRef__":true,"id":2549},"author":"sstamm","message":"","id":"1159C5B4-724E-4124-9D7B-5CD5DC4A8EE3"},"2549":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:48:14 GMT+0100 (CET)"},"2550":{"date":{"__isSmartRef__":true,"id":2551},"author":"sstamm","message":"","id":"2A718D1F-1036-41D6-999A-336F2B14E65D"},"2551":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:49:47 GMT+0100 (CET)"},"2552":{"date":{"__isSmartRef__":true,"id":2553},"author":"sstamm","message":"","id":"EB6BDD0C-7EEC-4124-B77F-2F106A601538"},"2553":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:59:48 GMT+0100 (CET)"},"2554":{"date":{"__isSmartRef__":true,"id":2555},"author":"sstamm","message":"","id":"63EC8D07-AB6A-450A-BB84-9B4D37E03647"},"2555":{"isSerializedDate":true,"string":"Tue Feb 07 2012 12:02:33 GMT+0100 (CET)"},"2556":{"date":{"__isSmartRef__":true,"id":2557},"author":"sstamm","message":"","id":"19CE12E4-5AA5-48DC-B1D1-B0EB0EDF1CB9"},"2557":{"isSerializedDate":true,"string":"Tue Feb 07 2012 12:03:42 GMT+0100 (CET)"},"2558":{"date":{"__isSmartRef__":true,"id":2559},"author":"sstamm","message":"first attempt to introduce callback functions to part loading","id":"22BD0B95-8948-411A-A56E-AD7CBE445F1D"},"2559":{"isSerializedDate":true,"string":"Thu Feb 09 2012 20:20:11 GMT+0100 (CET)"},"2560":{"date":{"__isSmartRef__":true,"id":2561},"author":"sstamm","message":"","id":"A216DFD2-9D1F-4E62-A22F-6B5472823E1B"},"2561":{"isSerializedDate":true,"string":"Fri Mar 16 2012 15:37:34 GMT+0100 (CET)"},"2562":{"date":{"__isSmartRef__":true,"id":2563},"author":"sstamm","message":"","id":"464E723A-08DC-433C-AA5C-CEC850DBAF0B"},"2563":{"isSerializedDate":true,"string":"Fri Mar 16 2012 15:42:29 GMT+0100 (CET)"},"2564":{"isSerializedDate":true,"string":"Fri Sep 07 2012 04:04:46 GMT+0200 (CEST)"},"2565":{"morph":{"__isSmartRef__":true,"id":2454},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2566":{"adjustForNewBounds":true},"2567":{"loadPart":{"__isSmartRef__":true,"id":2568},"loadFinished":{"__isSmartRef__":true,"id":2572},"loadPartByName":{"__isSmartRef__":true,"id":2576}},"2568":{"varMapping":{"__isSmartRef__":true,"id":2569},"source":"function loadPart(partItem, isAsync) {\n this.partItem = partItem;\n \n this.openInWorld();\n if(partItem.part) {\n this.setExtent(partItem.part.getExtent());\n }\n this.align(this.bounds().center(), $world.visibleBounds().center());\n \n \n if(typeof isAsync === \"function\") {\n this.callback = isAsync;\n }\n\n connect(partItem, 'part', this, \"loadFinished\");\n\n partItem.loadPart(isAsync);\n\n return partItem.part;\n\n}","funcProperties":{"__isSmartRef__":true,"id":2570},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2569":{"this":{"__isSmartRef__":true,"id":2454}},"2570":{"timestamp":{"__isSmartRef__":true,"id":2571},"user":"sstamm","tags":[]},"2571":{"isSerializedDate":true,"string":"Fri Mar 16 2012 15:42:18 GMT+0100 (CET)"},"2572":{"varMapping":{"__isSmartRef__":true,"id":2573},"source":"function loadFinished(part) {\n if(this.owner === $world.firstHand()) {\n $world.firstHand().removeAllMorphs();\n } else {\n this.owner.addMorph(part);\n part.align(part.bounds().center(), this.bounds().center());\n this.remove();\n }\n disconnect(this.partItem, 'part', this, \"loadFinished\");\n if(this.callback) {\n this.callback(part);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":2574},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2573":{"this":{"__isSmartRef__":true,"id":2454}},"2574":{"timestamp":{"__isSmartRef__":true,"id":2575},"user":"sstamm","tags":[]},"2575":{"isSerializedDate":true,"string":"Wed Feb 22 2012 14:01:53 GMT+0100 (CET)"},"2576":{"varMapping":{"__isSmartRef__":true,"id":2577},"source":"function loadPartByName(partName, optPartsSpaceName, isAsync) {\n var partItem = lively.PartsBin.getPartItem(partName, optPartsSpaceName);\n return this.loadPart(partItem, isAsync);\n}","funcProperties":{"__isSmartRef__":true,"id":2578},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2577":{"this":{"__isSmartRef__":true,"id":2454}},"2578":{"timestamp":{"__isSmartRef__":true,"id":2579},"user":"sstamm","tags":[]},"2579":{"isSerializedDate":true,"string":"Thu Feb 02 2012 17:03:18 GMT+0100 (CET)"},"2580":{"sourceObj":{"__isSmartRef__":true,"id":0},"sourceAttrName":"savedWorldAsURL","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"visitNewPageAfterSaveAs","converterString":null,"updaterString":"function ($upd, v) {\n if (v && v.toString() !== URL.source.toString()) {\n $upd(v)\n }\n }","varMapping":{"__isSmartRef__":true,"id":2581},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2581":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"2582":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/demos/GraphLayoutExample.xhtml","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"2583":{"isSerializedDate":true,"string":"Fri Sep 07 2012 04:04:46 GMT+0200 (CEST)"},"isSimplifiedRegistry":true}}]]>