"},"445":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:57:33 GMT+0100 (BST)"},"446":{"varMapping":{"__isSmartRef__":true,"id":447},"source":"function drawStackChart(w, h) {\n w = w - 30;\n h = h - 25;\n \n var maxX = this.data[0].length,\n maxY = this.maxYofData(this.data) || 10;\n\n var x = pv.Scale.linear(0, maxX).range(0, w),\n y = pv.Scale.linear(0, maxY).range(0, h);\n\n var vis = new pv.Panel()\n .width(w)\n .height(h)\n .bottom(20)\n .left(20)\n .right(10)\n .top(5);\n\n /* X-axis and ticks. */\n vis.add(pv.Rule)\n .data(x.ticks())\n .visible(function(d){return d})\n .left(x)\n .bottom(-5)\n .height(5)\n .anchor(\"bottom\").add(pv.Label)\n .text(x.tickFormat);\n\n /* The stack layout. */\n vis.add(pv.Layout.Stack)\n .layers(this.data)\n .x(function(d){return x(d.x)})\n .y(function(d){return y(d.y)})\n .layer.add(pv.Area);\n\n /* Y-axis and ticks. */\n vis.add(pv.Rule)\n .data(y.ticks(3))\n .bottom(y)\n .strokeStyle(function(d){return d ? \"rgba(128,128,128,.2)\" : \"#000\"})\n .anchor(\"left\").add(pv.Label)\n .text(y.tickFormat);\n\n return vis;\n}","funcProperties":{"__isSmartRef__":true,"id":448},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"447":{"this":{"__isSmartRef__":true,"id":303}},"448":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":445}},"449":{"varMapping":{"__isSmartRef__":true,"id":450},"source":"function render() {\n this.removeDrawing();\n\n var w = this.getExtent().x,\n h = this.getExtent().y;\n this.vis = this.draw(w, h);\n\n var svg = this.renderContext().svgNode;\n if (svg) svg.parentNode.removeChild(svg)\n var svg = NodeFactory.create('svg');\n this.renderContext().shapeNode.appendChild(svg);\n this.renderContext().svgNode = svg;\n this.vis.canvas(svg);\n this.vis.render();\n}","funcProperties":{"__isSmartRef__":true,"id":455},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"450":{"this":{"__isSmartRef__":true,"id":303},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":451}},"451":{"$super":{"__isSmartRef__":true,"id":452}},"452":{"varMapping":{"__isSmartRef__":true,"id":453},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":454},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"453":{"obj":{"__isSmartRef__":true,"id":303},"name":"render"},"454":{},"455":{},"456":{"varMapping":{"__isSmartRef__":true,"id":457},"source":"function setDataAndRender(data) {\n this.data = data;\t\n this.render();\n}","funcProperties":{"__isSmartRef__":true,"id":458},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"457":{"this":{"__isSmartRef__":true,"id":303}},"458":{},"459":{"varMapping":{"__isSmartRef__":true,"id":460},"source":"function prepareForNewRenderContext(renderCtx) {\n $super(renderCtx);\n lively.bindings.callWhenNotNull(Global, 'pv', this, 'render');\n}","funcProperties":{"__isSmartRef__":true,"id":465},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"460":{"this":{"__isSmartRef__":true,"id":303},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":461}},"461":{"$super":{"__isSmartRef__":true,"id":462}},"462":{"varMapping":{"__isSmartRef__":true,"id":463},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":464},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"463":{"obj":{"__isSmartRef__":true,"id":303},"name":"prepareForNewRenderContext"},"464":{},"465":{},"466":{"varMapping":{"__isSmartRef__":true,"id":467},"source":"function addDataAndRender(data) {\n // this.addDataAndRender([{x: 5, y: 7}, {x: 5, y: 9}, {x: 5, y: 11}, {x: 5, y: 17}]);\n // this.addDataAndRender({x: 17, y: 7});\n // this.addDataAndRender([10, 7]);\n // this.addDataAndRender([[10, 2], [10,1]]);\n if (data == null) return;\n\n // We need an array with multiple datasets, but accept 1 plain object or 1 plain array, too\n if ((typeof data == 'object') && !(data instanceof Array) ||\n ((data instanceof Array) && !(data[0] instanceof Array))) {\n data = [data];\n };\n\n // We only accept objects that respond to #x and #y, so convert those arrays\n data = data.collect(function (element) {\n if (element instanceof Array) {\n return {x: element[0], y: element[1]};\n } else {\n return element;\n }\n });\n\n if (!this.data)\n this.data = data;\n else {\n if (this.maxDataLength) {\n this.data = this.data.collect(function (subData) {\n return subData.slice(subData.length - this.maxDataLength, subData.length);\n });\n }\n for (i = 0; i < this.data.length; i++) {\n // Make sure we push to all datasets, repeat last data, if no new data is given\n this.data[i].push(data[i] ? data[i] : this.data[i].last());\n }\n }\n\n this.render();\n}","funcProperties":{"__isSmartRef__":true,"id":468},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"467":{"this":{"__isSmartRef__":true,"id":303}},"468":{"timestamp":{"__isSmartRef__":true,"id":469},"user":"timfelgentreff","tags":[]},"469":{"isSerializedDate":true,"string":"Mon Feb 13 2012 16:27:41 GMT+0000 (GMT)"},"470":{"varMapping":{"__isSmartRef__":true,"id":471},"source":"function drawAreaChart(w, h) {\n\tw = w - 30;\n\th = h - 25;\n\n\tvar vis = new pv.Panel()\n\t\t.width(w)\n\t\t.height(h)\n\t\t.bottom(20)\n\t\t.left(20)\n\t\t.right(10)\n\t\t.top(5);\n\n\tvar xMin = pv.min(this.data.collect(function(d) {\n\t\t\treturn d instanceof Array ? d[0] : null;\n\t\t})),\n\t\txMax = Math.max(\n\t\t\tthis.data.length - 1,\n\t\t\tpv.max(this.data.collect(function(d) {\n\t\t\t\treturn d instanceof Array ? d[0] : null;\n\t\t\t}))\n\t\t),\n\t\tyVals = this.data.collect(function(d) {\n\t\t\treturn d instanceof Array ? d[1] : d;\n\t\t}),\n\t\tx = (this.xScale ?\n\t\t\t(this.xScale.hasOwnProperty('isWrapper') ? this.xScale(xMax) : this.xScale) :\n\t\t\tpv.Scale.linear(xMin, xMax)\n\t\t).range(0, w),\n\t\ty = (this.yScale ?\n\t\t\t(this.yScale.hasOwnProperty('isWrapper') ? this.yScale(pv.max(yVals)) : this.yScale) :\n\t\t\tpv.Scale.linear(\n\t\t\t\tpv.min(yVals.concat(0)),\n\t\t\t\tpv.max(yVals)\n\t\t\t)\n\t\t).range(0, h);\n\n\tvis.add(pv.Rule)\n\t\t.data(y.ticks())\n\t\t.bottom(y)\n\t\t.strokeStyle(function(d) { return d ? \"#eee\" : \"#000\"; })\n\t.anchor(\"left\").add(pv.Label)\n\t\t.text(this.yFormat || y.tickFormat);\n\n\tvis.add(pv.Rule)\n\t\t.data(x.ticks().length < this.data.length ? x.ticks() : x.ticks(this.data.length))\n\t\t.visible(function(d) { return d != 0; })\n\t\t.left(x)\n\t\t.bottom(-5)\n\t\t.height(5)\n\t.anchor(\"bottom\").add(pv.Label)\n\t .text(this.xFormat || x.tickFormat);\n\n\tvis.add(pv.Area)\n\t\t.def('idx', 0)\n\t\t.data(this.data)\n\t\t.bottom(1)\n\t\t.left(function(d) {\n\t\t\tvar idx = this.idx();\n\n\t\t\tif (d instanceof Array)\n\t\t\t\tidx = d[0];\n\t\t\tthis.idx(idx + 1);\n\t\t\n\t\t\treturn x(idx);\n\t\t})\n\t\t.height(function(d) {\n\t\t\tif (d instanceof Array)\n\t\t\t\td = d[1];\n\t\t\treturn y(d);\n\t\t})\n\t\t.fillStyle(\"rgb(121,173,210)\")\n\t.anchor(\"top\").add(pv.Line)\n\t\t.lineWidth(3);\n\n\treturn vis;\n}","funcProperties":{"__isSmartRef__":true,"id":472},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"471":{"this":{"__isSmartRef__":true,"id":303}},"472":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":473}},"473":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:50:13 GMT+0100 (BST)"},"474":{"varMapping":{"__isSmartRef__":true,"id":475},"source":"function drawBarChart(w, h) {\n\tvar vis = new pv.Panel()\n\t\t.width(w)\n\t\t.height(h);\n\n\tvar yRange = pv.range(\n\t\tpv.min(this.data.concat(0)),\n\t\tpv.max(this.data), 5);\n\n\tvar leftPadding = 15,\n\t\teach_w = Math.floor(((w - leftPadding) / this.data.length) * 4 / 5),\n\t\teach_p = Math.ceil(each_w / 4)\n\t\teach_h = h / 20;\n\n\tvis.add(pv.Rule)\n\t\t.data(yRange)\n\t\t.bottom(function(d) { return d * each_h + .5; })\n\t.add(pv.Label);\n\n\tvis.add(pv.Bar)\n\t\t.data(this.data)\n\t\t.width(each_w)\n\t\t.height(function(d) { return d * each_h; })\n\t\t.bottom(0)\n\t\t.left(function() { return this.index * (each_w + each_p) + each_p / 2 + leftPadding; })\n\t\t.event(\"mouseover\", function() { console.log($A(arguments)); })\n\t.anchor(\"bottom\").add(pv.Label);\n\n\treturn vis;\n}","funcProperties":{"__isSmartRef__":true,"id":476},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"475":{"this":{"__isSmartRef__":true,"id":303}},"476":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":477}},"477":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:52:17 GMT+0100 (BST)"},"478":{"varMapping":{"__isSmartRef__":true,"id":479},"source":"function drawPieChart(w, h) {\n\tvar vis = new pv.Panel()\n\t\t.width(w)\n\t\t.height(h);\n\n\tvar max = Math.min(h, w),\n\t\tr = max / 2,\n\t\ta = pv.Scale.linear(0, pv.sum(this.data)).range(0, 2 * Math.PI);\n\n\tvis.add(pv.Wedge)\n\t\t.data(this.data.sort(pv.reverseOrder))\n\t\t.bottom((max + (h - max)) / 2)\n\t\t.left((max + (w - max)) / 2)\n\t\t.innerRadius(0)\n\t\t.outerRadius(r)\n\t\t.angle(a)\n\t.anchor(\"center\").add(pv.Label)\n\t\t.visible(function(d) { return d > .15; })\n\t\t.textAngle(0);\n\n\treturn vis;\n}","funcProperties":{"__isSmartRef__":true,"id":480},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"479":{"this":{"__isSmartRef__":true,"id":303}},"480":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":481}},"481":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:52:21 GMT+0100 (BST)"},"482":{"varMapping":{"__isSmartRef__":true,"id":483},"source":"function setChartType(cType) {\n\tvar chart = this;\n\tif (!chart.vis) {\n\t\talert('Chart type could not be set. Chart is missing!');\n\t\tchart.render();\n\t\treturn;\n\t}\n\n\tswitch (cType.toLowerCase()) {\n\tcase 'bar':\n\t\tchart.drawBarChart.asScriptOf(chart, 'draw');\n\t\tbreak;\n\tcase 'pie':\n\t\tchart.drawPieChart.asScriptOf(chart, 'draw');\n\t\tbreak;\n\tcase 'area':\n\t\tchart.drawAreaChart.asScriptOf(chart, 'draw');\n\t\tbreak;\n case 'stack':\n\t\tchart.drawStackChart.asScriptOf(chart, 'draw');\n\t\tbreak;\n\tdefault:\n\t\talert('The chart type \"' + cType + '\" is unknown!');\n\t\treturn;\n\t}\n this.render()\n}","funcProperties":{"__isSmartRef__":true,"id":484},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"483":{"this":{"__isSmartRef__":true,"id":303}},"484":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":485}},"485":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:58:09 GMT+0100 (BST)"},"486":{"varMapping":{"__isSmartRef__":true,"id":487},"source":"function reset() {\n this.connections = {addDataColumnAndRender: {}}\n this.setupStackExample()\n this.maxDataLength = 20;\n this.setChartType('stack');\n}","funcProperties":{"__isSmartRef__":true,"id":488},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"487":{"this":{"__isSmartRef__":true,"id":303}},"488":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":489}},"489":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:59:18 GMT+0100 (BST)"},"490":{"varMapping":{"__isSmartRef__":true,"id":491},"source":"function addDataColumnAndRender(data) {\n if (data == null) return;\n \n if (!this.data || data.length !== this.data.length) {\n this.data = []; // reset because of data changed\n }\n\n if (this.maxDataLength) {\n this.data = this.data.slice(\n this.data.length-this.maxDataLength,this.data.length);\n }\n\n while (data.length > this.data.length) {\n this.data.push([])\n }\n var x = this.data[0].length ;\n this.data.forEach(function(row, index) {\n row.push({x: x, y: data[index]})\n })\n\n this.render();\n}","funcProperties":{"__isSmartRef__":true,"id":492},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"491":{"this":{"__isSmartRef__":true,"id":303}},"492":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":493}},"493":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:57:20 GMT+0100 (BST)"},"494":{"varMapping":{"__isSmartRef__":true,"id":495},"source":"function maxYofData(data) {\n // this.maxYofData([[{x: 1, y:1}]])\n // this.maxYofData([[{x: 1, y:1}, {x: 2, y:2}],[{x: 1, y:2},{x: 2, y:3}]])\n // this.maxYofData(this.data)\n // data = this.data\n\n if (!data) return undefined;\n\n var xlength = data[0].length\n var ylength = data.length\n var sums = []\n // when the data collections are layed out weired I have to do it manually..\n for(var i=0; i < xlength; i++) {\n var s = 0;\n for(var j=0; j < ylength; j++) {\n s += data[j][i].y\n };\n sums.push(s)\n }\n return pv.max(sums)\n}","funcProperties":{"__isSmartRef__":true,"id":496},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"495":{"this":{"__isSmartRef__":true,"id":303}},"496":{"timestamp":{"__isSmartRef__":true,"id":497},"user":"timfelgentreff","tags":[]},"497":{"isSerializedDate":true,"string":"Mon Feb 13 2012 16:18:51 GMT+0000 (GMT)"},"498":{"varMapping":{"__isSmartRef__":true,"id":499},"source":"function setupStackExample() {\n // this.setupStackExample()\n \n this.data = pv.range(4).map(function() {\n return pv.range(0, 4, .1).map(function(x) {\n return {x: x, y: Math.sin(x) + Math.random() * .5 + 2};\n });\n });\n this.setChartType('stack')\n}","funcProperties":{"__isSmartRef__":true,"id":500},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"499":{"this":{"__isSmartRef__":true,"id":303}},"500":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":501}},"501":{"isSerializedDate":true,"string":"Fri Sep 30 2011 16:00:01 GMT+0100 (BST)"},"502":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":303}},"503":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":9},"targetMethodName":"realignConnection","varMapping":{"__isSmartRef__":true,"id":504},"dependendConnections":[{"__isSmartRef__":true,"id":505},{"__isSmartRef__":true,"id":507},{"__isSmartRef__":true,"id":509},{"__isSmartRef__":true,"id":511}],"oldTransform":{"__isSmartRef__":true,"id":513},"__LivelyClassName__":"lively.morphic.GeometryTransformConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"504":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":9}},"505":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":503},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":506},"dependedBy":{"__isSmartRef__":true,"id":503},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"506":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":503}},"507":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":503},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":508},"dependedBy":{"__isSmartRef__":true,"id":503},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"508":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":503}},"509":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":503},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":510},"dependedBy":{"__isSmartRef__":true,"id":503},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"510":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":503}},"511":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":503},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":512},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","dependedBy":{"__isSmartRef__":true,"id":503},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"512":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":503}},"513":{"d":1,"a":1,"f":122.19,"e":700.5799999999999,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":514},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"514":{"a":1,"b":0,"c":0,"d":1,"e":700.5799999999999,"f":122.19,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"515":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":8},"targetMethodName":"alignToMagnet","varMapping":{"__isSmartRef__":true,"id":516},"dependendConnections":[{"__isSmartRef__":true,"id":517},{"__isSmartRef__":true,"id":519},{"__isSmartRef__":true,"id":521},{"__isSmartRef__":true,"id":523}],"oldTransform":{"__isSmartRef__":true,"id":525},"__LivelyClassName__":"lively.morphic.GeometryTransformConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"516":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":8}},"517":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":515},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":518},"dependedBy":{"__isSmartRef__":true,"id":515},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"518":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":515}},"519":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":515},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":520},"dependedBy":{"__isSmartRef__":true,"id":515},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"520":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":515}},"521":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":515},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":522},"dependedBy":{"__isSmartRef__":true,"id":515},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"522":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":515}},"523":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":515},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":524},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","dependedBy":{"__isSmartRef__":true,"id":515},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"524":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":515}},"525":{"d":1,"a":1,"f":122.19,"e":700.5799999999999,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":526},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"526":{"a":1,"b":0,"c":0,"d":1,"e":700.5799999999999,"f":122.19,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"527":{"submorphs":[{"__isSmartRef__":true,"id":528},{"__isSmartRef__":true,"id":543},{"__isSmartRef__":true,"id":583}],"scripts":[],"id":"D823E90F-E355-429F-8F06-1DE22644CBFA","shape":{"__isSmartRef__":true,"id":597},"__layered_droppingEnabled__":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"Timer","partsBinMetaInfo":{"__isSmartRef__":true,"id":78},"eventHandler":{"__isSmartRef__":true,"id":598},"attributeConnections":[{"__isSmartRef__":true,"id":599},{"__isSmartRef__":true,"id":600},{"__isSmartRef__":true,"id":870},{"__isSmartRef__":true,"id":872},{"__isSmartRef__":true,"id":874},{"__isSmartRef__":true,"id":876},{"__isSmartRef__":true,"id":880}],"doNotSerialize":["$$running","$$tickTime","$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$running","$$tickTime","$$_Position","$$_Scale","$$_Rotation","$$owner"],"layout":{"__isSmartRef__":true,"id":882},"connections":{"__isSmartRef__":true,"id":884},"magnets":[{"__isSmartRef__":true,"id":887}],"isInLayoutCycle":false,"__serializedExpressions__":["distanceToDragEvent","_Position"],"scriptAnnotations":{"__isSmartRef__":true,"id":888},"running":false,"derivationIds":[483],"_ClipMode":"visible","owner":{"__isSmartRef__":true,"id":0},"moved":true,"_Rotation":0,"_Scale":1,"tick":1309799475780,"isBeingDragged":false,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":893},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","distanceToDragEvent":"lively.pt(75.0,3.0)","_Position":"lively.pt(1032.0,66.0)"},"528":{"submorphs":[],"scripts":[],"id":"56092A68-2D6E-42AE-82D0-80FB4227FF55","shape":{"__isSmartRef__":true,"id":529},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","textColor","distanceToDragEvent"],"_MaxTextWidth":85.33100664937592,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":12,"name":"tickInput","partsBinMetaInfo":{"__isSmartRef__":true,"id":530},"textChunks":[{"__isSmartRef__":true,"id":531}],"charsReplaced":"","lastFindLoc":5,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":533},"owner":{"__isSmartRef__":true,"id":527},"layout":{"__isSmartRef__":true,"id":534},"_Align":"center","lastDragTime":1309420114788,"magnets":[{"__isSmartRef__":true,"id":535},{"__isSmartRef__":true,"id":536},{"__isSmartRef__":true,"id":537},{"__isSmartRef__":true,"id":538},{"__isSmartRef__":true,"id":539},{"__isSmartRef__":true,"id":540},{"__isSmartRef__":true,"id":541},{"__isSmartRef__":true,"id":542}],"derivationIds":[484],"_WhiteSpaceHandling":"pre-wrap","_ClipMode":"visible","isBeingDragged":false,"priorSelectionRange":[2,2],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(8.6,39.2)","textColor":"Color.rgb(0,0,0)","distanceToDragEvent":"lively.pt(60.5,-10.5)"},"529":{"fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(85.3,20.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)"},"530":{"partsSpaceName":"PartsBin/Basic","migrationLevel":2,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"531":{"style":{"__isSmartRef__":true,"id":532},"chunkOwner":{"__isSmartRef__":true,"id":528},"storedString":"1000","_id":"_6452","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"532":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"533":{"morph":{"__isSmartRef__":true,"id":528},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"534":{},"535":{"morph":{"__isSmartRef__":true,"id":528},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.0)","cachedGlobalPosition":"lively.pt(1126.6,254.2)"},"536":{"morph":{"__isSmartRef__":true,"id":528},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,0.0)","cachedGlobalPosition":"lively.pt(1169.2,254.2)"},"537":{"morph":{"__isSmartRef__":true,"id":528},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.0)","cachedGlobalPosition":"lively.pt(1211.9,254.2)"},"538":{"morph":{"__isSmartRef__":true,"id":528},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.5)","cachedGlobalPosition":"lively.pt(1211.9,262.7)"},"539":{"morph":{"__isSmartRef__":true,"id":528},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,1.0)","cachedGlobalPosition":"lively.pt(1211.9,271.2)"},"540":{"morph":{"__isSmartRef__":true,"id":528},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,1.0)","cachedGlobalPosition":"lively.pt(1169.2,271.2)"},"541":{"morph":{"__isSmartRef__":true,"id":528},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,1.0)","cachedGlobalPosition":"lively.pt(1126.6,271.2)"},"542":{"morph":{"__isSmartRef__":true,"id":528},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.5)","cachedGlobalPosition":"lively.pt(1126.6,262.7)"},"543":{"submorphs":[{"__isSmartRef__":true,"id":544}],"scripts":[],"id":"19D1DA4C-1F6C-4FAB-9059-564A86C7B0B2","shape":{"__isSmartRef__":true,"id":557},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":558},"lighterFill":{"__isSmartRef__":true,"id":563},"label":{"__isSmartRef__":true,"id":544},"name":"ScriptableButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":568},"attributeConnections":[{"__isSmartRef__":true,"id":569}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":570},"owner":{"__isSmartRef__":true,"id":527},"magnets":[{"__isSmartRef__":true,"id":571},{"__isSmartRef__":true,"id":572},{"__isSmartRef__":true,"id":573},{"__isSmartRef__":true,"id":574},{"__isSmartRef__":true,"id":575},{"__isSmartRef__":true,"id":576},{"__isSmartRef__":true,"id":577},{"__isSmartRef__":true,"id":578}],"derivationIds":[485],"_ClipMode":"visible","isPressed":false,"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":579},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(8.6,67.8)"},"544":{"submorphs":[],"scripts":[],"id":"E59F2680-055B-4FD5-B294-B7F4FC0E1453","shape":{"__isSmartRef__":true,"id":545},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"_MaxTextWidth":86,"_MaxTextHeight":21,"textStyle":null,"owner":{"__isSmartRef__":true,"id":543},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":546}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":548},"_HandStyle":"default","_PointerEvents":"none","magnets":[{"__isSmartRef__":true,"id":549},{"__isSmartRef__":true,"id":550},{"__isSmartRef__":true,"id":551},{"__isSmartRef__":true,"id":552},{"__isSmartRef__":true,"id":553},{"__isSmartRef__":true,"id":554},{"__isSmartRef__":true,"id":555},{"__isSmartRef__":true,"id":556}],"derivationIds":[486],"_WordBreak":"break-all","_FontSize":10,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"545":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(86.0,21.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"546":{"style":{"__isSmartRef__":true,"id":547},"chunkOwner":{"__isSmartRef__":true,"id":544},"_id":"_88890","storedString":"start","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"547":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"548":{"morph":{"__isSmartRef__":true,"id":544},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"549":{"morph":{"__isSmartRef__":true,"id":544},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.0)","cachedGlobalPosition":"lively.pt(1126.6,279.8)"},"550":{"morph":{"__isSmartRef__":true,"id":544},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,0.0)","cachedGlobalPosition":"lively.pt(1169.6,279.8)"},"551":{"morph":{"__isSmartRef__":true,"id":544},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.0)","cachedGlobalPosition":"lively.pt(1212.6,279.8)"},"552":{"morph":{"__isSmartRef__":true,"id":544},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.5)","cachedGlobalPosition":"lively.pt(1212.6,290.3)"},"553":{"morph":{"__isSmartRef__":true,"id":544},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,1.0)","cachedGlobalPosition":"lively.pt(1212.6,300.8)"},"554":{"morph":{"__isSmartRef__":true,"id":544},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,1.0)","cachedGlobalPosition":"lively.pt(1169.6,300.8)"},"555":{"morph":{"__isSmartRef__":true,"id":544},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,1.0)","cachedGlobalPosition":"lively.pt(1126.6,300.8)"},"556":{"morph":{"__isSmartRef__":true,"id":544},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.5)","cachedGlobalPosition":"lively.pt(1126.6,290.3)"},"557":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":558},"_BorderRadius":5.2,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(86.0,21.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"558":{"stops":[{"__isSmartRef__":true,"id":559},{"__isSmartRef__":true,"id":560},{"__isSmartRef__":true,"id":561},{"__isSmartRef__":true,"id":562}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"559":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"560":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"561":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"562":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"563":{"stops":[{"__isSmartRef__":true,"id":564},{"__isSmartRef__":true,"id":565},{"__isSmartRef__":true,"id":566},{"__isSmartRef__":true,"id":567}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"564":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"565":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"566":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"567":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"568":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":2,"partName":"ScriptableButton","comment":"Has a script that is called on button press","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"569":{"sourceObj":{"__isSmartRef__":true,"id":543},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":543},"targetMethodName":"onFire","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"570":{"morph":{"__isSmartRef__":true,"id":543},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"571":{"morph":{"__isSmartRef__":true,"id":543},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.0)","cachedGlobalPosition":"lively.pt(1126.6,279.8)"},"572":{"morph":{"__isSmartRef__":true,"id":543},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,0.0)","cachedGlobalPosition":"lively.pt(1169.6,279.8)"},"573":{"morph":{"__isSmartRef__":true,"id":543},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.0)","cachedGlobalPosition":"lively.pt(1212.6,279.8)"},"574":{"morph":{"__isSmartRef__":true,"id":543},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.5)","cachedGlobalPosition":"lively.pt(1212.6,290.3)"},"575":{"morph":{"__isSmartRef__":true,"id":543},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,1.0)","cachedGlobalPosition":"lively.pt(1212.6,300.8)"},"576":{"morph":{"__isSmartRef__":true,"id":543},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,1.0)","cachedGlobalPosition":"lively.pt(1169.6,300.8)"},"577":{"morph":{"__isSmartRef__":true,"id":543},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,1.0)","cachedGlobalPosition":"lively.pt(1126.6,300.8)"},"578":{"morph":{"__isSmartRef__":true,"id":543},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.5)","cachedGlobalPosition":"lively.pt(1126.6,290.3)"},"579":{"onFire":{"__isSmartRef__":true,"id":580}},"580":{"varMapping":{"__isSmartRef__":true,"id":581},"source":"function onFire() {\n this.owner.running = !this.owner.running\n if (this.owner.running) {\n this.setLabel(\"stop\")\n } else {\n this.setLabel(\"start\")\n }\n}","funcProperties":{"__isSmartRef__":true,"id":582},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"581":{"this":{"__isSmartRef__":true,"id":543}},"582":{},"583":{"submorphs":[],"scripts":[],"id":"2F121754-0514-4534-9335-AD864C3D01D1","shape":{"__isSmartRef__":true,"id":584},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","textColor","_TextColor"],"_MaxTextWidth":85.35493484089704,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"Text1","partsBinMetaInfo":{"__isSmartRef__":true,"id":585},"textChunks":[{"__isSmartRef__":true,"id":586}],"charsReplaced":"some text","lastFindLoc":-9,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":588},"owner":{"__isSmartRef__":true,"id":527},"_WhiteSpaceHandling":"pre-wrap","_Align":"center","magnets":[{"__isSmartRef__":true,"id":589},{"__isSmartRef__":true,"id":590},{"__isSmartRef__":true,"id":591},{"__isSmartRef__":true,"id":592},{"__isSmartRef__":true,"id":593},{"__isSmartRef__":true,"id":594},{"__isSmartRef__":true,"id":595},{"__isSmartRef__":true,"id":596}],"derivationIds":[487],"_ClipMode":"visible","isBeingDragged":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(8.6,8.6)","textColor":"Color.rgb(0,0,0)","_TextColor":"Color.rgb(255,255,255)"},"584":{"fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(85.4,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"585":{"partsSpaceName":"PartsBin/Basic","migrationLevel":2,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"586":{"style":{"__isSmartRef__":true,"id":587},"morph":{"__isSmartRef__":true,"id":583},"chunkOwner":{"__isSmartRef__":true,"id":583},"storedString":"Timer","_id":"_6454","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"587":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"588":{"morph":{"__isSmartRef__":true,"id":583},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"589":{"morph":{"__isSmartRef__":true,"id":583},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.0)","cachedGlobalPosition":"lively.pt(1126.6,223.6)"},"590":{"morph":{"__isSmartRef__":true,"id":583},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,0.0)","cachedGlobalPosition":"lively.pt(1169.3,223.6)"},"591":{"morph":{"__isSmartRef__":true,"id":583},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.0)","cachedGlobalPosition":"lively.pt(1211.9,223.6)"},"592":{"morph":{"__isSmartRef__":true,"id":583},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.5)","cachedGlobalPosition":"lively.pt(1211.9,234.6)"},"593":{"morph":{"__isSmartRef__":true,"id":583},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,1.0)","cachedGlobalPosition":"lively.pt(1211.9,245.6)"},"594":{"morph":{"__isSmartRef__":true,"id":583},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,1.0)","cachedGlobalPosition":"lively.pt(1169.3,245.6)"},"595":{"morph":{"__isSmartRef__":true,"id":583},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,1.0)","cachedGlobalPosition":"lively.pt(1126.6,245.6)"},"596":{"morph":{"__isSmartRef__":true,"id":583},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.5)","cachedGlobalPosition":"lively.pt(1126.6,234.6)"},"597":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":0,"_BorderRadius":14.425000000000002,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(103.2,97.4)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(192,192,192)","_Padding":"lively.rect(0,0,0,0)"},"598":{"morph":{"__isSmartRef__":true,"id":527},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"599":{"sourceObj":{"__isSmartRef__":true,"id":527},"sourceAttrName":"running","targetObj":{"__isSmartRef__":true,"id":527},"targetMethodName":"updateTickingScripts","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"600":{"sourceObj":{"__isSmartRef__":true,"id":527},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":601},"targetMethodName":"realignConnection","varMapping":{"__isSmartRef__":true,"id":869},"dependendConnections":[{"__isSmartRef__":true,"id":870},{"__isSmartRef__":true,"id":872},{"__isSmartRef__":true,"id":874},{"__isSmartRef__":true,"id":876}],"oldTransform":{"__isSmartRef__":true,"id":878},"__LivelyClassName__":"lively.morphic.GeometryTransformConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"601":{"submorphs":[{"__isSmartRef__":true,"id":602}],"scripts":[],"shape":{"__isSmartRef__":true,"id":609},"eventHandler":{"__isSmartRef__":true,"id":612},"_ClipMode":"visible","derivationIds":[],"id":"12303851-A9B5-4564-B575-16FA89001F63","__layered_droppingEnabled__":true,"halosEnabled":true,"draggingEnabled":false,"owner":null,"controlPoints":[{"__isSmartRef__":true,"id":613},{"__isSmartRef__":true,"id":614}],"con":{"__isSmartRef__":true,"id":859},"showsMorphMenu":true,"showsHalos":false,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":861},"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"602":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":603},"eventHandler":{"__isSmartRef__":true,"id":608},"_ClipMode":"visible","derivationIds":[],"id":"B8A65087-320E-459F-8FF0-A75984DDC1E7","__layered_droppingEnabled__":true,"halosEnabled":true,"draggingEnabled":false,"__serializedExpressions__":["_Position"],"owner":{"__isSmartRef__":true,"id":601},"_Rotation":2.604645522505773,"__LivelyClassName__":"lively.morphic.Path","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","_Position":"lively.pt(582.4,299.3)"},"603":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":604},{"__isSmartRef__":true,"id":605},{"__isSmartRef__":true,"id":606},{"__isSmartRef__":true,"id":607}],"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(-12.0,-6.0)","_Extent":"lively.pt(17.0,13.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"604":{"isAbsolute":true,"x":-11,"y":-5,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"605":{"isAbsolute":true,"x":-11,"y":7,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"606":{"isAbsolute":true,"x":5,"y":1,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"607":{"isAbsolute":true,"x":-11,"y":-5,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"608":{"morph":{"__isSmartRef__":true,"id":602},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"609":{"dontChangeShape":false,"cachedVertices":null,"_PathElements":[{"__isSmartRef__":true,"id":610},{"__isSmartRef__":true,"id":611}],"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Path","__SourceModuleName__":"Global.lively.morphic.PathShapes","_Position":"lively.pt(581.4,158.0)","_Extent":"lively.pt(236.6,141.3)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"610":{"isAbsolute":true,"x":818,"y":159,"__LivelyClassName__":"lively.morphic.Shapes.MoveTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"611":{"isAbsolute":true,"x":582.3632350848528,"y":299.27159179242136,"__LivelyClassName__":"lively.morphic.Shapes.LineTo","__SourceModuleName__":"Global.lively.morphic.PathShapes"},"612":{"morph":{"__isSmartRef__":true,"id":601},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"613":{"morph":{"__isSmartRef__":true,"id":601},"index":0,"__LivelyClassName__":"lively.morphic.ControlPoint","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"614":{"morph":{"__isSmartRef__":true,"id":601},"index":1,"connectedMagnet":{"__isSmartRef__":true,"id":615},"marker":{"__isSmartRef__":true,"id":602},"markerDirection":"prev","__LivelyClassName__":"lively.morphic.ControlPoint","__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs"},"615":{"morph":{"__isSmartRef__":true,"id":616},"__serializedExpressions__":["position"],"connectedControlPoints":[{"__isSmartRef__":true,"id":614}],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.0)"},"616":{"submorphs":[],"scripts":[],"id":"F499EA56-7778-4D5F-930F-BD26C424223B","shape":{"__isSmartRef__":true,"id":617},"__layered_droppingEnabled__":true,"halosEnabled":true,"data":[[{"__isSmartRef__":true,"id":618},{"__isSmartRef__":true,"id":619},{"__isSmartRef__":true,"id":620},{"__isSmartRef__":true,"id":621},{"__isSmartRef__":true,"id":622},{"__isSmartRef__":true,"id":623},{"__isSmartRef__":true,"id":624},{"__isSmartRef__":true,"id":625},{"__isSmartRef__":true,"id":626},{"__isSmartRef__":true,"id":627},{"__isSmartRef__":true,"id":628},{"__isSmartRef__":true,"id":629},{"__isSmartRef__":true,"id":630},{"__isSmartRef__":true,"id":631},{"__isSmartRef__":true,"id":632},{"__isSmartRef__":true,"id":633},{"__isSmartRef__":true,"id":634},{"__isSmartRef__":true,"id":635},{"__isSmartRef__":true,"id":636},{"__isSmartRef__":true,"id":637},{"__isSmartRef__":true,"id":638},{"__isSmartRef__":true,"id":639},{"__isSmartRef__":true,"id":640},{"__isSmartRef__":true,"id":641},{"__isSmartRef__":true,"id":642},{"__isSmartRef__":true,"id":643},{"__isSmartRef__":true,"id":644},{"__isSmartRef__":true,"id":645},{"__isSmartRef__":true,"id":646},{"__isSmartRef__":true,"id":647},{"__isSmartRef__":true,"id":648},{"__isSmartRef__":true,"id":649},{"__isSmartRef__":true,"id":650}]],"doNotSerialize":["vis","$$_Position","$$_Scale","$$_Rotation","$$owner"],"showsHalos":false,"__serializedExpressions__":["_Position","distanceToDragEvent"],"name":"ProtovisMorph","partsBinMetaInfo":{"__isSmartRef__":true,"id":651},"graph":{"__isSmartRef__":true,"id":652},"layout":{"__isSmartRef__":true,"id":684},"_ClipMode":"visible","eventHandler":{"__isSmartRef__":true,"id":685},"owner":{"__isSmartRef__":true,"id":686},"isBeingDragged":false,"connections":{"__isSmartRef__":true,"id":778},"maxDataLength":20,"derivationIds":[1655,"97D3D9CA-0183-4A2F-9244-712BB668247F"],"grabbingEnabled":false,"_Rotation":0,"_Scale":1,"magnets":[{"__isSmartRef__":true,"id":615},{"__isSmartRef__":true,"id":780},{"__isSmartRef__":true,"id":781},{"__isSmartRef__":true,"id":782},{"__isSmartRef__":true,"id":783},{"__isSmartRef__":true,"id":784},{"__isSmartRef__":true,"id":785},{"__isSmartRef__":true,"id":786}],"attributeConnections":[{"__isSmartRef__":true,"id":722},{"__isSmartRef__":true,"id":724},{"__isSmartRef__":true,"id":726},{"__isSmartRef__":true,"id":728},{"__isSmartRef__":true,"id":730},{"__isSmartRef__":true,"id":742},{"__isSmartRef__":true,"id":744},{"__isSmartRef__":true,"id":746},{"__isSmartRef__":true,"id":748},{"__isSmartRef__":true,"id":750}],"doNotCopyProperties":["$$_Position","$$_Scale","$$_Rotation","$$owner"],"isCopyMorphRef":true,"morphRefId":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":787},"__LivelyClassName__":"ProtoVisMorph","__SourceModuleName__":"Global.apps.ProtoVisInterface","_Position":"lively.pt(-264.1,-203.4)","distanceToDragEvent":"lively.pt(228.2,-246.2)"},"617":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Position","_Padding"],"_Fill":null,"_BorderWidth":1.484,"_BorderRadius":0,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(329.0,148.0)","_BorderColor":"Color.rgb(146,146,146)","_Position":"lively.pt(6.7,2.2)","_Padding":"lively.rect(0,0,0,0)"},"618":{"x":0,"y":139.3413418694331},"619":{"x":1,"y":152.96843745689768},"620":{"x":2,"y":165.06712298193565},"621":{"x":3,"y":175.51651237807454},"622":{"x":4,"y":184.21219880057703},"623":{"x":5,"y":191.0672978251212},"624":{"x":6,"y":196.01331556824832},"625":{"x":7,"y":199.00083305560514},"626":{"x":8,"y":200},"627":{"x":9,"y":108.06046117362796},"628":{"x":10,"y":124.3219936541329},"629":{"x":11,"y":139.3413418694331},"630":{"x":12,"y":152.96843745689768},"631":{"x":13,"y":152.96843745689768},"632":{"x":14,"y":165.06712298193565},"633":{"x":15,"y":165.06712298193565},"634":{"x":16,"y":10},"635":{"x":17,"y":108.06046117362796},"636":{"x":18,"y":108.06046117362796},"637":{"x":19,"y":108.06046117362796},"638":{"x":20,"y":108.06046117362796},"639":{"x":21,"y":108.06046117362796},"640":{"x":22,"y":108.06046117362796},"641":{"x":23,"y":108.06046117362796},"642":{"x":24,"y":108.06046117362796},"643":{"x":25,"y":108.06046117362796},"644":{"x":26,"y":108.06046117362796},"645":{"x":27,"y":108.06046117362796},"646":{"x":28,"y":124.3219936541329},"647":{"x":29,"y":139.3413418694331},"648":{"x":30,"y":152.96843745689768},"649":{"x":31,"y":165.06712298193565},"650":{"x":32,"y":175.51651237807454},"651":{"migrationLevel":2,"partsSpaceName":"PartsBin/NewWorld","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"652":{"analytics":{"__isSmartRef__":true,"id":653},"animate":{"__isSmartRef__":true,"id":657},"data":{"__isSmartRef__":true,"id":659},"display":{"__isSmartRef__":true,"id":661},"flex":{"__isSmartRef__":true,"id":662},"physics":{"__isSmartRef__":true,"id":663},"query":{"__isSmartRef__":true,"id":664},"scale":{"__isSmartRef__":true,"id":666},"util":{"__isSmartRef__":true,"id":667},"vis":{"__isSmartRef__":true,"id":671}},"653":{"cluster":{"__isSmartRef__":true,"id":654},"graph":{"__isSmartRef__":true,"id":655},"optimization":{"__isSmartRef__":true,"id":656}},"654":{"AgglomerativeCluster":3938,"CommunityStructure":3812,"HierarchicalCluster":6714,"MergeEdge":743},"655":{"BetweennessCentrality":3534,"LinkDistance":5731,"MaxFlowMinCut":7840,"ShortestPaths":5914,"SpanningTree":3416},"656":{"AspectRatioBanker":7074},"657":{"Easing":17010,"FunctionSequence":5842,"interpolate":{"__isSmartRef__":true,"id":658},"ISchedulable":1041,"Parallel":5176,"Pause":449,"Scheduler":5593,"Sequence":5534,"Transition":9201,"Transitioner":19975,"TransitionEvent":1116,"Tween":6006},"658":{"ArrayInterpolator":1983,"ColorInterpolator":2047,"DateInterpolator":1375,"Interpolator":8746,"MatrixInterpolator":2202,"NumberInterpolator":1382,"ObjectInterpolator":1629,"PointInterpolator":1675,"RectangleInterpolator":2042},"659":{"converters":{"__isSmartRef__":true,"id":660},"DataField":1759,"DataSchema":2165,"DataSet":586,"DataSource":3331,"DataTable":772,"DataUtil":3322},"660":{"Converters":721,"DelimitedTextConverter":4294,"GraphMLConverter":9800,"IDataConverter":1314,"JSONConverter":2220},"661":{"DirtySprite":8833,"LineSprite":1732,"RectSprite":3623,"TextSprite":10066},"662":{"FlareVis":4116},"663":{"DragForce":1082,"GravityForce":1336,"IForce":319,"NBodyForce":10498,"Particle":2822,"Simulation":9983,"Spring":2213,"SpringForce":1681},"664":{"AggregateExpression":1616,"And":1027,"Arithmetic":3891,"Average":891,"BinaryExpression":2893,"Comparison":5103,"CompositeExpression":3677,"Count":781,"DateUtil":4141,"Distinct":933,"Expression":5130,"ExpressionIterator":3617,"Fn":3240,"If":2732,"IsA":2039,"Literal":1214,"Match":3748,"Maximum":843,"methods":{"__isSmartRef__":true,"id":665},"Minimum":843,"Not":1554,"Or":970,"Query":13896,"Range":1594,"StringUtil":4130,"Sum":791,"Variable":1124,"Variance":1876,"Xor":1101},"665":{"add":593,"and":330,"average":287,"count":277,"distinct":292,"div":595,"eq":594,"fn":460,"gt":603,"gte":625,"iff":748,"isa":461,"lt":597,"lte":619,"max":283,"min":283,"mod":591,"mul":603,"neq":599,"not":386,"or":323,"orderby":307,"range":772,"select":296,"stddev":363,"sub":600,"sum":280,"update":307,"variance":335,"where":299,"xor":354,"_":264},"666":{"IScaleMap":2105,"LinearScale":1316,"LogScale":3151,"OrdinalScale":3770,"QuantileScale":2435,"QuantitativeScale":4839,"RootScale":1756,"Scale":4268,"ScaleType":1821,"TimeScale":5833},"667":{"Arrays":8258,"Colors":10001,"Dates":8217,"Displays":12555,"Filter":2324,"Geometry":10993,"heap":{"__isSmartRef__":true,"id":668},"IEvaluable":335,"IPredicate":383,"IValueProxy":874,"math":{"__isSmartRef__":true,"id":669},"Maths":17705,"Orientation":1486,"palette":{"__isSmartRef__":true,"id":670},"Property":5559,"Shapes":19118,"Sort":6887,"Stats":6557,"Strings":22026},"668":{"FibonacciHeap":9354,"HeapNode":1233},"669":{"DenseMatrix":3165,"IMatrix":2815,"SparseMatrix":3366},"670":{"ColorPalette":6367,"Palette":1229,"ShapePalette":2059,"SizePalette":2291},"671":{"axis":{"__isSmartRef__":true,"id":672},"controls":{"__isSmartRef__":true,"id":673},"data":{"__isSmartRef__":true,"id":674},"events":{"__isSmartRef__":true,"id":676},"legend":{"__isSmartRef__":true,"id":677},"operator":{"__isSmartRef__":true,"id":678},"Visualization":16540},"672":{"Axes":1302,"Axis":24593,"AxisGridLine":652,"AxisLabel":636,"CartesianAxes":6703},"673":{"AnchorControl":2138,"ClickControl":3824,"Control":1353,"ControlList":4665,"DragControl":2649,"ExpandControl":2832,"HoverControl":4896,"IControl":763,"PanZoomControl":5222,"SelectionControl":7862,"TooltipControl":8435},"674":{"Data":20544,"DataList":19788,"DataSprite":10349,"EdgeSprite":3301,"NodeSprite":19382,"render":{"__isSmartRef__":true,"id":675},"ScaleBinding":11275,"Tree":7147,"TreeBuilder":9930},"675":{"ArrowType":698,"EdgeRenderer":5569,"IRenderer":353,"ShapeRenderer":2247},"676":{"DataEvent":2313,"SelectionEvent":1880,"TooltipEvent":1701,"VisualizationEvent":1117},"677":{"Legend":20859,"LegendItem":4614,"LegendRange":10530},"678":{"distortion":{"__isSmartRef__":true,"id":679},"encoder":{"__isSmartRef__":true,"id":680},"filter":{"__isSmartRef__":true,"id":681},"IOperator":1286,"label":{"__isSmartRef__":true,"id":682},"layout":{"__isSmartRef__":true,"id":683},"Operator":2490,"OperatorList":5248,"OperatorSequence":4190,"OperatorSwitch":2581,"SortOperator":2023},"679":{"BifocalDistortion":4461,"Distortion":6314,"FisheyeDistortion":3444},"680":{"ColorEncoder":3179,"Encoder":4060,"PropertyEncoder":4138,"ShapeEncoder":1690,"SizeEncoder":1830},"681":{"FisheyeTreeFilter":5219,"GraphDistanceFilter":3165,"VisibilityFilter":3509},"682":{"Labeler":9956,"RadialLabeler":3899,"StackedAreaLabeler":3202},"683":{"AxisLayout":6725,"BundledEdgeRouter":3727,"CircleLayout":9317,"CirclePackingLayout":12003,"DendrogramLayout":4853,"ForceDirectedLayout":8411,"IcicleTreeLayout":4864,"IndentedTreeLayout":3174,"Layout":7881,"NodeLinkTreeLayout":12870,"PieLayout":2728,"RadialTreeLayout":12348,"RandomLayout":870,"StackedAreaLayout":9121,"TreeMapLayout":9191},"684":{"resizeWidth":true,"resizeHeight":true,"moveVertical":false,"moveHorizontal":false},"685":{"morph":{"__isSmartRef__":true,"id":616},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"686":{"submorphs":[{"__isSmartRef__":true,"id":687},{"__isSmartRef__":true,"id":616}],"scripts":[],"id":"BF2376BF-B4C2-421A-8500-B04B743491CD","shape":{"__isSmartRef__":true,"id":708},"__layered_droppingEnabled__":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"showsHalos":false,"name":"ProtovisStackDrawing","partsBinMetaInfo":{"__isSmartRef__":true,"id":709},"eventHandler":{"__isSmartRef__":true,"id":714},"layout":{"__isSmartRef__":true,"id":715},"connections":{"__isSmartRef__":true,"id":716},"isBeingDragged":false,"scriptAnnotations":{"__isSmartRef__":true,"id":718},"derivationIds":[1652,"B342A700-E605-4E46-9550-1CE2422215EE"],"_ClipMode":"visible","owner":{"__isSmartRef__":true,"id":0},"moved":true,"_Rotation":0,"_Scale":1,"attributeConnections":[{"__isSmartRef__":true,"id":721},{"__isSmartRef__":true,"id":732},{"__isSmartRef__":true,"id":734},{"__isSmartRef__":true,"id":736},{"__isSmartRef__":true,"id":741},{"__isSmartRef__":true,"id":752},{"__isSmartRef__":true,"id":754},{"__isSmartRef__":true,"id":756}],"doNotSerialize":["$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$_Position","$$_Scale","$$_Rotation","$$owner"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":761},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(838.0,500.0)","distanceToDragEvent":"lively.pt(384.5,-13.5)"},"687":{"submorphs":[{"__isSmartRef__":true,"id":688}],"scripts":[],"id":"CB5E3000-ABF0-4DDE-BFDF-9323BC3D050C","shape":{"__isSmartRef__":true,"id":693},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","padding","distanceToDragEvent"],"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":694},"lighterFill":{"__isSmartRef__":true,"id":699},"label":{"__isSmartRef__":true,"id":688},"attributeConnections":[{"__isSmartRef__":true,"id":704}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"name":"resetButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":706},"eventHandler":{"__isSmartRef__":true,"id":707},"owner":{"__isSmartRef__":true,"id":686},"derivationIds":[1653,"C9CC6A08-D9B3-4B82-A16B-1706FE031D8D"],"_ClipMode":"visible","isPressed":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(117.0,-225.5)","padding":"lively.rect(5,0,0,0)","distanceToDragEvent":"lively.pt(-172.5,-256.9)"},"688":{"submorphs":[],"scripts":[],"id":"5367AC8D-0F81-4D6C-9EB9-5308AE0FBA8F","shape":{"__isSmartRef__":true,"id":689},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":116,"_MaxTextHeight":null,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","textColor","padding","_Padding"],"owner":{"__isSmartRef__":true,"id":687},"eventsAreIgnored":true,"textChunks":[{"__isSmartRef__":true,"id":690}],"prevScroll":[0,0],"_FontFamily":"Helvetica, Sans-Serif","eventHandler":{"__isSmartRef__":true,"id":692},"_HandStyle":"default","_PointerEvents":"none","_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","_Align":"center","_MinTextWidth":116,"_MinTextHeight":null,"derivationIds":[1654,"55F9D559-AFAD-4381-8898-F51965B51F4F"],"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","textColor":"Color.rgb(0,0,0)","padding":"lively.rect(5,0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"689":{"borderWidth":0,"fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(116.0,18.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"690":{"style":{"__isSmartRef__":true,"id":691},"chunkOwner":{"__isSmartRef__":true,"id":688},"storedString":"reset","_id":"_7069","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"691":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"692":{"morph":{"__isSmartRef__":true,"id":688},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"693":{"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"_Fill":{"__isSmartRef__":true,"id":694},"_BorderWidth":1,"_BorderRadius":5,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(116.0,20.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"694":{"stops":[{"__isSmartRef__":true,"id":695},{"__isSmartRef__":true,"id":696},{"__isSmartRef__":true,"id":697},{"__isSmartRef__":true,"id":698}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"695":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"696":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"697":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"698":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"699":{"stops":[{"__isSmartRef__":true,"id":700},{"__isSmartRef__":true,"id":701},{"__isSmartRef__":true,"id":702},{"__isSmartRef__":true,"id":703}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"700":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"701":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"702":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"703":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"704":{"sourceObj":{"__isSmartRef__":true,"id":687},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":616},"targetMethodName":"reset","converterString":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":705},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"705":{"source":{"__isSmartRef__":true,"id":687},"target":{"__isSmartRef__":true,"id":616}},"706":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":2,"comment":"Simple button. Connect to 'fire' to trigger actions when the button is pressed.","partName":"Button","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"707":{"morph":{"__isSmartRef__":true,"id":687},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"708":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Position","_Padding"],"_BorderWidth":1,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(572.2,202.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(255,255,255)","_Position":"lively.pt(-261.5,-235.5)","_Padding":"lively.rect(0,0,0,0)"},"709":{"migrationLevel":4,"partsSpaceName":"PartsBin/Visualization/","partName":"ProtovisStackDrawing","comment":"undefined","changes":[{"__isSmartRef__":true,"id":710},{"__isSmartRef__":true,"id":712}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"710":{"date":{"__isSmartRef__":true,"id":711},"author":"timfelgentreff","message":"Fix addDataAndRender to be more permissive and do what we want","id":"44A519C2-F678-479B-8E69-A0DD6CC8E397"},"711":{"isSerializedDate":true,"string":"Mon Feb 13 2012 16:28:57 GMT+0000 (GMT)"},"712":{"date":{"__isSmartRef__":true,"id":713},"author":"lauritz","message":"fixed origin","id":"7C7F9186-AD2F-413B-9FEF-B810B76885E4"},"713":{"isSerializedDate":true,"string":"Tue Nov 15 2011 19:26:39 GMT+0000 (GMT)"},"714":{"morph":{"__isSmartRef__":true,"id":686},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"715":{},"716":{"addDataAndRender":{"__isSmartRef__":true,"id":717}},"717":{"x":4,"y":3},"718":{"reset":{"__isSmartRef__":true,"id":719}},"719":{"time":{"__isSmartRef__":true,"id":720},"user":"robertkrahn"},"720":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:27:14 GMT+0100 (BST)"},"721":{"sourceObj":{"__isSmartRef__":true,"id":686},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":722},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":740},"dependedBy":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"722":{"sourceObj":{"__isSmartRef__":true,"id":616},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":601},"targetMethodName":"realignConnection","varMapping":{"__isSmartRef__":true,"id":723},"dependendConnections":[{"__isSmartRef__":true,"id":724},{"__isSmartRef__":true,"id":726},{"__isSmartRef__":true,"id":728},{"__isSmartRef__":true,"id":730},{"__isSmartRef__":true,"id":721},{"__isSmartRef__":true,"id":732},{"__isSmartRef__":true,"id":734},{"__isSmartRef__":true,"id":736}],"oldTransform":{"__isSmartRef__":true,"id":738},"__LivelyClassName__":"lively.morphic.GeometryTransformConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"723":{"source":{"__isSmartRef__":true,"id":616},"target":{"__isSmartRef__":true,"id":601}},"724":{"sourceObj":{"__isSmartRef__":true,"id":616},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":722},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":725},"dependedBy":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"725":{"source":{"__isSmartRef__":true,"id":616},"target":{"__isSmartRef__":true,"id":722}},"726":{"sourceObj":{"__isSmartRef__":true,"id":616},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":722},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":727},"dependedBy":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"727":{"source":{"__isSmartRef__":true,"id":616},"target":{"__isSmartRef__":true,"id":722}},"728":{"sourceObj":{"__isSmartRef__":true,"id":616},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":722},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":729},"dependedBy":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"729":{"source":{"__isSmartRef__":true,"id":616},"target":{"__isSmartRef__":true,"id":722}},"730":{"sourceObj":{"__isSmartRef__":true,"id":616},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":722},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":731},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","dependedBy":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"731":{"source":{"__isSmartRef__":true,"id":616},"target":{"__isSmartRef__":true,"id":722}},"732":{"sourceObj":{"__isSmartRef__":true,"id":686},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":722},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":733},"dependedBy":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"733":{"source":{"__isSmartRef__":true,"id":686},"target":{"__isSmartRef__":true,"id":722}},"734":{"sourceObj":{"__isSmartRef__":true,"id":686},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":722},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":735},"dependedBy":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"735":{"source":{"__isSmartRef__":true,"id":686},"target":{"__isSmartRef__":true,"id":722}},"736":{"sourceObj":{"__isSmartRef__":true,"id":686},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":722},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":737},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","dependedBy":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"737":{"source":{"__isSmartRef__":true,"id":686},"target":{"__isSmartRef__":true,"id":722}},"738":{"d":1,"a":1,"f":296.6182637551444,"e":573.8561054954682,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":739},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"739":{"a":1,"b":0,"c":0,"d":1,"e":573.8561054954682,"f":296.6182637551444,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"740":{"source":{"__isSmartRef__":true,"id":686},"target":{"__isSmartRef__":true,"id":722}},"741":{"sourceObj":{"__isSmartRef__":true,"id":686},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":742},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":760},"dependedBy":{"__isSmartRef__":true,"id":742},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"742":{"sourceObj":{"__isSmartRef__":true,"id":616},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":614},"targetMethodName":"alignToMagnet","varMapping":{"__isSmartRef__":true,"id":743},"dependendConnections":[{"__isSmartRef__":true,"id":744},{"__isSmartRef__":true,"id":746},{"__isSmartRef__":true,"id":748},{"__isSmartRef__":true,"id":750},{"__isSmartRef__":true,"id":741},{"__isSmartRef__":true,"id":752},{"__isSmartRef__":true,"id":754},{"__isSmartRef__":true,"id":756}],"oldTransform":{"__isSmartRef__":true,"id":758},"__LivelyClassName__":"lively.morphic.GeometryTransformConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"743":{"source":{"__isSmartRef__":true,"id":616},"target":{"__isSmartRef__":true,"id":614}},"744":{"sourceObj":{"__isSmartRef__":true,"id":616},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":742},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":745},"dependedBy":{"__isSmartRef__":true,"id":742},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"745":{"source":{"__isSmartRef__":true,"id":616},"target":{"__isSmartRef__":true,"id":742}},"746":{"sourceObj":{"__isSmartRef__":true,"id":616},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":742},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":747},"dependedBy":{"__isSmartRef__":true,"id":742},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"747":{"source":{"__isSmartRef__":true,"id":616},"target":{"__isSmartRef__":true,"id":742}},"748":{"sourceObj":{"__isSmartRef__":true,"id":616},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":742},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":749},"dependedBy":{"__isSmartRef__":true,"id":742},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"749":{"source":{"__isSmartRef__":true,"id":616},"target":{"__isSmartRef__":true,"id":742}},"750":{"sourceObj":{"__isSmartRef__":true,"id":616},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":742},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":751},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","dependedBy":{"__isSmartRef__":true,"id":742},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"751":{"source":{"__isSmartRef__":true,"id":616},"target":{"__isSmartRef__":true,"id":742}},"752":{"sourceObj":{"__isSmartRef__":true,"id":686},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":742},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":753},"dependedBy":{"__isSmartRef__":true,"id":742},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"753":{"source":{"__isSmartRef__":true,"id":686},"target":{"__isSmartRef__":true,"id":742}},"754":{"sourceObj":{"__isSmartRef__":true,"id":686},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":742},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":755},"dependedBy":{"__isSmartRef__":true,"id":742},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"755":{"source":{"__isSmartRef__":true,"id":686},"target":{"__isSmartRef__":true,"id":742}},"756":{"sourceObj":{"__isSmartRef__":true,"id":686},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":742},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":757},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","dependedBy":{"__isSmartRef__":true,"id":742},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"757":{"source":{"__isSmartRef__":true,"id":686},"target":{"__isSmartRef__":true,"id":742}},"758":{"d":1,"a":1,"f":296.6182637551444,"e":573.8561054954682,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":759},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"759":{"a":1,"b":0,"c":0,"d":1,"e":573.8561054954682,"f":296.6182637551444,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"760":{"source":{"__isSmartRef__":true,"id":686},"target":{"__isSmartRef__":true,"id":742}},"761":{"addDataAndRender":{"__isSmartRef__":true,"id":762},"reset":{"__isSmartRef__":true,"id":765},"prepareForNewRenderContext":{"__isSmartRef__":true,"id":768},"setupConnections":{"__isSmartRef__":true,"id":775}},"762":{"varMapping":{"__isSmartRef__":true,"id":763},"source":"function addDataAndRender(data) {\n this.get('ProtovisMorph').addDataAndRender(data)\n}","funcProperties":{"__isSmartRef__":true,"id":764},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"763":{"this":{"__isSmartRef__":true,"id":686}},"764":{},"765":{"varMapping":{"__isSmartRef__":true,"id":766},"source":"function reset() {\n this.connections = {addDataAndRender: {x: 4, y: 3}}\n this.get('ProtovisMorph').reset();\n}","funcProperties":{"__isSmartRef__":true,"id":767},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"766":{"this":{"__isSmartRef__":true,"id":686}},"767":{},"768":{"varMapping":{"__isSmartRef__":true,"id":769},"source":"function prepareForNewRenderContext(renderCtx) {\n $super(renderCtx);\n lively.bindings.callWhenNotNull(Global, 'pv', this.get('ProtovisMorph'), 'render');\n}","funcProperties":{"__isSmartRef__":true,"id":774},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"769":{"this":{"__isSmartRef__":true,"id":686},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":770}},"770":{"$super":{"__isSmartRef__":true,"id":771}},"771":{"varMapping":{"__isSmartRef__":true,"id":772},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":773},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"772":{"obj":{"__isSmartRef__":true,"id":686},"name":"prepareForNewRenderContext"},"773":{},"774":{},"775":{"varMapping":{"__isSmartRef__":true,"id":776},"source":"function setupConnections() {\n connect(this.get('resetButton'), 'fire', this.get('ProtovisMorph'), 'render',\n {updater: function($upd) { this.targetObj.data = []; $upd() }})\n}","funcProperties":{"__isSmartRef__":true,"id":777},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"776":{"this":{"__isSmartRef__":true,"id":686}},"777":{},"778":{"addDataColumnAndRender":{"__isSmartRef__":true,"id":779}},"779":{},"780":{"morph":{"__isSmartRef__":true,"id":616},"__serializedExpressions__":["position"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,0.0)"},"781":{"morph":{"__isSmartRef__":true,"id":616},"__serializedExpressions__":["position"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.0)"},"782":{"morph":{"__isSmartRef__":true,"id":616},"__serializedExpressions__":["position"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.5)"},"783":{"morph":{"__isSmartRef__":true,"id":616},"__serializedExpressions__":["position"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,1.0)"},"784":{"morph":{"__isSmartRef__":true,"id":616},"__serializedExpressions__":["position"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,1.0)"},"785":{"morph":{"__isSmartRef__":true,"id":616},"__serializedExpressions__":["position"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,1.0)"},"786":{"morph":{"__isSmartRef__":true,"id":616},"__serializedExpressions__":["position"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.5)"},"787":{"restoreRenderContextAfterCopy":{"__isSmartRef__":true,"id":788},"draw":{"__isSmartRef__":true,"id":795},"render":{"__isSmartRef__":true,"id":806},"setDataAndRender":{"__isSmartRef__":true,"id":813},"prepareForNewRenderContext":{"__isSmartRef__":true,"id":816},"addDataAndRender":{"__isSmartRef__":true,"id":823},"drawAreaChart":{"__isSmartRef__":true,"id":827},"drawBarChart":{"__isSmartRef__":true,"id":831},"drawPieChart":{"__isSmartRef__":true,"id":835},"setChartType":{"__isSmartRef__":true,"id":839},"reset":{"__isSmartRef__":true,"id":843},"addDataColumnAndRender":{"__isSmartRef__":true,"id":847},"drawStackChart":{"__isSmartRef__":true,"id":803},"maxYofData":{"__isSmartRef__":true,"id":851},"setupStackExample":{"__isSmartRef__":true,"id":855}},"788":{"varMapping":{"__isSmartRef__":true,"id":789},"source":"function restoreRenderContextAfterCopy(renderCtx) {\n $super(renderCtx);\n lively.bindings.callWhenNotNull(Global, 'pv', this, 'render');\n}","funcProperties":{"__isSmartRef__":true,"id":794},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"789":{"this":{"__isSmartRef__":true,"id":616},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":790}},"790":{"$super":{"__isSmartRef__":true,"id":791}},"791":{"varMapping":{"__isSmartRef__":true,"id":792},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":793},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"792":{"obj":{"__isSmartRef__":true,"id":616},"name":"restoreRenderContextAfterCopy"},"793":{},"794":{},"795":{"varMapping":{"__isSmartRef__":true,"id":796},"source":"function drawStackChart(w, h) {\n w = w - 30;\n h = h - 25;\n \n var maxX = this.data[0].length,\n maxY = this.maxYofData(this.data) || 10;\n\n var x = pv.Scale.linear(0, maxX).range(0, w),\n y = pv.Scale.linear(0, maxY).range(0, h);\n\n var vis = new pv.Panel()\n .width(w)\n .height(h)\n .bottom(20)\n .left(20)\n .right(10)\n .top(5);\n\n /* X-axis and ticks. */\n vis.add(pv.Rule)\n .data(x.ticks())\n .visible(function(d){return d})\n .left(x)\n .bottom(-5)\n .height(5)\n .anchor(\"bottom\").add(pv.Label)\n .text(x.tickFormat);\n\n /* The stack layout. */\n vis.add(pv.Layout.Stack)\n .layers(this.data)\n .x(function(d){return x(d.x)})\n .y(function(d){return y(d.y)})\n .layer.add(pv.Area);\n\n /* Y-axis and ticks. */\n vis.add(pv.Rule)\n .data(y.ticks(3))\n .bottom(y)\n .strokeStyle(function(d){return d ? \"rgba(128,128,128,.2)\" : \"#000\"})\n .anchor(\"left\").add(pv.Label)\n .text(y.tickFormat);\n\n return vis;\n}","funcProperties":{"__isSmartRef__":true,"id":801},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"796":{"this":{"__isSmartRef__":true,"id":616},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":797}},"797":{"$super":{"__isSmartRef__":true,"id":798}},"798":{"varMapping":{"__isSmartRef__":true,"id":799},"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":800},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"799":{"obj":{"__isSmartRef__":true,"id":616},"name":"draw"},"800":{},"801":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":802},"hasLivelyClosure":true,"livelyClosure":{"__isSmartRef__":true,"id":803},"declaredObject":""},"802":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:57:33 GMT+0100 (BST)"},"803":{"varMapping":{"__isSmartRef__":true,"id":804},"source":"function drawStackChart(w, h) {\n w = w - 30;\n h = h - 25;\n \n var maxX = this.data[0].length,\n maxY = this.maxYofData(this.data) || 10;\n\n var x = pv.Scale.linear(0, maxX).range(0, w),\n y = pv.Scale.linear(0, maxY).range(0, h);\n\n var vis = new pv.Panel()\n .width(w)\n .height(h)\n .bottom(20)\n .left(20)\n .right(10)\n .top(5);\n\n /* X-axis and ticks. */\n vis.add(pv.Rule)\n .data(x.ticks())\n .visible(function(d){return d})\n .left(x)\n .bottom(-5)\n .height(5)\n .anchor(\"bottom\").add(pv.Label)\n .text(x.tickFormat);\n\n /* The stack layout. */\n vis.add(pv.Layout.Stack)\n .layers(this.data)\n .x(function(d){return x(d.x)})\n .y(function(d){return y(d.y)})\n .layer.add(pv.Area);\n\n /* Y-axis and ticks. */\n vis.add(pv.Rule)\n .data(y.ticks(3))\n .bottom(y)\n .strokeStyle(function(d){return d ? \"rgba(128,128,128,.2)\" : \"#000\"})\n .anchor(\"left\").add(pv.Label)\n .text(y.tickFormat);\n\n return vis;\n}","funcProperties":{"__isSmartRef__":true,"id":805},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"804":{"this":{"__isSmartRef__":true,"id":616}},"805":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":802}},"806":{"varMapping":{"__isSmartRef__":true,"id":807},"source":"function render() {\n this.removeDrawing();\n\n var w = this.getExtent().x,\n h = this.getExtent().y;\n this.vis = this.draw(w, h);\n\n var svg = this.renderContext().svgNode;\n if (svg) svg.parentNode.removeChild(svg)\n var svg = NodeFactory.create('svg');\n this.renderContext().shapeNode.appendChild(svg);\n this.renderContext().svgNode = svg;\n this.vis.canvas(svg);\n this.vis.render();\n}","funcProperties":{"__isSmartRef__":true,"id":812},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"807":{"this":{"__isSmartRef__":true,"id":616},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":808}},"808":{"$super":{"__isSmartRef__":true,"id":809}},"809":{"varMapping":{"__isSmartRef__":true,"id":810},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":811},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"810":{"obj":{"__isSmartRef__":true,"id":616},"name":"render"},"811":{},"812":{},"813":{"varMapping":{"__isSmartRef__":true,"id":814},"source":"function setDataAndRender(data) {\n this.data = data;\t\n this.render();\n}","funcProperties":{"__isSmartRef__":true,"id":815},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"814":{"this":{"__isSmartRef__":true,"id":616}},"815":{},"816":{"varMapping":{"__isSmartRef__":true,"id":817},"source":"function prepareForNewRenderContext(renderCtx) {\n $super(renderCtx);\n lively.bindings.callWhenNotNull(Global, 'pv', this, 'render');\n}","funcProperties":{"__isSmartRef__":true,"id":822},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"817":{"this":{"__isSmartRef__":true,"id":616},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":818}},"818":{"$super":{"__isSmartRef__":true,"id":819}},"819":{"varMapping":{"__isSmartRef__":true,"id":820},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":821},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"820":{"obj":{"__isSmartRef__":true,"id":616},"name":"prepareForNewRenderContext"},"821":{},"822":{},"823":{"varMapping":{"__isSmartRef__":true,"id":824},"source":"function addDataAndRender(data) {\n // this.addDataAndRender([{x: 5, y: 7}, {x: 5, y: 9}, {x: 5, y: 11}, {x: 5, y: 17}]);\n // this.addDataAndRender({x: 17, y: 7});\n // this.addDataAndRender([10, 7]);\n // this.addDataAndRender([[10, 2], [10,1]]);\n if (data == null) return;\n\n // We need an array with multiple datasets, but accept 1 plain object or 1 plain array, too\n if ((typeof data == 'object') && !(data instanceof Array) ||\n ((data instanceof Array) && !(data[0] instanceof Array))) {\n data = [data];\n };\n\n // We only accept objects that respond to #x and #y, so convert those arrays\n data = data.collect(function (element) {\n if (element instanceof Array) {\n return {x: element[0], y: element[1]};\n } else {\n return element;\n }\n });\n\n if (!this.data)\n this.data = data;\n else {\n if (this.maxDataLength) {\n this.data = this.data.collect(function (subData) {\n return subData.slice(subData.length - this.maxDataLength, subData.length);\n });\n }\n for (i = 0; i < this.data.length; i++) {\n // Make sure we push to all datasets, repeat last data, if no new data is given\n this.data[i].push(data[i] ? data[i] : this.data[i].last());\n }\n }\n\n this.render();\n}","funcProperties":{"__isSmartRef__":true,"id":825},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"824":{"this":{"__isSmartRef__":true,"id":616}},"825":{"timestamp":{"__isSmartRef__":true,"id":826},"user":"timfelgentreff","tags":[]},"826":{"isSerializedDate":true,"string":"Mon Feb 13 2012 16:27:41 GMT+0000 (GMT)"},"827":{"varMapping":{"__isSmartRef__":true,"id":828},"source":"function drawAreaChart(w, h) {\n\tw = w - 30;\n\th = h - 25;\n\n\tvar vis = new pv.Panel()\n\t\t.width(w)\n\t\t.height(h)\n\t\t.bottom(20)\n\t\t.left(20)\n\t\t.right(10)\n\t\t.top(5);\n\n\tvar xMin = pv.min(this.data.collect(function(d) {\n\t\t\treturn d instanceof Array ? d[0] : null;\n\t\t})),\n\t\txMax = Math.max(\n\t\t\tthis.data.length - 1,\n\t\t\tpv.max(this.data.collect(function(d) {\n\t\t\t\treturn d instanceof Array ? d[0] : null;\n\t\t\t}))\n\t\t),\n\t\tyVals = this.data.collect(function(d) {\n\t\t\treturn d instanceof Array ? d[1] : d;\n\t\t}),\n\t\tx = (this.xScale ?\n\t\t\t(this.xScale.hasOwnProperty('isWrapper') ? this.xScale(xMax) : this.xScale) :\n\t\t\tpv.Scale.linear(xMin, xMax)\n\t\t).range(0, w),\n\t\ty = (this.yScale ?\n\t\t\t(this.yScale.hasOwnProperty('isWrapper') ? this.yScale(pv.max(yVals)) : this.yScale) :\n\t\t\tpv.Scale.linear(\n\t\t\t\tpv.min(yVals.concat(0)),\n\t\t\t\tpv.max(yVals)\n\t\t\t)\n\t\t).range(0, h);\n\n\tvis.add(pv.Rule)\n\t\t.data(y.ticks())\n\t\t.bottom(y)\n\t\t.strokeStyle(function(d) { return d ? \"#eee\" : \"#000\"; })\n\t.anchor(\"left\").add(pv.Label)\n\t\t.text(this.yFormat || y.tickFormat);\n\n\tvis.add(pv.Rule)\n\t\t.data(x.ticks().length < this.data.length ? x.ticks() : x.ticks(this.data.length))\n\t\t.visible(function(d) { return d != 0; })\n\t\t.left(x)\n\t\t.bottom(-5)\n\t\t.height(5)\n\t.anchor(\"bottom\").add(pv.Label)\n\t .text(this.xFormat || x.tickFormat);\n\n\tvis.add(pv.Area)\n\t\t.def('idx', 0)\n\t\t.data(this.data)\n\t\t.bottom(1)\n\t\t.left(function(d) {\n\t\t\tvar idx = this.idx();\n\n\t\t\tif (d instanceof Array)\n\t\t\t\tidx = d[0];\n\t\t\tthis.idx(idx + 1);\n\t\t\n\t\t\treturn x(idx);\n\t\t})\n\t\t.height(function(d) {\n\t\t\tif (d instanceof Array)\n\t\t\t\td = d[1];\n\t\t\treturn y(d);\n\t\t})\n\t\t.fillStyle(\"rgb(121,173,210)\")\n\t.anchor(\"top\").add(pv.Line)\n\t\t.lineWidth(3);\n\n\treturn vis;\n}","funcProperties":{"__isSmartRef__":true,"id":829},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"828":{"this":{"__isSmartRef__":true,"id":616}},"829":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":830}},"830":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:50:13 GMT+0100 (BST)"},"831":{"varMapping":{"__isSmartRef__":true,"id":832},"source":"function drawBarChart(w, h) {\n\tvar vis = new pv.Panel()\n\t\t.width(w)\n\t\t.height(h);\n\n\tvar yRange = pv.range(\n\t\tpv.min(this.data.concat(0)),\n\t\tpv.max(this.data), 5);\n\n\tvar leftPadding = 15,\n\t\teach_w = Math.floor(((w - leftPadding) / this.data.length) * 4 / 5),\n\t\teach_p = Math.ceil(each_w / 4)\n\t\teach_h = h / 20;\n\n\tvis.add(pv.Rule)\n\t\t.data(yRange)\n\t\t.bottom(function(d) { return d * each_h + .5; })\n\t.add(pv.Label);\n\n\tvis.add(pv.Bar)\n\t\t.data(this.data)\n\t\t.width(each_w)\n\t\t.height(function(d) { return d * each_h; })\n\t\t.bottom(0)\n\t\t.left(function() { return this.index * (each_w + each_p) + each_p / 2 + leftPadding; })\n\t\t.event(\"mouseover\", function() { console.log($A(arguments)); })\n\t.anchor(\"bottom\").add(pv.Label);\n\n\treturn vis;\n}","funcProperties":{"__isSmartRef__":true,"id":833},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"832":{"this":{"__isSmartRef__":true,"id":616}},"833":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":834}},"834":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:52:17 GMT+0100 (BST)"},"835":{"varMapping":{"__isSmartRef__":true,"id":836},"source":"function drawPieChart(w, h) {\n\tvar vis = new pv.Panel()\n\t\t.width(w)\n\t\t.height(h);\n\n\tvar max = Math.min(h, w),\n\t\tr = max / 2,\n\t\ta = pv.Scale.linear(0, pv.sum(this.data)).range(0, 2 * Math.PI);\n\n\tvis.add(pv.Wedge)\n\t\t.data(this.data.sort(pv.reverseOrder))\n\t\t.bottom((max + (h - max)) / 2)\n\t\t.left((max + (w - max)) / 2)\n\t\t.innerRadius(0)\n\t\t.outerRadius(r)\n\t\t.angle(a)\n\t.anchor(\"center\").add(pv.Label)\n\t\t.visible(function(d) { return d > .15; })\n\t\t.textAngle(0);\n\n\treturn vis;\n}","funcProperties":{"__isSmartRef__":true,"id":837},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"836":{"this":{"__isSmartRef__":true,"id":616}},"837":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":838}},"838":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:52:21 GMT+0100 (BST)"},"839":{"varMapping":{"__isSmartRef__":true,"id":840},"source":"function setChartType(cType) {\n\tvar chart = this;\n\tif (!chart.vis) {\n\t\talert('Chart type could not be set. Chart is missing!');\n\t\tchart.render();\n\t\treturn;\n\t}\n\n\tswitch (cType.toLowerCase()) {\n\tcase 'bar':\n\t\tchart.drawBarChart.asScriptOf(chart, 'draw');\n\t\tbreak;\n\tcase 'pie':\n\t\tchart.drawPieChart.asScriptOf(chart, 'draw');\n\t\tbreak;\n\tcase 'area':\n\t\tchart.drawAreaChart.asScriptOf(chart, 'draw');\n\t\tbreak;\n case 'stack':\n\t\tchart.drawStackChart.asScriptOf(chart, 'draw');\n\t\tbreak;\n\tdefault:\n\t\talert('The chart type \"' + cType + '\" is unknown!');\n\t\treturn;\n\t}\n this.render()\n}","funcProperties":{"__isSmartRef__":true,"id":841},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"840":{"this":{"__isSmartRef__":true,"id":616}},"841":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":842}},"842":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:58:09 GMT+0100 (BST)"},"843":{"varMapping":{"__isSmartRef__":true,"id":844},"source":"function reset() {\n this.connections = {addDataColumnAndRender: {}}\n this.setupStackExample()\n this.maxDataLength = 20;\n this.setChartType('stack');\n}","funcProperties":{"__isSmartRef__":true,"id":845},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"844":{"this":{"__isSmartRef__":true,"id":616}},"845":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":846}},"846":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:59:18 GMT+0100 (BST)"},"847":{"varMapping":{"__isSmartRef__":true,"id":848},"source":"function addDataColumnAndRender(data) {\n if (data == null) return;\n \n if (!this.data || data.length !== this.data.length) {\n this.data = []; // reset because of data changed\n }\n\n if (this.maxDataLength) {\n this.data = this.data.slice(\n this.data.length-this.maxDataLength,this.data.length);\n }\n\n while (data.length > this.data.length) {\n this.data.push([])\n }\n var x = this.data[0].length ;\n this.data.forEach(function(row, index) {\n row.push({x: x, y: data[index]})\n })\n\n this.render();\n}","funcProperties":{"__isSmartRef__":true,"id":849},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"848":{"this":{"__isSmartRef__":true,"id":616}},"849":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":850}},"850":{"isSerializedDate":true,"string":"Fri Sep 30 2011 15:57:20 GMT+0100 (BST)"},"851":{"varMapping":{"__isSmartRef__":true,"id":852},"source":"function maxYofData(data) {\n // this.maxYofData([[{x: 1, y:1}]])\n // this.maxYofData([[{x: 1, y:1}, {x: 2, y:2}],[{x: 1, y:2},{x: 2, y:3}]])\n // this.maxYofData(this.data)\n // data = this.data\n\n if (!data) return undefined;\n\n var xlength = data[0].length\n var ylength = data.length\n var sums = []\n // when the data collections are layed out weired I have to do it manually..\n for(var i=0; i < xlength; i++) {\n var s = 0;\n for(var j=0; j < ylength; j++) {\n s += data[j][i].y\n };\n sums.push(s)\n }\n return pv.max(sums)\n}","funcProperties":{"__isSmartRef__":true,"id":853},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"852":{"this":{"__isSmartRef__":true,"id":616}},"853":{"timestamp":{"__isSmartRef__":true,"id":854},"user":"timfelgentreff","tags":[]},"854":{"isSerializedDate":true,"string":"Mon Feb 13 2012 16:18:51 GMT+0000 (GMT)"},"855":{"varMapping":{"__isSmartRef__":true,"id":856},"source":"function setupStackExample() {\n // this.setupStackExample()\n \n this.data = pv.range(4).map(function() {\n return pv.range(0, 4, .1).map(function(x) {\n return {x: x, y: Math.sin(x) + Math.random() * .5 + 2};\n });\n });\n this.setChartType('stack')\n}","funcProperties":{"__isSmartRef__":true,"id":857},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"856":{"this":{"__isSmartRef__":true,"id":616}},"857":{"user":"robertkrahn","timestamp":{"__isSmartRef__":true,"id":858}},"858":{"isSerializedDate":true,"string":"Fri Sep 30 2011 16:00:01 GMT+0100 (BST)"},"859":{"sourceObj":{"__isSmartRef__":true,"id":527},"sourceAttrName":"tick","targetObj":{"__isSmartRef__":true,"id":616},"targetMethodName":"addDataColumnAndRender","varMapping":{"__isSmartRef__":true,"id":860},"converterString":"function converter(value) {\n return [Number(value), Number(value)]\n}","visualConnector":{"__isSmartRef__":true,"id":601},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"860":{"source":{"__isSmartRef__":true,"id":527},"target":{"__isSmartRef__":true,"id":616}},"861":{"morphMenuItems":{"__isSmartRef__":true,"id":862}},"862":{"varMapping":{"__isSmartRef__":true,"id":863},"source":"function morphMenuItems() {\n var visualConnector = this, con = this.con, world = $world;\n var items = [\n ['Edit converter', function() {\n var window = lively.bindings.editConnection(con);\n window.align(window.bounds().topCenter(),\n visualConnector.bounds().bottomCenter())\n }],\n ['Hide', function() {\n visualConnector.disconnectFromMagnets();\n visualConnector.remove();\n }],\n ['Disconnect', function() {\n alertOK('Disconnected ' + visualConnector.con);\n visualConnector.con.visualDisconnect();\n }],\n ['Cancel', function() {}]\n ];\n return items;\n }","funcProperties":{"__isSmartRef__":true,"id":868},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"863":{"this":{"__isSmartRef__":true,"id":601},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":864}},"864":{"$super":{"__isSmartRef__":true,"id":865}},"865":{"varMapping":{"__isSmartRef__":true,"id":866},"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":867},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"866":{"obj":{"__isSmartRef__":true,"id":601},"name":"morphMenuItems"},"867":{},"868":{},"869":{"source":{"__isSmartRef__":true,"id":527},"target":{"__isSmartRef__":true,"id":601}},"870":{"sourceObj":{"__isSmartRef__":true,"id":527},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":600},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":871},"dependedBy":{"__isSmartRef__":true,"id":600},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"871":{"source":{"__isSmartRef__":true,"id":527},"target":{"__isSmartRef__":true,"id":600}},"872":{"sourceObj":{"__isSmartRef__":true,"id":527},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":600},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":873},"dependedBy":{"__isSmartRef__":true,"id":600},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"873":{"source":{"__isSmartRef__":true,"id":527},"target":{"__isSmartRef__":true,"id":600}},"874":{"sourceObj":{"__isSmartRef__":true,"id":527},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":600},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":875},"dependedBy":{"__isSmartRef__":true,"id":600},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"875":{"source":{"__isSmartRef__":true,"id":527},"target":{"__isSmartRef__":true,"id":600}},"876":{"sourceObj":{"__isSmartRef__":true,"id":527},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":600},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":877},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","dependedBy":{"__isSmartRef__":true,"id":600},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"877":{"source":{"__isSmartRef__":true,"id":527},"target":{"__isSmartRef__":true,"id":600}},"878":{"d":1,"a":1,"f":66,"e":1032,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":879},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"879":{"a":1,"b":0,"c":0,"d":1,"e":1032,"f":66,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"880":{"sourceObj":{"__isSmartRef__":true,"id":527},"sourceAttrName":"tickTime","targetObj":{"__isSmartRef__":true,"id":168},"targetMethodName":"textString","varMapping":{"__isSmartRef__":true,"id":881},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"881":{"source":{"__isSmartRef__":true,"id":527},"target":{"__isSmartRef__":true,"id":168}},"882":{"layouter":{"__isSmartRef__":true,"id":883},"__serializedExpressions__":["extentWithoutPlaceholder"],"extentWithoutPlaceholder":"lively.pt(103.2,97.4)"},"883":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":8.58,"spacing":8.610000000000001,"container":{"__isSmartRef__":true,"id":527},"__LivelyClassName__":"lively.morphic.Layout.VerticalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"884":{"tick":{"__isSmartRef__":true,"id":885},"tickTime":{"__isSmartRef__":true,"id":886}},"885":{},"886":{},"887":{"morph":{"__isSmartRef__":true,"id":527},"__serializedExpressions__":["position","cachedGlobalPosition"],"connectedControlPoints":[],"__LivelyClassName__":"lively.morphic.Magnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.0)","cachedGlobalPosition":"lively.pt(1118.0,215.0)"},"888":{"setupConnections":{"__isSmartRef__":true,"id":889},"updateTick":{"__isSmartRef__":true,"id":891}},"889":{"time":{"__isSmartRef__":true,"id":890},"user":"robertkrahn"},"890":{"isSerializedDate":true,"string":"Mon Jul 04 2011 18:13:46 GMT+0100 (BST)"},"891":{"time":{"__isSmartRef__":true,"id":892},"user":"robertkrahn"},"892":{"isSerializedDate":true,"string":"Mon Jul 04 2011 18:13:46 GMT+0100 (BST)"},"893":{"updateTickingScripts":{"__isSmartRef__":true,"id":894},"setupConnections":{"__isSmartRef__":true,"id":897},"updateTick":{"__isSmartRef__":true,"id":900}},"894":{"varMapping":{"__isSmartRef__":true,"id":895},"source":"function updateTickingScripts(bool) {\n var timeInMS = Number(this.get('tickInput').textString);\n\tif (bool)\n this.startStepping(timeInMS, 'updateTick')\n else\n this.stopStepping()\n}","funcProperties":{"__isSmartRef__":true,"id":896},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"895":{"this":{"__isSmartRef__":true,"id":527}},"896":{},"897":{"varMapping":{"__isSmartRef__":true,"id":898},"source":"function setupConnections() {\n this.connections = {tick: {}, tickTime: {}};\n\tconnect(this, 'running', this, 'updateTickingScripts');\n}","funcProperties":{"__isSmartRef__":true,"id":899},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"898":{"this":{"__isSmartRef__":true,"id":527}},"899":{},"900":{"varMapping":{"__isSmartRef__":true,"id":901},"source":"function updateTick() {\n lively.bindings.signal(this, 'tick')\n lively.bindings.signal(this, 'tickTime', new Date())\n}","funcProperties":{"__isSmartRef__":true,"id":902},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"901":{"this":{"__isSmartRef__":true,"id":527}},"902":{},"903":{"submorphs":[],"scripts":[],"id":"946E70F2-40D3-49F8-BF63-19311A1FD5EC","shape":{"__isSmartRef__":true,"id":904},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":120.695652,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"Text3","partsBinMetaInfo":{"__isSmartRef__":true,"id":170},"textChunks":[{"__isSmartRef__":true,"id":905}],"charsReplaced":"Some Text","lastFindLoc":9,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":907},"_ClipMode":"visible","derivationIds":[355,"1EB1674F-8BF2-419B-B054-86129ED70335","63698904-DC05-4341-A9B6-5CC4A219CD04","F6A714BA-4735-41ED-8A2A-45CB153FBDF8","F1D26890-7392-487D-B5DE-97C772B4E79E"],"_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":120.695652,"_MinTextHeight":null,"isBeingDragged":false,"moved":true,"__serializedExpressions__":["_Position","textColor","_Padding"],"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1,"priorSelectionRange":[48,48],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(1133.0,535.0)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)"},"904":{"fill":null,"_BorderWidth":0,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(128.7,90.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(4,2,0,0)"},"905":{"style":{"__isSmartRef__":true,"id":906},"chunkOwner":{"__isSmartRef__":true,"id":903},"_id":"_23761","storedString":"How to add parameters and evolving state vector?","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"906":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"907":{"morph":{"__isSmartRef__":true,"id":903},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"908":{"submorphs":[{"__isSmartRef__":true,"id":909},{"__isSmartRef__":true,"id":918},{"__isSmartRef__":true,"id":936},{"__isSmartRef__":true,"id":942},{"__isSmartRef__":true,"id":1064}],"scripts":[],"id":"BB5C62CF-B1A9-4418-8470-2625B6356101","shape":{"__isSmartRef__":true,"id":1082},"__layered_droppingEnabled__":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"CountdownTimer","partsBinMetaInfo":{"__isSmartRef__":true,"id":1083},"eventHandler":{"__isSmartRef__":true,"id":1091},"attributeConnections":[{"__isSmartRef__":true,"id":1092}],"doNotSerialize":["$$running"],"doNotCopyProperties":["$$running"],"layout":{"__isSmartRef__":true,"id":1093},"connections":{"__isSmartRef__":true,"id":1095},"isInLayoutCycle":false,"scriptAnnotations":{"__isSmartRef__":true,"id":1097},"tick":1309799475780,"running":false,"time":1373575916956,"derivationIds":[4829,"1FA0A483-C5AC-4990-9F2B-DAE0CBDB49E8"],"_ClipMode":"visible","remaining":5,"updateTickingScripts":false,"__serializedExpressions__":["distanceToDragEvent","_Position"],"moved":true,"owner":{"__isSmartRef__":true,"id":0},"isBeingDragged":false,"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1104},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","distanceToDragEvent":"lively.pt(75.0,3.0)","_Position":"lively.pt(47.0,409.0)"},"909":{"submorphs":[],"scripts":[],"id":"CF03BA4E-EDA6-4C15-8834-1B4779352DC2","shape":{"__isSmartRef__":true,"id":910},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":85.33100664937592,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":12,"name":"timerSeconds","partsBinMetaInfo":{"__isSmartRef__":true,"id":911},"textChunks":[{"__isSmartRef__":true,"id":912}],"charsReplaced":"","lastFindLoc":3,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":914},"owner":{"__isSmartRef__":true,"id":908},"layout":{"__isSmartRef__":true,"id":915},"_Align":"center","lastDragTime":1309420114788,"_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":85.33100664937592,"_MinTextHeight":null,"derivationIds":[4830,"EDAC5D00-FDF1-4D77-99FC-0A23D0C22207"],"__serializedExpressions__":["_Position","textColor","distanceToDragEvent"],"attributeConnections":[{"__isSmartRef__":true,"id":916}],"doNotSerialize":["$$textString"],"doNotCopyProperties":["$$textString"],"textString":"10","isBeingDragged":false,"priorSelectionRange":[2,2],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(8.6,69.8)","textColor":"Color.rgb(0,0,0)","distanceToDragEvent":"lively.pt(60.5,-10.5)"},"910":{"fill":null,"_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(85.3,20.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)"},"911":{"partsSpaceName":"PartsBin/Basic","migrationLevel":2,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"912":{"style":{"__isSmartRef__":true,"id":913},"chunkOwner":{"__isSmartRef__":true,"id":909},"storedString":"10","_id":"_1796","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"913":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"914":{"morph":{"__isSmartRef__":true,"id":909},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"915":{},"916":{"sourceObj":{"__isSmartRef__":true,"id":909},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":616},"targetMethodName":"addDataColumnAndRender","varMapping":{"__isSmartRef__":true,"id":917},"converterString":"function converter(value) {\n return [Number(value)];\n}","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"917":{"source":{"__isSmartRef__":true,"id":909},"target":{"__isSmartRef__":true,"id":616}},"918":{"submorphs":[{"__isSmartRef__":true,"id":919}],"scripts":[],"id":"074D8F62-9C38-456A-B69A-F80E371B2334","shape":{"__isSmartRef__":true,"id":924},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":919},"name":"ScriptableButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":926},"attributeConnections":[{"__isSmartRef__":true,"id":927}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":928},"owner":{"__isSmartRef__":true,"id":908},"derivationIds":[4831,"4BF38ADB-1CF5-4975-82E6-FF03AAC66E24"],"_ClipMode":"visible","isPressed":false,"_StyleClassNames":["Morph","Button"],"__serializedExpressions__":["_Position"],"normalFill":{"__isSmartRef__":true,"id":929},"lighterFill":{"__isSmartRef__":true,"id":930},"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":931},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(8.6,98.4)"},"919":{"submorphs":[],"scripts":[],"id":"BA673C9F-C0D1-450D-87CC-959C2E1A5E6D","shape":{"__isSmartRef__":true,"id":920},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":86,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":918},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":921}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":923},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":86,"_MinTextHeight":null,"derivationIds":[4832,"83C6D421-CE38-4B59-B90B-9766A32DA7B6"],"_InputAllowed":false,"_FontSize":10,"__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"920":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(86.0,21.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"921":{"style":{"__isSmartRef__":true,"id":922},"chunkOwner":{"__isSmartRef__":true,"id":919},"_id":"_105998","storedString":"start","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"922":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"923":{"morph":{"__isSmartRef__":true,"id":919},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"924":{"_BorderWidth":1.1840000000000002,"_BorderRadius":5.2,"_ClipMode":"visible","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_Fill":{"__isSmartRef__":true,"id":925},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(86.0,21.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"925":{},"926":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":2,"partName":"ScriptableButton","comment":"Has a script that is called on button press","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"927":{"sourceObj":{"__isSmartRef__":true,"id":918},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":918},"targetMethodName":"onFire","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"928":{"morph":{"__isSmartRef__":true,"id":918},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"929":{},"930":{},"931":{"onFire":{"__isSmartRef__":true,"id":932}},"932":{"varMapping":{"__isSmartRef__":true,"id":933},"source":"function onFire() {\n this.owner.provisionallyToggleRunning();\n if (this.owner.running) {\n this.setLabel(\"stop\")\n } else {\n this.setLabel(\"start\")\n }\n}","funcProperties":{"__isSmartRef__":true,"id":934},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"933":{"this":{"__isSmartRef__":true,"id":918}},"934":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":935}},"935":{"isSerializedDate":true,"string":"Thu Jul 11 2013 22:44:36 GMT+0100 (BST)"},"936":{"submorphs":[],"scripts":[],"id":"E3E027B3-0F23-411E-A180-DD29A869401D","shape":{"__isSmartRef__":true,"id":937},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":85.35493484089704,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"Text1","partsBinMetaInfo":{"__isSmartRef__":true,"id":938},"textChunks":[{"__isSmartRef__":true,"id":939}],"charsReplaced":"some text","lastFindLoc":-9,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":941},"owner":{"__isSmartRef__":true,"id":908},"_WhiteSpaceHandling":"pre-wrap","_Align":"center","_ClipMode":"visible","_MinTextWidth":85.35493484089704,"_MinTextHeight":null,"derivationIds":[4833,"3C6CBE73-17C9-410A-A206-F1D8F42FD6A8"],"__serializedExpressions__":["_Position","textColor","_TextColor","distanceToDragEvent"],"priorSelectionRange":[0,0],"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(8.6,8.6)","textColor":"Color.rgb(0,0,0)","_TextColor":"Color.rgb(255,255,255)","distanceToDragEvent":"lively.pt(59.4,-14.6)"},"937":{"fill":null,"_BorderWidth":0,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(85.4,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"938":{"partsSpaceName":"PartsBin/Basic","migrationLevel":2,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"939":{"style":{"__isSmartRef__":true,"id":940},"morph":{"__isSmartRef__":true,"id":936},"chunkOwner":{"__isSmartRef__":true,"id":936},"storedString":"Countdown","_id":"_1798","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"940":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"941":{"morph":{"__isSmartRef__":true,"id":936},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"942":{"submorphs":[],"scripts":[],"id":"B1B15DCE-6D59-471C-A353-448F23B345C5","shape":{"__isSmartRef__":true,"id":943},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":85,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"remaining","partsBinMetaInfo":{"__isSmartRef__":true,"id":944},"textChunks":[{"__isSmartRef__":true,"id":945}],"charsReplaced":"s","lastFindLoc":6,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":947},"_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":908},"_MinTextWidth":85,"_MinTextHeight":null,"_Align":"center","derivationIds":[5215,"BB9740EC-B611-4D6A-8956-C23CFF7138CA"],"__serializedExpressions__":["_Position","textColor","_Padding"],"attributeConnections":[{"__isSmartRef__":true,"id":948},{"__isSmartRef__":true,"id":950}],"doNotSerialize":["$$textString"],"doNotCopyProperties":["$$textString"],"textString":"5","_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(8.6,39.2)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)"},"943":{"fill":null,"_BorderWidth":0,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(85.0,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"944":{"partsSpaceName":"PartsBin/Basic","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"945":{"style":{"__isSmartRef__":true,"id":946},"chunkOwner":{"__isSmartRef__":true,"id":942},"_id":"_105991","storedString":"5","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"946":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"947":{"morph":{"__isSmartRef__":true,"id":942},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"948":{"sourceObj":{"__isSmartRef__":true,"id":942},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":616},"targetMethodName":"addDataColumnAndRender","varMapping":{"__isSmartRef__":true,"id":949},"converterString":"function converter(value) {\n return [ Number(200*Math.cos(0.1*value)) ]\n}","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"949":{"source":{"__isSmartRef__":true,"id":942},"target":{"__isSmartRef__":true,"id":616}},"950":{"sourceObj":{"__isSmartRef__":true,"id":942},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":951},"targetMethodName":"multiply","varMapping":{"__isSmartRef__":true,"id":1063},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"951":{"submorphs":[],"scripts":[],"id":"C0306032-EA76-4226-86A6-20316A0ABD13","shape":{"__isSmartRef__":true,"id":952},"__layered_droppingEnabled__":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"Model","partsBinMetaInfo":{"__isSmartRef__":true,"id":953},"eventHandler":{"__isSmartRef__":true,"id":990},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C","7EC17E78-593A-4CC8-B7E3-859BCBBFE785","BD8BECDB-A9A1-4009-B433-C925F0AFCCFC","F2677A9D-5855-4DF2-B248-94545B34B762","D52188B3-7DC0-410E-96B1-50892AC00A37","1C17567C-751A-447E-A93C-0CE8CAEEF262"],"partTests":{"__isSmartRef__":true,"id":991},"_ClipMode":"visible","moved":true,"__serializedExpressions__":["_Position"],"owner":{"__isSmartRef__":true,"id":996},"isBeingDragged":false,"_Rotation":0,"_Scale":1,"layout":{"__isSmartRef__":true,"id":1057},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1058},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(4.0,22.0)"},"952":{"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(192.0,199.0)","_BorderColor":"Color.rgb(95,94,95)","_Fill":"Color.rgb(0,0,204)","_Padding":"lively.rect(0,0,0,0)"},"953":{"partsSpaceName":"PartsBin/Basic","comment":"A plain simple rectangle","migrationLevel":4,"partName":"Rectangle","changes":[{"__isSmartRef__":true,"id":954},{"__isSmartRef__":true,"id":956},{"__isSmartRef__":true,"id":958},{"__isSmartRef__":true,"id":960},{"__isSmartRef__":true,"id":962},{"__isSmartRef__":true,"id":964},{"__isSmartRef__":true,"id":966},{"__isSmartRef__":true,"id":968},{"__isSmartRef__":true,"id":970},{"__isSmartRef__":true,"id":972},{"__isSmartRef__":true,"id":974},{"__isSmartRef__":true,"id":976},{"__isSmartRef__":true,"id":978},{"__isSmartRef__":true,"id":980},{"__isSmartRef__":true,"id":982},{"__isSmartRef__":true,"id":984},{"__isSmartRef__":true,"id":986},{"__isSmartRef__":true,"id":988}],"lastModifiedDate":{"__isSmartRef__":true,"id":227},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"954":{"date":{"__isSmartRef__":true,"id":955},"author":"jenslincke","message":"no comment","id":"ADFBF069-513C-4DE6-95A9-8AD4985C6508"},"955":{"isSerializedDate":true,"string":"Tue Feb 04 2014 09:23:53 GMT+0000 (GMT)"},"956":{"author":"robertkrahn","message":"no comment","id":"A452871F-4EB9-45D1-94B8-6065CBA7B8FD","date":{"__isSmartRef__":true,"id":957}},"957":{"isSerializedDate":true,"string":"Tue Jul 30 2013 07:20:51 GMT+0100 (BST)"},"958":{"author":"SAPLivelyScreen","message":"no comment","id":"7A44D8CA-6D5F-42A3-A4B4-4D7F51EECA52","date":{"__isSmartRef__":true,"id":959}},"959":{"isSerializedDate":true,"string":"Tue Jun 18 2013 19:49:27 GMT+0100 (BST)"},"960":{"author":"SAPLivelyScreen","message":"no comment","id":"EF145198-0649-41BD-A92E-521D98FEC49D","date":{"__isSmartRef__":true,"id":961}},"961":{"isSerializedDate":true,"string":"Wed May 29 2013 23:36:50 GMT+0100 (BST)"},"962":{"author":"jenslincke","message":"added legend","id":"7ADA3049-56C1-4D32-874B-F664A79DDB20","date":{"__isSmartRef__":true,"id":963}},"963":{"isSerializedDate":true,"string":"Fri Jan 18 2013 15:47:05 GMT+0000 (GMT)"},"964":{"author":"jenslincke","message":"no comment","id":"A4B86A7E-A398-4C29-BEE0-4AA045ABABD2","date":{"__isSmartRef__":true,"id":965}},"965":{"isSerializedDate":true,"string":"Fri Jan 18 2013 15:42:31 GMT+0000 (GMT)"},"966":{"author":"jenslincke","message":"I want my blue rectangle back!","id":"5AA9291A-869F-4D36-8095-4721B5A5B205","date":{"__isSmartRef__":true,"id":967}},"967":{"isSerializedDate":true,"string":"Thu Nov 22 2012 09:35:51 GMT+0000 (GMT)"},"968":{"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8","date":{"__isSmartRef__":true,"id":969}},"969":{"isSerializedDate":true,"string":"Mon Jun 18 2012 18:35:08 GMT+0100 (BST)"},"970":{"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350","date":{"__isSmartRef__":true,"id":971}},"971":{"isSerializedDate":true,"string":"Mon Apr 09 2012 12:42:07 GMT+0100 (BST)"},"972":{"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7","date":{"__isSmartRef__":true,"id":973}},"973":{"isSerializedDate":true,"string":"Wed Mar 14 2012 09:42:26 GMT+0000 (GMT)"},"974":{"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B","date":{"__isSmartRef__":true,"id":975}},"975":{"isSerializedDate":true,"string":"Sat Feb 25 2012 01:59:09 GMT+0000 (GMT)"},"976":{"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2","date":{"__isSmartRef__":true,"id":977}},"977":{"isSerializedDate":true,"string":"Wed Mar 14 2012 09:53:45 GMT+0000 (GMT)"},"978":{"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC","date":{"__isSmartRef__":true,"id":979}},"979":{"isSerializedDate":true,"string":"Thu May 03 2012 14:51:30 GMT+0100 (BST)"},"980":{"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23","date":{"__isSmartRef__":true,"id":981}},"981":{"isSerializedDate":true,"string":"Thu May 03 2012 14:51:36 GMT+0100 (BST)"},"982":{"author":"jenslincke","message":"no comment","id":"AEB2F41B-2C88-4BBA-8875-93CD17CBA1C8","date":{"__isSmartRef__":true,"id":983}},"983":{"isSerializedDate":true,"string":"Wed Jan 23 2013 11:57:18 GMT+0000 (GMT)"},"984":{"author":"robertkrahn","message":"no comment","id":"67FD74CD-7AE4-4050-ADC7-4DF73804258D","date":{"__isSmartRef__":true,"id":985}},"985":{"isSerializedDate":true,"string":"Thu May 30 2013 08:18:06 GMT+0100 (BST)"},"986":{"author":"robertkrahn","message":"no comment","id":"FBBB9C99-B61C-4D5F-8750-6E2987DF0C9C","date":{"__isSmartRef__":true,"id":987}},"987":{"isSerializedDate":true,"string":"Thu Jun 20 2013 23:16:24 GMT+0100 (BST)"},"988":{"date":{"__isSmartRef__":true,"id":989},"author":"jenslincke","message":"no comment","id":"ECD12BFF-E872-4918-8341-C6571E72F36D"},"989":{"isSerializedDate":true,"string":"Tue Feb 04 2014 09:24:27 GMT+0000 (GMT)"},"990":{"morph":{"__isSmartRef__":true,"id":951},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"991":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":992}},"992":{"test01IsMorph":{"__isSmartRef__":true,"id":993}},"993":{"varMapping":{"__isSmartRef__":true,"id":994},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":995},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"994":{"this":{"__isSmartRef__":true,"id":991}},"995":{},"996":{"submorphs":[{"__isSmartRef__":true,"id":997},{"__isSmartRef__":true,"id":951},{"__isSmartRef__":true,"id":1045},{"__isSmartRef__":true,"id":1048},{"__isSmartRef__":true,"id":1051}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1054},"eventHandler":{"__isSmartRef__":true,"id":1055},"_ClipMode":"visible","derivationIds":[],"id":"23E9DCFA-D0BA-42E7-9045-F7F52F880758","__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":1056},"LK2":true,"__serializedExpressions__":["_Position","contentOffset","prevDragPos"],"reframeHandle":{"__isSmartRef__":true,"id":1045},"rightReframeHandle":{"__isSmartRef__":true,"id":1051},"bottomReframeHandle":{"__isSmartRef__":true,"id":1048},"titleBar":{"__isSmartRef__":true,"id":997},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"_PreviousBorderWidth":0,"targetMorph":{"__isSmartRef__":true,"id":951},"owner":{"__isSmartRef__":true,"id":0},"partsBinMetaInfo":{"__isSmartRef__":true,"id":953},"name":"Model","highlighted":false,"isBeingDragged":false,"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withLayers":["Global.PreventDroppingLayer"],"withoutLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(737.0,4.0)","contentOffset":"lively.pt(4.0,22.0)","prevDragPos":"lively.pt(871.0,12.0)"},"997":{"submorphs":[{"__isSmartRef__":true,"id":998},{"__isSmartRef__":true,"id":1004},{"__isSmartRef__":true,"id":1017},{"__isSmartRef__":true,"id":1029}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1042},"eventHandler":{"__isSmartRef__":true,"id":1043},"_ClipMode":"visible","derivationIds":[],"id":"3F82947F-9C62-4819-8DF4-5ECBF342CD78","__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"layout":{"__isSmartRef__":true,"id":1044},"__serializedExpressions__":["_Position"],"windowMorph":{"__isSmartRef__":true,"id":996},"label":{"__isSmartRef__":true,"id":998},"closeButton":{"__isSmartRef__":true,"id":1004},"menuButton":{"__isSmartRef__":true,"id":1017},"collapseButton":{"__isSmartRef__":true,"id":1029},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":996},"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"998":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":999},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1000}],"eventHandler":{"__isSmartRef__":true,"id":1002},"_ClipMode":"hidden","derivationIds":[],"id":"94B47D32-2A51-4CDE-8F37-E636C78D26CA","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"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":1003},"eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":997},"_StyleClassNames":["window-title"],"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(20.0,3.0)"},"999":{"__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(141.0,18.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1000":{"style":{"__isSmartRef__":true,"id":1001},"chunkOwner":{"__isSmartRef__":true,"id":998},"_id":"_102562","storedString":"Model","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1001":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1002":{"morph":{"__isSmartRef__":true,"id":998},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1003":{"resizeWidth":true},"1004":{"submorphs":[{"__isSmartRef__":true,"id":1005}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1010},"eventHandler":{"__isSmartRef__":true,"id":1011},"_ClipMode":"visible","derivationIds":[],"id":"6FFB11B4-F480-4F1D-803B-FC55DDD6BB2C","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1005},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":997},"layout":{"__isSmartRef__":true,"id":1012},"_StyleClassNames":["close"],"attributeConnections":[{"__isSmartRef__":true,"id":1013},{"__isSmartRef__":true,"id":1015}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(180.0,3.0)"},"1005":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1006},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1007}],"eventHandler":{"__isSmartRef__":true,"id":1009},"_ClipMode":"hidden","derivationIds":[],"id":"DF090705-6525-4675-9AD3-6F75D4BE5EED","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"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":1004},"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)"},"1006":{"__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)"},"1007":{"style":{"__isSmartRef__":true,"id":1008},"chunkOwner":{"__isSmartRef__":true,"id":1005},"_id":"_102557","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1008":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1009":{"morph":{"__isSmartRef__":true,"id":1005},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1010":{"__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)"},"1011":{"morph":{"__isSmartRef__":true,"id":1004},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1012":{"moveHorizontal":true},"1013":{"sourceObj":{"__isSmartRef__":true,"id":1004},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":996},"targetMethodName":"getCloseHelp","varMapping":{"__isSmartRef__":true,"id":1014},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1014":{"source":{"__isSmartRef__":true,"id":1004},"target":{"__isSmartRef__":true,"id":996}},"1015":{"sourceObj":{"__isSmartRef__":true,"id":1004},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":996},"targetMethodName":"initiateShutdown","varMapping":{"__isSmartRef__":true,"id":1016},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1016":{"source":{"__isSmartRef__":true,"id":1004},"target":{"__isSmartRef__":true,"id":996}},"1017":{"submorphs":[{"__isSmartRef__":true,"id":1018}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1023},"eventHandler":{"__isSmartRef__":true,"id":1024},"_ClipMode":"visible","derivationIds":[],"id":"82848EC0-877B-48B8-9401-37697F5C62C0","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1018},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":997},"attributeConnections":[{"__isSmartRef__":true,"id":1025},{"__isSmartRef__":true,"id":1027}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"1018":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1019},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1020}],"eventHandler":{"__isSmartRef__":true,"id":1022},"_ClipMode":"hidden","derivationIds":[],"id":"9A37FC86-E3E6-45FF-83B4-377F24691559","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"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":1017},"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)"},"1019":{"__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)"},"1020":{"style":{"__isSmartRef__":true,"id":1021},"chunkOwner":{"__isSmartRef__":true,"id":1018},"_id":"_102559","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1021":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1022":{"morph":{"__isSmartRef__":true,"id":1018},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1023":{"__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)"},"1024":{"morph":{"__isSmartRef__":true,"id":1017},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1025":{"sourceObj":{"__isSmartRef__":true,"id":1017},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":996},"targetMethodName":"getMenuHelp","varMapping":{"__isSmartRef__":true,"id":1026},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1026":{"source":{"__isSmartRef__":true,"id":1017},"target":{"__isSmartRef__":true,"id":996}},"1027":{"sourceObj":{"__isSmartRef__":true,"id":1017},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":996},"targetMethodName":"showTargetMorphMenu","varMapping":{"__isSmartRef__":true,"id":1028},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1028":{"source":{"__isSmartRef__":true,"id":1017},"target":{"__isSmartRef__":true,"id":996}},"1029":{"submorphs":[{"__isSmartRef__":true,"id":1030}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1035},"eventHandler":{"__isSmartRef__":true,"id":1036},"_ClipMode":"visible","derivationIds":[],"id":"61000282-03D0-4D30-9741-21B3BB93B879","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1030},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":997},"layout":{"__isSmartRef__":true,"id":1037},"attributeConnections":[{"__isSmartRef__":true,"id":1038},{"__isSmartRef__":true,"id":1040}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(161.0,3.0)"},"1030":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1031},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1032}],"eventHandler":{"__isSmartRef__":true,"id":1034},"_ClipMode":"hidden","derivationIds":[],"id":"D553DC00-38F2-45EA-98A5-295D207571BD","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"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":1029},"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)"},"1031":{"__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)"},"1032":{"style":{"__isSmartRef__":true,"id":1033},"chunkOwner":{"__isSmartRef__":true,"id":1030},"_id":"_102561","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1033":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1034":{"morph":{"__isSmartRef__":true,"id":1030},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1035":{"__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)"},"1036":{"morph":{"__isSmartRef__":true,"id":1029},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1037":{"moveHorizontal":true},"1038":{"sourceObj":{"__isSmartRef__":true,"id":1029},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":996},"targetMethodName":"getCollapseHelp","varMapping":{"__isSmartRef__":true,"id":1039},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1039":{"source":{"__isSmartRef__":true,"id":1029},"target":{"__isSmartRef__":true,"id":996}},"1040":{"sourceObj":{"__isSmartRef__":true,"id":1029},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":996},"targetMethodName":"toggleCollapse","varMapping":{"__isSmartRef__":true,"id":1041},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1041":{"source":{"__isSmartRef__":true,"id":1029},"target":{"__isSmartRef__":true,"id":996}},"1042":{"__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(200.0,22.0)","_Padding":"lively.rect(0,0,0,0)"},"1043":{"morph":{"__isSmartRef__":true,"id":997},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1044":{"resizeWidth":true,"adjustForNewBounds":true},"1045":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1046},"eventHandler":{"__isSmartRef__":true,"id":1047},"_ClipMode":"visible","derivationIds":[],"id":"9471D646-6D5B-4818-9681-69CE39483B3D","__layered_droppingEnabled__":true,"halosEnabled":true,"draggingEnabled":false,"__serializedExpressions__":["_Position"],"type":"corner","_StyleClassNames":["reframe-handle corner"],"owner":{"__isSmartRef__":true,"id":996},"__LivelyClassName__":"lively.morphic.ReframeHandle","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(186.0,211.0)"},"1046":{"__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)"},"1047":{"morph":{"__isSmartRef__":true,"id":1045},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1048":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1049},"eventHandler":{"__isSmartRef__":true,"id":1050},"_ClipMode":"visible","derivationIds":[],"id":"0220AD38-ABB2-4157-B6FE-37A9DD277491","__layered_droppingEnabled__":true,"halosEnabled":true,"draggingEnabled":false,"__serializedExpressions__":["_Position"],"type":"bottom","_StyleClassNames":["reframe-handle bottom"],"owner":{"__isSmartRef__":true,"id":996},"__LivelyClassName__":"lively.morphic.ReframeHandle","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,221.0)"},"1049":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(186.0,4.0)","_Padding":"lively.rect(0,0,0,0)"},"1050":{"morph":{"__isSmartRef__":true,"id":1048},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1051":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1052},"eventHandler":{"__isSmartRef__":true,"id":1053},"_ClipMode":"visible","derivationIds":[],"id":"8D4E4A51-F68F-4E29-B847-FA73089F3C9B","__layered_droppingEnabled__":true,"halosEnabled":true,"draggingEnabled":false,"__serializedExpressions__":["_Position"],"type":"right","_StyleClassNames":["reframe-handle right"],"owner":{"__isSmartRef__":true,"id":996},"__LivelyClassName__":"lively.morphic.ReframeHandle","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(196.0,0.0)"},"1052":{"__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,211.0)","_Padding":"lively.rect(0,0,0,0)"},"1053":{"morph":{"__isSmartRef__":true,"id":1051},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1054":{"__serializedExpressions__":["_Padding","_Extent"],"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":false,"_BorderRadius":false,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Padding":"lively.rect(0,0,0,0)","_Extent":"lively.pt(200.0,225.0)"},"1055":{"morph":{"__isSmartRef__":true,"id":996},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1056":{"adjustForNewBounds":true},"1057":{"resizeWidth":true,"resizeHeight":true},"1058":{"multiply":{"__isSmartRef__":true,"id":1059}},"1059":{"varMapping":{"__isSmartRef__":true,"id":1060},"source":"function multiply(value) {\n Text5.set('nn',value*0.1);\n}","funcProperties":{"__isSmartRef__":true,"id":1061},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1060":{"this":{"__isSmartRef__":true,"id":951}},"1061":{"timestamp":{"__isSmartRef__":true,"id":1062},"user":"oliverwilliams","tags":[]},"1062":{"isSerializedDate":true,"string":"Thu May 15 2014 00:12:56 GMT+0100 (BST)"},"1063":{"source":{"__isSmartRef__":true,"id":942},"target":{"__isSmartRef__":true,"id":951}},"1064":{"submorphs":[{"__isSmartRef__":true,"id":1065}],"scripts":[],"id":"F0F8D311-25B0-4639-A18E-26E4287BFFEC","shape":{"__isSmartRef__":true,"id":1070},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1065},"name":"ScriptableButton1","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":1072},"attributeConnections":[{"__isSmartRef__":true,"id":1073}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":1074},"derivationIds":[4831,"4BF38ADB-1CF5-4975-82E6-FF03AAC66E24","BD5DF886-1A0F-4C60-A353-2C785646CBD6"],"_ClipMode":"visible","isPressed":false,"_StyleClassNames":["Morph","Button"],"owner":{"__isSmartRef__":true,"id":908},"__serializedExpressions__":["_Position"],"normalFill":{"__isSmartRef__":true,"id":1075},"lighterFill":{"__isSmartRef__":true,"id":1076},"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1077},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(8.6,128.0)"},"1065":{"submorphs":[],"scripts":[],"id":"420A5750-6B68-467F-B791-DDBAE5394851","shape":{"__isSmartRef__":true,"id":1066},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":86,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":1064},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":1067}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":1069},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":86,"_MinTextHeight":null,"derivationIds":[4832,"83C6D421-CE38-4B59-B90B-9766A32DA7B6","6B465E09-F1D7-447D-B42E-CB4736659F31"],"_InputAllowed":false,"_FontSize":10,"__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"_WordBreak":"break-all","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"1066":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(86.0,21.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"1067":{"style":{"__isSmartRef__":true,"id":1068},"chunkOwner":{"__isSmartRef__":true,"id":1065},"_id":"_1962","storedString":"reset","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1068":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1069":{"morph":{"__isSmartRef__":true,"id":1065},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1070":{"_BorderWidth":1.1840000000000002,"_BorderRadius":5.2,"_ClipMode":"visible","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"_Fill":{"__isSmartRef__":true,"id":1071},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(86.0,21.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"1071":{},"1072":{"partsSpaceName":"PartsBin/Inputs","migrationLevel":2,"partName":"ScriptableButton","comment":"Has a script that is called on button press","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1073":{"sourceObj":{"__isSmartRef__":true,"id":1064},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1064},"targetMethodName":"onFire","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1074":{"morph":{"__isSmartRef__":true,"id":1064},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1075":{},"1076":{},"1077":{"onFire":{"__isSmartRef__":true,"id":1078}},"1078":{"varMapping":{"__isSmartRef__":true,"id":1079},"source":"function onFire() {\n this.owner.resetTimer();\n}","funcProperties":{"__isSmartRef__":true,"id":1080},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1079":{"this":{"__isSmartRef__":true,"id":1064}},"1080":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":1081}},"1081":{"isSerializedDate":true,"string":"Thu Jul 11 2013 22:01:14 GMT+0100 (BST)"},"1082":{"_BorderWidth":0,"_BorderRadius":14.425000000000002,"_Opacity":1,"_BorderStyle":"solid","_ClipMode":"visible","__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(107.2,165.6)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(192,192,192)","_Padding":"lively.rect(0,0,0,0)"},"1083":{"partsSpaceName":"PartsBin/Scripting/","comment":"Count down for some number of seconds, trigger event on expired connection, then count down again","migrationLevel":7,"partName":"CountdownTimer","changes":[{"__isSmartRef__":true,"id":1084},{"__isSmartRef__":true,"id":1086},{"__isSmartRef__":true,"id":1088}],"lastModifiedDate":{"__isSmartRef__":true,"id":1090},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1084":{"author":null,"message":"no comment","id":"A2475E13-348C-43E3-9FBD-E23810722F54","date":{"__isSmartRef__":true,"id":1085}},"1085":{"isSerializedDate":true,"string":"Thu Jul 11 2013 23:19:03 GMT+0100 (BST)"},"1086":{"author":null,"message":"no comment","id":"FF7FFEB2-AEF1-45F6-AA38-7D87F4CC4B2F","date":{"__isSmartRef__":true,"id":1087}},"1087":{"isSerializedDate":true,"string":"Thu Jul 11 2013 23:15:26 GMT+0100 (BST)"},"1088":{"author":"jenslincke","message":"added a display of seconds","date":{"__isSmartRef__":true,"id":1089}},"1089":{"isSerializedDate":true,"string":"Wed Oct 19 2011 15:06:21 GMT+0100 (BST)"},"1090":{"isSerializedDate":true,"string":"Wed Feb 05 2014 18:59:57 GMT+0000 (GMT)"},"1091":{"morph":{"__isSmartRef__":true,"id":908},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1092":{"sourceObj":{"__isSmartRef__":true,"id":908},"sourceAttrName":"running","targetObj":{"__isSmartRef__":true,"id":908},"targetMethodName":"updateTickingScripts","converterString":"function converter(value) {\n return value;\n}","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1093":{"layouter":{"__isSmartRef__":true,"id":1094}},"1094":{"defaultBorderSize":10,"defaultSpacing":15,"borderSize":8.58,"spacing":8.610000000000001,"container":{"__isSmartRef__":true,"id":908},"__LivelyClassName__":"lively.morphic.Layout.VerticalLayout","__SourceModuleName__":"Global.lively.morphic.Layout"},"1095":{"expired":{"__isSmartRef__":true,"id":1096}},"1096":{},"1097":{"setupConnections":{"__isSmartRef__":true,"id":1098},"updateTick":{"__isSmartRef__":true,"id":1100},"updateTickingScripts":{"__isSmartRef__":true,"id":1102}},"1098":{"user":"robertkrahn","time":{"__isSmartRef__":true,"id":1099}},"1099":{"isSerializedDate":true,"string":"Mon Jul 04 2011 18:13:46 GMT+0100 (BST)"},"1100":{"user":"jenslincke","time":{"__isSmartRef__":true,"id":1101}},"1101":{"isSerializedDate":true,"string":"Wed Oct 19 2011 15:05:04 GMT+0100 (BST)"},"1102":{"user":"jenslincke","time":{"__isSmartRef__":true,"id":1103}},"1103":{"isSerializedDate":true,"string":"Wed Oct 19 2011 15:04:22 GMT+0100 (BST)"},"1104":{"setupConnections":{"__isSmartRef__":true,"id":1105},"updateTick":{"__isSmartRef__":true,"id":1109},"resetTimer":{"__isSmartRef__":true,"id":1113},"provisionallyToggleRunning":{"__isSmartRef__":true,"id":1117}},"1105":{"varMapping":{"__isSmartRef__":true,"id":1106},"source":"function setupConnections() {\n this.connections = {expired: {}};\n}","funcProperties":{"__isSmartRef__":true,"id":1107},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1106":{"this":{"__isSmartRef__":true,"id":908}},"1107":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":1108}},"1108":{"isSerializedDate":true,"string":"Thu Jul 11 2013 23:13:06 GMT+0100 (BST)"},"1109":{"varMapping":{"__isSmartRef__":true,"id":1110},"source":"function updateTick() {\n this.remaining--;\n this.get('remaining').textString = this.remaining;\n\n if (this.remaining == 0) {\n lively.bindings.signal(this, 'expired');\n this.resetTimer();\n }\n}","funcProperties":{"__isSmartRef__":true,"id":1111},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1110":{"this":{"__isSmartRef__":true,"id":908}},"1111":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":1112}},"1112":{"isSerializedDate":true,"string":"Thu Jul 11 2013 22:23:55 GMT+0100 (BST)"},"1113":{"varMapping":{"__isSmartRef__":true,"id":1114},"source":"function resetTimer() {\n var remainString = this.get('timerSeconds').textString;\n this.remaining = Number(remainString);\n this.get('remaining').textString = remainString;\n}","funcProperties":{"__isSmartRef__":true,"id":1115},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1114":{"this":{"__isSmartRef__":true,"id":908}},"1115":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":1116}},"1116":{"isSerializedDate":true,"string":"Thu Jul 11 2013 23:13:06 GMT+0100 (BST)"},"1117":{"varMapping":{"__isSmartRef__":true,"id":1118},"source":"function provisionallyToggleRunning() {\n var bool = !this.running;\n\tif (bool && Number(this.get('remaining').textString) > 0) {\n this.startStepping(1000, 'updateTick');\n this.running = true;\n } else {\n this.stopStepping();\n this.running = false;\n }\n}","funcProperties":{"__isSmartRef__":true,"id":1119},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1118":{"this":{"__isSmartRef__":true,"id":908}},"1119":{"tags":[],"timestamp":{"__isSmartRef__":true,"id":1120}},"1120":{"isSerializedDate":true,"string":"Thu Jul 11 2013 22:45:22 GMT+0100 (BST)"},"1121":{"submorphs":[{"__isSmartRef__":true,"id":1122},{"__isSmartRef__":true,"id":1170},{"__isSmartRef__":true,"id":1210},{"__isSmartRef__":true,"id":1213},{"__isSmartRef__":true,"id":1216}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1219},"eventHandler":{"__isSmartRef__":true,"id":1220},"_ClipMode":"visible","derivationIds":[],"id":"EC065110-AD50-4D11-86DE-7FD4CE096837","__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":1221},"LK2":true,"__serializedExpressions__":["_Position","contentOffset","prevDragPos"],"reframeHandle":{"__isSmartRef__":true,"id":1210},"rightReframeHandle":{"__isSmartRef__":true,"id":1216},"bottomReframeHandle":{"__isSmartRef__":true,"id":1213},"titleBar":{"__isSmartRef__":true,"id":1122},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"_PreviousBorderWidth":0,"targetMorph":{"__isSmartRef__":true,"id":1170},"owner":{"__isSmartRef__":true,"id":0},"highlighted":false,"isBeingDragged":false,"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withLayers":["Global.PreventDroppingLayer"],"withoutLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(483.0,489.5)","contentOffset":"lively.pt(4.0,22.0)","prevDragPos":"lively.pt(533.0,489.0)"},"1122":{"submorphs":[{"__isSmartRef__":true,"id":1123},{"__isSmartRef__":true,"id":1129},{"__isSmartRef__":true,"id":1142},{"__isSmartRef__":true,"id":1154}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1167},"eventHandler":{"__isSmartRef__":true,"id":1168},"_ClipMode":"visible","derivationIds":[],"id":"34B5221F-DBA6-4E16-AEF6-0D90F176234E","__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"layout":{"__isSmartRef__":true,"id":1169},"__serializedExpressions__":["_Position"],"windowMorph":{"__isSmartRef__":true,"id":1121},"label":{"__isSmartRef__":true,"id":1123},"closeButton":{"__isSmartRef__":true,"id":1129},"menuButton":{"__isSmartRef__":true,"id":1142},"collapseButton":{"__isSmartRef__":true,"id":1154},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":1121},"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"1123":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1124},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1125}],"eventHandler":{"__isSmartRef__":true,"id":1127},"_ClipMode":"hidden","derivationIds":[],"id":"AAE2B2FB-18DE-4820-BB77-C0A99EA4B3A8","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"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":1128},"eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":1122},"_StyleClassNames":["window-title"],"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(20.0,3.0)"},"1124":{"__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(349.0,18.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1125":{"style":{"__isSmartRef__":true,"id":1126},"chunkOwner":{"__isSmartRef__":true,"id":1123},"_id":"_89119","storedString":"Editor for ProtovisMorph -> remaining","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1126":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1127":{"morph":{"__isSmartRef__":true,"id":1123},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1128":{"resizeWidth":true},"1129":{"submorphs":[{"__isSmartRef__":true,"id":1130}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1135},"eventHandler":{"__isSmartRef__":true,"id":1136},"_ClipMode":"visible","derivationIds":[],"id":"3280606B-2AB6-46A4-8539-1EE97B1C66E0","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1130},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":1122},"layout":{"__isSmartRef__":true,"id":1137},"_StyleClassNames":["close"],"attributeConnections":[{"__isSmartRef__":true,"id":1138},{"__isSmartRef__":true,"id":1140}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(388.0,3.0)"},"1130":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1131},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1132}],"eventHandler":{"__isSmartRef__":true,"id":1134},"_ClipMode":"hidden","derivationIds":[],"id":"68DEF4B7-07B8-4969-8F2D-C4D97F09F54C","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"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":1129},"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)"},"1131":{"__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)"},"1132":{"style":{"__isSmartRef__":true,"id":1133},"chunkOwner":{"__isSmartRef__":true,"id":1130},"_id":"_89121","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1133":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1134":{"morph":{"__isSmartRef__":true,"id":1130},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1135":{"__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)"},"1136":{"morph":{"__isSmartRef__":true,"id":1129},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1137":{"moveHorizontal":true},"1138":{"sourceObj":{"__isSmartRef__":true,"id":1129},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1121},"targetMethodName":"getCloseHelp","varMapping":{"__isSmartRef__":true,"id":1139},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1139":{"source":{"__isSmartRef__":true,"id":1129},"target":{"__isSmartRef__":true,"id":1121}},"1140":{"sourceObj":{"__isSmartRef__":true,"id":1129},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1121},"targetMethodName":"initiateShutdown","varMapping":{"__isSmartRef__":true,"id":1141},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1141":{"source":{"__isSmartRef__":true,"id":1129},"target":{"__isSmartRef__":true,"id":1121}},"1142":{"submorphs":[{"__isSmartRef__":true,"id":1143}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1148},"eventHandler":{"__isSmartRef__":true,"id":1149},"_ClipMode":"visible","derivationIds":[],"id":"DBD43DC9-9C14-497A-8451-73ED8DB85430","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1143},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":1122},"attributeConnections":[{"__isSmartRef__":true,"id":1150},{"__isSmartRef__":true,"id":1152}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"1143":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1144},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1145}],"eventHandler":{"__isSmartRef__":true,"id":1147},"_ClipMode":"hidden","derivationIds":[],"id":"126A0FDB-7BAE-4BA2-8F23-8D1DD7F3F0D8","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"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":1142},"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)"},"1144":{"__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)"},"1145":{"style":{"__isSmartRef__":true,"id":1146},"chunkOwner":{"__isSmartRef__":true,"id":1143},"_id":"_89123","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1146":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1147":{"morph":{"__isSmartRef__":true,"id":1143},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1148":{"__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)"},"1149":{"morph":{"__isSmartRef__":true,"id":1142},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1150":{"sourceObj":{"__isSmartRef__":true,"id":1142},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1121},"targetMethodName":"getMenuHelp","varMapping":{"__isSmartRef__":true,"id":1151},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1151":{"source":{"__isSmartRef__":true,"id":1142},"target":{"__isSmartRef__":true,"id":1121}},"1152":{"sourceObj":{"__isSmartRef__":true,"id":1142},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1121},"targetMethodName":"showTargetMorphMenu","varMapping":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1153":{"source":{"__isSmartRef__":true,"id":1142},"target":{"__isSmartRef__":true,"id":1121}},"1154":{"submorphs":[{"__isSmartRef__":true,"id":1155}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1160},"eventHandler":{"__isSmartRef__":true,"id":1161},"_ClipMode":"visible","derivationIds":[],"id":"5A9C8EA2-DE30-4D6F-9B10-378C5EBD9804","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"accessibleInInactiveWindow":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1155},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":1122},"layout":{"__isSmartRef__":true,"id":1162},"attributeConnections":[{"__isSmartRef__":true,"id":1163},{"__isSmartRef__":true,"id":1165}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(369.0,3.0)"},"1155":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1156},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1157}],"eventHandler":{"__isSmartRef__":true,"id":1159},"_ClipMode":"hidden","derivationIds":[],"id":"64A3590F-E6B8-4DB9-94A7-866A3B1D09A4","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"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":1154},"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)"},"1156":{"__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)"},"1157":{"style":{"__isSmartRef__":true,"id":1158},"chunkOwner":{"__isSmartRef__":true,"id":1155},"_id":"_89125","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1158":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1159":{"morph":{"__isSmartRef__":true,"id":1155},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1160":{"__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)"},"1161":{"morph":{"__isSmartRef__":true,"id":1154},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1162":{"moveHorizontal":true},"1163":{"sourceObj":{"__isSmartRef__":true,"id":1154},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1121},"targetMethodName":"getCollapseHelp","varMapping":{"__isSmartRef__":true,"id":1164},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1164":{"source":{"__isSmartRef__":true,"id":1154},"target":{"__isSmartRef__":true,"id":1121}},"1165":{"sourceObj":{"__isSmartRef__":true,"id":1154},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1121},"targetMethodName":"toggleCollapse","varMapping":{"__isSmartRef__":true,"id":1166},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1166":{"source":{"__isSmartRef__":true,"id":1154},"target":{"__isSmartRef__":true,"id":1121}},"1167":{"__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(408.0,22.0)","_Padding":"lively.rect(0,0,0,0)"},"1168":{"morph":{"__isSmartRef__":true,"id":1122},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1169":{"resizeWidth":true,"adjustForNewBounds":true},"1170":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1171},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1172},{"__isSmartRef__":true,"id":1174},{"__isSmartRef__":true,"id":1176},{"__isSmartRef__":true,"id":1178},{"__isSmartRef__":true,"id":1180},{"__isSmartRef__":true,"id":1182},{"__isSmartRef__":true,"id":1184},{"__isSmartRef__":true,"id":1186},{"__isSmartRef__":true,"id":1188},{"__isSmartRef__":true,"id":1190},{"__isSmartRef__":true,"id":1192},{"__isSmartRef__":true,"id":1194},{"__isSmartRef__":true,"id":1196},{"__isSmartRef__":true,"id":1198},{"__isSmartRef__":true,"id":1200}],"eventHandler":{"__isSmartRef__":true,"id":1202},"_ClipMode":"visible","derivationIds":[],"id":"8DAF96DD-CCB9-4C84-AF12-7440EB97CCE7","grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Courier","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"doitContext":{"__isSmartRef__":true,"id":948},"attributeConnections":[{"__isSmartRef__":true,"id":1203},{"__isSmartRef__":true,"id":1205},{"__isSmartRef__":true,"id":1207}],"doNotSerialize":["$$savedTextString","$$textString","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors"],"doNotCopyProperties":["$$savedTextString","$$textString"],"savedTextString":"function converter(value) {\n return [ Number(200*Math.cos(0.1*value)) ]\n}","layout":{"__isSmartRef__":true,"id":1209},"syntaxHighlightingWhileTyping":true,"textString":"function converter(value) {\n return [ Number(200*Math.cos(0.1*value)) ]\n}","owner":{"__isSmartRef__":true,"id":1121},"_lastSyntaxHighlightTime":20,"previousSelection":[27,27],"charsReplaced":" var speed=this.get('speed');","lastFindLoc":89,"priorSelectionRange":[65,65],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(4.0,22.0)"},"1171":{"__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(400.0,200.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"1172":{"style":{"__isSmartRef__":true,"id":1173},"chunkOwner":{"__isSmartRef__":true,"id":1170},"_id":"_89116","storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1173":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"1174":{"_id":"_89126","style":{"__isSmartRef__":true,"id":1175},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":" converter(value) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1175":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1176":{"_id":"_89127","style":{"__isSmartRef__":true,"id":1177},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1177":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1178":{"_id":"_89142","style":{"__isSmartRef__":true,"id":1179},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1179":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1180":{"_id":"_89129","style":{"__isSmartRef__":true,"id":1181},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1181":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"1182":{"_id":"_89130","style":{"__isSmartRef__":true,"id":1183},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":" [ ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1183":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1184":{"_id":"_89131","style":{"__isSmartRef__":true,"id":1185},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":"Number","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1185":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(204,0,0)"},"1186":{"_id":"_89132","style":{"__isSmartRef__":true,"id":1187},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1187":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1188":{"_id":"_89133","style":{"__isSmartRef__":true,"id":1189},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":"200","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1189":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"1190":{"_id":"_89134","style":{"__isSmartRef__":true,"id":1191},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":"*","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1191":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1192":{"_id":"_89135","style":{"__isSmartRef__":true,"id":1193},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":"Math","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1193":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(255,20,147)"},"1194":{"_id":"_89136","style":{"__isSmartRef__":true,"id":1195},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":".cos(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1195":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1196":{"_id":"_89797","style":{"__isSmartRef__":true,"id":1197},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":"0.1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1197":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"1198":{"_id":"_89798","style":{"__isSmartRef__":true,"id":1199},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":"*value)) ]\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1199":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1200":{"_id":"_89139","style":{"__isSmartRef__":true,"id":1201},"chunkOwner":{"__isSmartRef__":true,"id":1170},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1201":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1202":{"morph":{"__isSmartRef__":true,"id":1170},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1203":{"sourceObj":{"__isSmartRef__":true,"id":1170},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":948},"targetMethodName":"setConverter","varMapping":{"__isSmartRef__":true,"id":1204},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1204":{"source":{"__isSmartRef__":true,"id":1170},"target":{"__isSmartRef__":true,"id":948}},"1205":{"sourceObj":{"__isSmartRef__":true,"id":1170},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"alertOK","varMapping":{"__isSmartRef__":true,"id":1206},"converterString":"function () { return 'setting new converter' }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1206":{"source":{"__isSmartRef__":true,"id":1170},"target":{"__isSmartRef__":true,"id":0}},"1207":{"sourceObj":{"__isSmartRef__":true,"id":1170},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":1170},"targetMethodName":"highlightSyntaxDebounced","varMapping":{"__isSmartRef__":true,"id":1208},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1208":{"source":{"__isSmartRef__":true,"id":1170},"target":{"__isSmartRef__":true,"id":1170}},"1209":{"resizeWidth":true,"resizeHeight":true},"1210":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1211},"eventHandler":{"__isSmartRef__":true,"id":1212},"_ClipMode":"visible","derivationIds":[],"id":"EC82F10C-5117-41AF-B059-A850711A0318","__layered_droppingEnabled__":true,"halosEnabled":true,"draggingEnabled":false,"__serializedExpressions__":["_Position"],"type":"corner","_StyleClassNames":["reframe-handle corner"],"owner":{"__isSmartRef__":true,"id":1121},"__LivelyClassName__":"lively.morphic.ReframeHandle","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(394.0,212.0)"},"1211":{"__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)"},"1212":{"morph":{"__isSmartRef__":true,"id":1210},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1213":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1214},"eventHandler":{"__isSmartRef__":true,"id":1215},"_ClipMode":"visible","derivationIds":[],"id":"D6177D75-9E71-403F-9881-05FC114DD274","__layered_droppingEnabled__":true,"halosEnabled":true,"draggingEnabled":false,"__serializedExpressions__":["_Position"],"type":"bottom","_StyleClassNames":["reframe-handle bottom"],"owner":{"__isSmartRef__":true,"id":1121},"__LivelyClassName__":"lively.morphic.ReframeHandle","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,222.0)"},"1214":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(394.0,4.0)","_Padding":"lively.rect(0,0,0,0)"},"1215":{"morph":{"__isSmartRef__":true,"id":1213},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1216":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1217},"eventHandler":{"__isSmartRef__":true,"id":1218},"_ClipMode":"visible","derivationIds":[],"id":"EC4E9DFC-BF22-4240-A866-145D1AE93891","__layered_droppingEnabled__":true,"halosEnabled":true,"draggingEnabled":false,"__serializedExpressions__":["_Position"],"type":"right","_StyleClassNames":["reframe-handle right"],"owner":{"__isSmartRef__":true,"id":1121},"__LivelyClassName__":"lively.morphic.ReframeHandle","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(404.0,0.0)"},"1217":{"__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,212.0)","_Padding":"lively.rect(0,0,0,0)"},"1218":{"morph":{"__isSmartRef__":true,"id":1216},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1219":{"__serializedExpressions__":["_Padding","_Extent"],"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":false,"_BorderRadius":false,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Padding":"lively.rect(0,0,0,0)","_Extent":"lively.pt(408.0,226.0)"},"1220":{"morph":{"__isSmartRef__":true,"id":1121},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1221":{"adjustForNewBounds":true},"1222":{"submorphs":[],"scripts":[],"id":"6409D74D-58E8-45A3-AA24-933091C2F9CC","shape":{"__isSmartRef__":true,"id":1223},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":120.695652,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"Text","partsBinMetaInfo":{"__isSmartRef__":true,"id":170},"textChunks":[{"__isSmartRef__":true,"id":1224}],"charsReplaced":"Some Text","lastFindLoc":9,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":1226},"_ClipMode":"visible","derivationIds":[355,"1EB1674F-8BF2-419B-B054-86129ED70335","63698904-DC05-4341-A9B6-5CC4A219CD04","F6A714BA-4735-41ED-8A2A-45CB153FBDF8","F1D26890-7392-487D-B5DE-97C772B4E79E"],"_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":120.695652,"_MinTextHeight":null,"previousSelection":[3,3],"isBeingDragged":false,"moved":true,"__serializedExpressions__":["_Position","textColor","_Padding","distanceToDragEvent"],"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(1189.0,84.0)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)","distanceToDragEvent":"lively.pt(93.0,-13.0)"},"1223":{"fill":null,"_BorderWidth":0,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(128.7,112.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(4,2,0,0)"},"1224":{"style":{"__isSmartRef__":true,"id":1225},"morph":{"__isSmartRef__":true,"id":1222},"chunkOwner":{"__isSmartRef__":true,"id":1222},"storedString":"How to define inbound connections for the Model object?","_id":"_100","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1225":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1226":{"morph":{"__isSmartRef__":true,"id":1222},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1227":{"submorphs":[],"scripts":[],"id":"093D9135-4743-4ED2-8554-F1F8BB94C3DC","shape":{"__isSmartRef__":true,"id":1228},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":120.695652,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"Text4","partsBinMetaInfo":{"__isSmartRef__":true,"id":170},"textChunks":[{"__isSmartRef__":true,"id":1229}],"charsReplaced":"foo!?","lastFindLoc":5,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":1231},"_ClipMode":"visible","derivationIds":[355,"1EB1674F-8BF2-419B-B054-86129ED70335","63698904-DC05-4341-A9B6-5CC4A219CD04","F6A714BA-4735-41ED-8A2A-45CB153FBDF8","F1D26890-7392-487D-B5DE-97C772B4E79E"],"_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":120.695652,"_MinTextHeight":null,"previousSelection":[0,0],"isBeingDragged":false,"moved":true,"__serializedExpressions__":["_Position","textColor","_Padding"],"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(603.0,78.0)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)"},"1228":{"fill":null,"_BorderWidth":0,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(128.7,26.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(4,2,0,0)"},"1229":{"style":{"__isSmartRef__":true,"id":1230},"morph":{"__isSmartRef__":true,"id":1227},"chunkOwner":{"__isSmartRef__":true,"id":1227},"storedString":"Some Text","_id":"_100","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1230":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1231":{"morph":{"__isSmartRef__":true,"id":1227},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1232":{"submorphs":[],"scripts":[],"id":"CFBB1696-9BF0-431C-B554-2DB6467165C8","shape":{"__isSmartRef__":true,"id":1233},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":120.695652,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"Text5","partsBinMetaInfo":{"__isSmartRef__":true,"id":170},"textChunks":[{"__isSmartRef__":true,"id":1234}],"charsReplaced":"foo!?","lastFindLoc":5,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":1236},"_ClipMode":"visible","derivationIds":[355,"1EB1674F-8BF2-419B-B054-86129ED70335","63698904-DC05-4341-A9B6-5CC4A219CD04","F6A714BA-4735-41ED-8A2A-45CB153FBDF8","F1D26890-7392-487D-B5DE-97C772B4E79E"],"_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":120.695652,"_MinTextHeight":null,"isBeingDragged":false,"moved":true,"__serializedExpressions__":["_Position","textColor","_Padding"],"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1,"priorSelectionRange":[0,0],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(616.0,104.0)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)"},"1233":{"fill":null,"_BorderWidth":0,"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(128.7,26.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(4,2,0,0)"},"1234":{"style":{"__isSmartRef__":true,"id":1235},"morph":{"__isSmartRef__":true,"id":1232},"chunkOwner":{"__isSmartRef__":true,"id":1232},"storedString":"Some Text","_id":"_100","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1235":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1236":{"morph":{"__isSmartRef__":true,"id":1232},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1237":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":1238},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"showsMorphMenu":false,"halosEnabled":false,"registeredForMouseEvents":true,"_world":{"__isSmartRef__":true,"id":0},"carriesGrabbedMorphs":false,"eventHandler":{"__isSmartRef__":true,"id":1239},"lastScrollTime":1318553496851,"_ClipMode":"visible","__serializedExpressions__":["_Position"],"_Scale":1.002003004005006,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":0},"attributeConnections":[{"__isSmartRef__":true,"id":1240},{"__isSmartRef__":true,"id":1309},{"__isSmartRef__":true,"id":1311},{"__isSmartRef__":true,"id":1313},{"__isSmartRef__":true,"id":1318},{"__isSmartRef__":true,"id":1359},{"__isSmartRef__":true,"id":1361},{"__isSmartRef__":true,"id":1363},{"__isSmartRef__":true,"id":1368},{"__isSmartRef__":true,"id":1409},{"__isSmartRef__":true,"id":1411},{"__isSmartRef__":true,"id":1413}],"doNotSerialize":["$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$_Position","$$_Scale","$$_Rotation","$$owner"],"isCopyMorphRef":true,"morphRefId":4,"__LivelyClassName__":"lively.morphic.HandMorph","__SourceModuleName__":"Global.lively.morphic.Events","withLayers":["Global.NoMagnetsLayer"],"_Position":"lively.pt(316.0,718.0)"},"1238":{"__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)"},"1239":{"morph":{"__isSmartRef__":true,"id":1237},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1240":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":1241},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1317},"dependedBy":{"__isSmartRef__":true,"id":1241},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1241":{"sourceObj":{"__isSmartRef__":true,"id":1242},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":9},"targetMethodName":"realignConnection","varMapping":{"__isSmartRef__":true,"id":1308},"dependendConnections":[{"__isSmartRef__":true,"id":1260},{"__isSmartRef__":true,"id":1262},{"__isSmartRef__":true,"id":1264},{"__isSmartRef__":true,"id":1266},{"__isSmartRef__":true,"id":1240},{"__isSmartRef__":true,"id":1309},{"__isSmartRef__":true,"id":1311},{"__isSmartRef__":true,"id":1313}],"oldTransform":{"__isSmartRef__":true,"id":1315},"__LivelyClassName__":"lively.morphic.GeometryTransformConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"1242":{"submorphs":[],"scripts":[],"id":"2C82200D-1074-4CA8-8737-DDF74F2A7E28","shape":{"__isSmartRef__":true,"id":1243},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":85.35493484089704,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"Text3","partsBinMetaInfo":{"__isSmartRef__":true,"id":1244},"textChunks":[{"__isSmartRef__":true,"id":1245}],"charsReplaced":"some text","lastFindLoc":-9,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":1247},"_WhiteSpaceHandling":"pre-wrap","_Align":"center","magnets":[{"__isSmartRef__":true,"id":1248},{"__isSmartRef__":true,"id":1249},{"__isSmartRef__":true,"id":1250},{"__isSmartRef__":true,"id":1251},{"__isSmartRef__":true,"id":1252},{"__isSmartRef__":true,"id":1253},{"__isSmartRef__":true,"id":1254},{"__isSmartRef__":true,"id":1255}],"derivationIds":[487,"89C89A0C-B0BD-4B69-9313-A4C3DA0CC623"],"_ClipMode":"visible","_Rotation":0,"_Scale":1,"isBeingDragged":false,"attributeConnections":[{"__isSmartRef__":true,"id":1256},{"__isSmartRef__":true,"id":1258},{"__isSmartRef__":true,"id":1241},{"__isSmartRef__":true,"id":1260},{"__isSmartRef__":true,"id":1262},{"__isSmartRef__":true,"id":1264},{"__isSmartRef__":true,"id":1266},{"__isSmartRef__":true,"id":1268},{"__isSmartRef__":true,"id":1298},{"__isSmartRef__":true,"id":1302},{"__isSmartRef__":true,"id":1304}],"doNotSerialize":["$$textString","$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$textString","$$_Position","$$_Scale","$$_Rotation","$$owner"],"previousOwner":{"__isSmartRef__":true,"id":21},"__serializedExpressions__":["_Position","textColor","_TextColor","previousPosition"],"textString":"Timer","owner":null,"isPlaceholder":true,"eventsAreIgnored":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(8.6,280.2)","textColor":"Color.rgb(0,0,0)","_TextColor":"Color.rgb(255,255,255)","previousPosition":"lively.pt(8.6,18.2)"},"1243":{"fill":null,"_BorderWidth":0,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(85.4,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(204,204,204)"},"1244":{"partsSpaceName":"PartsBin/Basic","migrationLevel":2,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1245":{"style":{"__isSmartRef__":true,"id":1246},"chunkOwner":{"__isSmartRef__":true,"id":1242},"_id":"_5315","storedString":"Timer","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1246":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1247":{"morph":{"__isSmartRef__":true,"id":1242},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1248":{"morph":{"__isSmartRef__":true,"id":1242},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.0)","cachedGlobalPosition":"lively.pt(1126.6,223.6)"},"1249":{"morph":{"__isSmartRef__":true,"id":1242},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,0.0)","cachedGlobalPosition":"lively.pt(1169.3,223.6)"},"1250":{"morph":{"__isSmartRef__":true,"id":1242},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.0)","cachedGlobalPosition":"lively.pt(1211.9,223.6)"},"1251":{"morph":{"__isSmartRef__":true,"id":1242},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.5)","cachedGlobalPosition":"lively.pt(1211.9,234.6)"},"1252":{"morph":{"__isSmartRef__":true,"id":1242},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,1.0)","cachedGlobalPosition":"lively.pt(1211.9,245.6)"},"1253":{"morph":{"__isSmartRef__":true,"id":1242},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,1.0)","cachedGlobalPosition":"lively.pt(1169.3,245.6)"},"1254":{"morph":{"__isSmartRef__":true,"id":1242},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,1.0)","cachedGlobalPosition":"lively.pt(1126.6,245.6)"},"1255":{"morph":{"__isSmartRef__":true,"id":1242},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.5)","cachedGlobalPosition":"lively.pt(1126.6,234.6)"},"1256":{"sourceObj":{"__isSmartRef__":true,"id":1242},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":303},"targetMethodName":"addDataColumnAndRender","varMapping":{"__isSmartRef__":true,"id":1257},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1257":{"source":{"__isSmartRef__":true,"id":1242},"target":{"__isSmartRef__":true,"id":303}},"1258":{"sourceObj":{"__isSmartRef__":true,"id":1242},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":168},"targetMethodName":"textString","varMapping":{"__isSmartRef__":true,"id":1259},"visualConnector":{"__isSmartRef__":true,"id":9},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1259":{"source":{"__isSmartRef__":true,"id":1242},"target":{"__isSmartRef__":true,"id":168}},"1260":{"sourceObj":{"__isSmartRef__":true,"id":1242},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":1241},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1261},"dependedBy":{"__isSmartRef__":true,"id":1241},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1261":{"source":{"__isSmartRef__":true,"id":1242},"target":{"__isSmartRef__":true,"id":1241}},"1262":{"sourceObj":{"__isSmartRef__":true,"id":1242},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1241},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1263},"dependedBy":{"__isSmartRef__":true,"id":1241},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1263":{"source":{"__isSmartRef__":true,"id":1242},"target":{"__isSmartRef__":true,"id":1241}},"1264":{"sourceObj":{"__isSmartRef__":true,"id":1242},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1241},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1265},"dependedBy":{"__isSmartRef__":true,"id":1241},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1265":{"source":{"__isSmartRef__":true,"id":1242},"target":{"__isSmartRef__":true,"id":1241}},"1266":{"sourceObj":{"__isSmartRef__":true,"id":1242},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1241},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":1267},"dependedBy":{"__isSmartRef__":true,"id":1241},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1267":{"source":{"__isSmartRef__":true,"id":1242},"target":{"__isSmartRef__":true,"id":1241}},"1268":{"sourceObj":{"__isSmartRef__":true,"id":1242},"sourceAttrName":"rotation","targetObj":{"__isSmartRef__":true,"id":1269},"targetMethodName":"setRotation","varMapping":{"__isSmartRef__":true,"id":1297},"dependendConnections":[{"__isSmartRef__":true,"id":1298}],"attributeConnections":[{"__isSmartRef__":true,"id":1300}],"doNotSerialize":["$$varMapping"],"doNotCopyProperties":["$$varMapping"],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"1269":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1270},"eventHandler":{"__isSmartRef__":true,"id":1271},"_ClipMode":"visible","derivationIds":[],"id":"16BE442E-7B93-4AD3-9D92-927B0C9CEF8B","__layered_droppingEnabled__":false,"halosEnabled":true,"draggingEnabled":false,"isGrabShadow":true,"connections":[{"__isSmartRef__":true,"id":1272},{"__isSmartRef__":true,"id":1278}],"__serializedExpressions__":["_Position"],"_Rotation":0,"_Scale":1,"owner":null,"isCopyMorphRef":true,"morphRefId":5,"submorphsForReconnect":[],"attributeConnections":[{"__isSmartRef__":true,"id":1284}],"doNotSerialize":["$$owner"],"doNotCopyProperties":["$$owner"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1286},"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(-58.4,-8.8)"},"1270":{"fill":null,"_BorderWidth":0,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding","_Fill"],"_Opacity":0.5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(85.4,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(204,204,204)"},"1271":{"morph":{"__isSmartRef__":true,"id":1269},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1272":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"rotation","targetObj":{"__isSmartRef__":true,"id":1269},"targetMethodName":"setRotation","varMapping":{"__isSmartRef__":true,"id":1273},"dependendConnections":[],"attributeConnections":[{"__isSmartRef__":true,"id":1274}],"doNotSerialize":["$$varMapping"],"doNotCopyProperties":["$$varMapping"],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"1273":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":1269}},"1274":{"sourceObj":{"__isSmartRef__":true,"id":1272},"sourceAttrName":"varMapping","targetObj":{"__isSmartRef__":true,"id":1275},"targetMethodName":"varMapping","varMapping":{"__isSmartRef__":true,"id":1277},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1275":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1272},"targetMethodName":"update","varMapping":{"__isSmartRef__":true,"id":1276},"dependedBy":{"__isSmartRef__":true,"id":1272},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1276":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":1272}},"1277":{"source":{"__isSmartRef__":true,"id":1272},"target":{"__isSmartRef__":true,"id":1275}},"1278":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"scale","targetObj":{"__isSmartRef__":true,"id":1269},"targetMethodName":"setScale","varMapping":{"__isSmartRef__":true,"id":1279},"dependendConnections":[],"attributeConnections":[{"__isSmartRef__":true,"id":1280}],"doNotSerialize":["$$varMapping"],"doNotCopyProperties":["$$varMapping"],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"1279":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":1269}},"1280":{"sourceObj":{"__isSmartRef__":true,"id":1278},"sourceAttrName":"varMapping","targetObj":{"__isSmartRef__":true,"id":1281},"targetMethodName":"varMapping","varMapping":{"__isSmartRef__":true,"id":1283},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1281":{"sourceObj":{"__isSmartRef__":true,"id":1},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1278},"targetMethodName":"update","varMapping":{"__isSmartRef__":true,"id":1282},"dependedBy":{"__isSmartRef__":true,"id":1278},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1282":{"source":{"__isSmartRef__":true,"id":1},"target":{"__isSmartRef__":true,"id":1278}},"1283":{"source":{"__isSmartRef__":true,"id":1278},"target":{"__isSmartRef__":true,"id":1281}},"1284":{"sourceObj":{"__isSmartRef__":true,"id":1269},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1269},"targetMethodName":"reconnect","varMapping":{"__isSmartRef__":true,"id":1285},"removeAfterUpdate":true,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1285":{"source":{"__isSmartRef__":true,"id":1269},"target":{"__isSmartRef__":true,"id":1269}},"1286":{"remove":{"__isSmartRef__":true,"id":1287},"reconnect":{"__isSmartRef__":true,"id":1294}},"1287":{"varMapping":{"__isSmartRef__":true,"id":1288},"source":"function remove() {\n $super();\n this.connections.invoke('disconnect');\n this.submorphsForReconnect = this.submorphs.clone();\n this.submorphs.invoke('remove');\n lively.bindings.callWhenNotNull(this, 'owner', this, 'reconnect');\n }","funcProperties":{"__isSmartRef__":true,"id":1293},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1288":{"this":{"__isSmartRef__":true,"id":1269},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1289}},"1289":{"$super":{"__isSmartRef__":true,"id":1290}},"1290":{"varMapping":{"__isSmartRef__":true,"id":1291},"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":1292},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1291":{"obj":{"__isSmartRef__":true,"id":1269},"name":"remove"},"1292":{},"1293":{},"1294":{"varMapping":{"__isSmartRef__":true,"id":1295},"source":"function reconnect(newOwner) {\n this.connections.invoke('connect');\n this.submorphsForReconnect.forEach(function(ea) { this.addMorph(ea) }, this);\n delete this.submorphsForReconnect;\n }","funcProperties":{"__isSmartRef__":true,"id":1296},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1295":{"this":{"__isSmartRef__":true,"id":1269}},"1296":{},"1297":{"source":{"__isSmartRef__":true,"id":1242},"target":{"__isSmartRef__":true,"id":1269}},"1298":{"sourceObj":{"__isSmartRef__":true,"id":1242},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1268},"targetMethodName":"update","varMapping":{"__isSmartRef__":true,"id":1299},"dependedBy":{"__isSmartRef__":true,"id":1268},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1299":{"source":{"__isSmartRef__":true,"id":1242},"target":{"__isSmartRef__":true,"id":1268}},"1300":{"sourceObj":{"__isSmartRef__":true,"id":1268},"sourceAttrName":"varMapping","targetObj":{"__isSmartRef__":true,"id":1298},"targetMethodName":"varMapping","varMapping":{"__isSmartRef__":true,"id":1301},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1301":{"source":{"__isSmartRef__":true,"id":1268},"target":{"__isSmartRef__":true,"id":1298}},"1302":{"sourceObj":{"__isSmartRef__":true,"id":1242},"sourceAttrName":"scale","targetObj":{"__isSmartRef__":true,"id":1269},"targetMethodName":"setScale","varMapping":{"__isSmartRef__":true,"id":1303},"dependendConnections":[{"__isSmartRef__":true,"id":1304}],"attributeConnections":[{"__isSmartRef__":true,"id":1306}],"doNotSerialize":["$$varMapping"],"doNotCopyProperties":["$$varMapping"],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"1303":{"source":{"__isSmartRef__":true,"id":1242},"target":{"__isSmartRef__":true,"id":1269}},"1304":{"sourceObj":{"__isSmartRef__":true,"id":1242},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1302},"targetMethodName":"update","varMapping":{"__isSmartRef__":true,"id":1305},"dependedBy":{"__isSmartRef__":true,"id":1302},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1305":{"source":{"__isSmartRef__":true,"id":1242},"target":{"__isSmartRef__":true,"id":1302}},"1306":{"sourceObj":{"__isSmartRef__":true,"id":1302},"sourceAttrName":"varMapping","targetObj":{"__isSmartRef__":true,"id":1304},"targetMethodName":"varMapping","varMapping":{"__isSmartRef__":true,"id":1307},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1307":{"source":{"__isSmartRef__":true,"id":1302},"target":{"__isSmartRef__":true,"id":1304}},"1308":{"source":{"__isSmartRef__":true,"id":1242},"target":{"__isSmartRef__":true,"id":9}},"1309":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1241},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1310},"dependedBy":{"__isSmartRef__":true,"id":1241},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1310":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1241}},"1311":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1241},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1312},"dependedBy":{"__isSmartRef__":true,"id":1241},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1312":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1241}},"1313":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1241},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":1314},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","dependedBy":{"__isSmartRef__":true,"id":1241},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1314":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1241}},"1315":{"d":1,"a":1,"f":280.17,"e":8.579999999999998,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":1316},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1316":{"a":1,"b":0,"c":0,"d":1,"e":8.579999999999998,"f":280.17,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1317":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1241}},"1318":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":1319},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1367},"dependedBy":{"__isSmartRef__":true,"id":1319},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1319":{"sourceObj":{"__isSmartRef__":true,"id":1320},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":9},"targetMethodName":"realignConnection","varMapping":{"__isSmartRef__":true,"id":1358},"dependendConnections":[{"__isSmartRef__":true,"id":1338},{"__isSmartRef__":true,"id":1340},{"__isSmartRef__":true,"id":1342},{"__isSmartRef__":true,"id":1344},{"__isSmartRef__":true,"id":1318},{"__isSmartRef__":true,"id":1359},{"__isSmartRef__":true,"id":1361},{"__isSmartRef__":true,"id":1363}],"oldTransform":{"__isSmartRef__":true,"id":1365},"__LivelyClassName__":"lively.morphic.GeometryTransformConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"1320":{"submorphs":[],"scripts":[],"id":"0E7CE652-6D99-467E-99B2-681442FA0127","shape":{"__isSmartRef__":true,"id":1321},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":85.35493484089704,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"Text3","partsBinMetaInfo":{"__isSmartRef__":true,"id":1322},"textChunks":[{"__isSmartRef__":true,"id":1323}],"charsReplaced":"some text","lastFindLoc":-9,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":1325},"_WhiteSpaceHandling":"pre-wrap","_Align":"center","magnets":[{"__isSmartRef__":true,"id":1326},{"__isSmartRef__":true,"id":1327},{"__isSmartRef__":true,"id":1328},{"__isSmartRef__":true,"id":1329},{"__isSmartRef__":true,"id":1330},{"__isSmartRef__":true,"id":1331},{"__isSmartRef__":true,"id":1332},{"__isSmartRef__":true,"id":1333}],"derivationIds":[487,"89C89A0C-B0BD-4B69-9313-A4C3DA0CC623"],"_ClipMode":"visible","_Rotation":0,"_Scale":1,"isBeingDragged":false,"attributeConnections":[{"__isSmartRef__":true,"id":1334},{"__isSmartRef__":true,"id":1336},{"__isSmartRef__":true,"id":1319},{"__isSmartRef__":true,"id":1338},{"__isSmartRef__":true,"id":1340},{"__isSmartRef__":true,"id":1342},{"__isSmartRef__":true,"id":1344},{"__isSmartRef__":true,"id":1346},{"__isSmartRef__":true,"id":1348},{"__isSmartRef__":true,"id":1352},{"__isSmartRef__":true,"id":1354}],"doNotSerialize":["$$textString","$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$textString","$$_Position","$$_Scale","$$_Rotation","$$owner"],"previousOwner":{"__isSmartRef__":true,"id":21},"__serializedExpressions__":["_Position","textColor","_TextColor","previousPosition"],"textString":"Timer","owner":null,"isPlaceholder":true,"eventsAreIgnored":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(8.6,850.0)","textColor":"Color.rgb(0,0,0)","_TextColor":"Color.rgb(255,255,255)","previousPosition":"lively.pt(8.6,18.2)"},"1321":{"fill":null,"_BorderWidth":0,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(85.4,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(204,204,204)"},"1322":{"partsSpaceName":"PartsBin/Basic","migrationLevel":2,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1323":{"style":{"__isSmartRef__":true,"id":1324},"chunkOwner":{"__isSmartRef__":true,"id":1320},"_id":"_5320","storedString":"Timer","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1324":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1325":{"morph":{"__isSmartRef__":true,"id":1320},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1326":{"morph":{"__isSmartRef__":true,"id":1320},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.0)","cachedGlobalPosition":"lively.pt(1126.6,223.6)"},"1327":{"morph":{"__isSmartRef__":true,"id":1320},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,0.0)","cachedGlobalPosition":"lively.pt(1169.3,223.6)"},"1328":{"morph":{"__isSmartRef__":true,"id":1320},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.0)","cachedGlobalPosition":"lively.pt(1211.9,223.6)"},"1329":{"morph":{"__isSmartRef__":true,"id":1320},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.5)","cachedGlobalPosition":"lively.pt(1211.9,234.6)"},"1330":{"morph":{"__isSmartRef__":true,"id":1320},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,1.0)","cachedGlobalPosition":"lively.pt(1211.9,245.6)"},"1331":{"morph":{"__isSmartRef__":true,"id":1320},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,1.0)","cachedGlobalPosition":"lively.pt(1169.3,245.6)"},"1332":{"morph":{"__isSmartRef__":true,"id":1320},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,1.0)","cachedGlobalPosition":"lively.pt(1126.6,245.6)"},"1333":{"morph":{"__isSmartRef__":true,"id":1320},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.5)","cachedGlobalPosition":"lively.pt(1126.6,234.6)"},"1334":{"sourceObj":{"__isSmartRef__":true,"id":1320},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":303},"targetMethodName":"addDataColumnAndRender","varMapping":{"__isSmartRef__":true,"id":1335},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1335":{"source":{"__isSmartRef__":true,"id":1320},"target":{"__isSmartRef__":true,"id":303}},"1336":{"sourceObj":{"__isSmartRef__":true,"id":1320},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":168},"targetMethodName":"textString","varMapping":{"__isSmartRef__":true,"id":1337},"visualConnector":{"__isSmartRef__":true,"id":9},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1337":{"source":{"__isSmartRef__":true,"id":1320},"target":{"__isSmartRef__":true,"id":168}},"1338":{"sourceObj":{"__isSmartRef__":true,"id":1320},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":1319},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1339},"dependedBy":{"__isSmartRef__":true,"id":1319},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1339":{"source":{"__isSmartRef__":true,"id":1320},"target":{"__isSmartRef__":true,"id":1319}},"1340":{"sourceObj":{"__isSmartRef__":true,"id":1320},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1319},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1341},"dependedBy":{"__isSmartRef__":true,"id":1319},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1341":{"source":{"__isSmartRef__":true,"id":1320},"target":{"__isSmartRef__":true,"id":1319}},"1342":{"sourceObj":{"__isSmartRef__":true,"id":1320},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1319},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1343},"dependedBy":{"__isSmartRef__":true,"id":1319},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1343":{"source":{"__isSmartRef__":true,"id":1320},"target":{"__isSmartRef__":true,"id":1319}},"1344":{"sourceObj":{"__isSmartRef__":true,"id":1320},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1319},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":1345},"dependedBy":{"__isSmartRef__":true,"id":1319},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1345":{"source":{"__isSmartRef__":true,"id":1320},"target":{"__isSmartRef__":true,"id":1319}},"1346":{"sourceObj":{"__isSmartRef__":true,"id":1320},"sourceAttrName":"rotation","targetObj":{"__isSmartRef__":true,"id":1269},"targetMethodName":"setRotation","varMapping":{"__isSmartRef__":true,"id":1347},"dependendConnections":[{"__isSmartRef__":true,"id":1348}],"attributeConnections":[{"__isSmartRef__":true,"id":1350}],"doNotSerialize":["$$varMapping"],"doNotCopyProperties":["$$varMapping"],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"1347":{"source":{"__isSmartRef__":true,"id":1320},"target":{"__isSmartRef__":true,"id":1269}},"1348":{"sourceObj":{"__isSmartRef__":true,"id":1320},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1346},"targetMethodName":"update","varMapping":{"__isSmartRef__":true,"id":1349},"dependedBy":{"__isSmartRef__":true,"id":1346},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1349":{"source":{"__isSmartRef__":true,"id":1320},"target":{"__isSmartRef__":true,"id":1346}},"1350":{"sourceObj":{"__isSmartRef__":true,"id":1346},"sourceAttrName":"varMapping","targetObj":{"__isSmartRef__":true,"id":1348},"targetMethodName":"varMapping","varMapping":{"__isSmartRef__":true,"id":1351},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1351":{"source":{"__isSmartRef__":true,"id":1346},"target":{"__isSmartRef__":true,"id":1348}},"1352":{"sourceObj":{"__isSmartRef__":true,"id":1320},"sourceAttrName":"scale","targetObj":{"__isSmartRef__":true,"id":1269},"targetMethodName":"setScale","varMapping":{"__isSmartRef__":true,"id":1353},"dependendConnections":[{"__isSmartRef__":true,"id":1354}],"attributeConnections":[{"__isSmartRef__":true,"id":1356}],"doNotSerialize":["$$varMapping"],"doNotCopyProperties":["$$varMapping"],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"1353":{"source":{"__isSmartRef__":true,"id":1320},"target":{"__isSmartRef__":true,"id":1269}},"1354":{"sourceObj":{"__isSmartRef__":true,"id":1320},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1352},"targetMethodName":"update","varMapping":{"__isSmartRef__":true,"id":1355},"dependedBy":{"__isSmartRef__":true,"id":1352},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1355":{"source":{"__isSmartRef__":true,"id":1320},"target":{"__isSmartRef__":true,"id":1352}},"1356":{"sourceObj":{"__isSmartRef__":true,"id":1352},"sourceAttrName":"varMapping","targetObj":{"__isSmartRef__":true,"id":1354},"targetMethodName":"varMapping","varMapping":{"__isSmartRef__":true,"id":1357},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1357":{"source":{"__isSmartRef__":true,"id":1352},"target":{"__isSmartRef__":true,"id":1354}},"1358":{"source":{"__isSmartRef__":true,"id":1320},"target":{"__isSmartRef__":true,"id":9}},"1359":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1319},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1360},"dependedBy":{"__isSmartRef__":true,"id":1319},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1360":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1319}},"1361":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1319},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1362},"dependedBy":{"__isSmartRef__":true,"id":1319},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1362":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1319}},"1363":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1319},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":1364},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","dependedBy":{"__isSmartRef__":true,"id":1319},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1364":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1319}},"1365":{"d":1,"a":1,"f":849.9782466383388,"e":8.579999999999984,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":1366},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1366":{"a":1,"b":0,"c":0,"d":1,"e":8.579999999999984,"f":849.9782466383388,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1367":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1319}},"1368":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":1369},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1417},"dependedBy":{"__isSmartRef__":true,"id":1369},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1369":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":9},"targetMethodName":"realignConnection","varMapping":{"__isSmartRef__":true,"id":1408},"dependendConnections":[{"__isSmartRef__":true,"id":1388},{"__isSmartRef__":true,"id":1390},{"__isSmartRef__":true,"id":1392},{"__isSmartRef__":true,"id":1394},{"__isSmartRef__":true,"id":1368},{"__isSmartRef__":true,"id":1409},{"__isSmartRef__":true,"id":1411},{"__isSmartRef__":true,"id":1413}],"oldTransform":{"__isSmartRef__":true,"id":1415},"__LivelyClassName__":"lively.morphic.GeometryTransformConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"1370":{"submorphs":[],"scripts":[],"id":"12FAFDAF-3A96-4737-B64E-E97F2AEC38B5","shape":{"__isSmartRef__":true,"id":1371},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":85.35493484089704,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"Text3","partsBinMetaInfo":{"__isSmartRef__":true,"id":1372},"textChunks":[{"__isSmartRef__":true,"id":1373}],"charsReplaced":"some text","lastFindLoc":-9,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":1375},"_WhiteSpaceHandling":"pre-wrap","_Align":"center","magnets":[{"__isSmartRef__":true,"id":1376},{"__isSmartRef__":true,"id":1377},{"__isSmartRef__":true,"id":1378},{"__isSmartRef__":true,"id":1379},{"__isSmartRef__":true,"id":1380},{"__isSmartRef__":true,"id":1381},{"__isSmartRef__":true,"id":1382},{"__isSmartRef__":true,"id":1383}],"derivationIds":[487,"89C89A0C-B0BD-4B69-9313-A4C3DA0CC623"],"_ClipMode":"visible","_Rotation":0,"_Scale":1,"isBeingDragged":false,"attributeConnections":[{"__isSmartRef__":true,"id":1384},{"__isSmartRef__":true,"id":1386},{"__isSmartRef__":true,"id":1369},{"__isSmartRef__":true,"id":1388},{"__isSmartRef__":true,"id":1390},{"__isSmartRef__":true,"id":1392},{"__isSmartRef__":true,"id":1394},{"__isSmartRef__":true,"id":1396},{"__isSmartRef__":true,"id":1398},{"__isSmartRef__":true,"id":1402},{"__isSmartRef__":true,"id":1404}],"doNotSerialize":["$$textString","$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$textString","$$_Position","$$_Scale","$$_Rotation","$$owner"],"previousOwner":{"__isSmartRef__":true,"id":21},"__serializedExpressions__":["_Position","textColor","_TextColor","previousPosition"],"textString":"Timer","owner":null,"isPlaceholder":true,"eventsAreIgnored":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(8.6,989.8)","textColor":"Color.rgb(0,0,0)","_TextColor":"Color.rgb(255,255,255)","previousPosition":"lively.pt(8.6,18.2)"},"1371":{"fill":null,"_BorderWidth":0,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(85.4,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(204,204,204)"},"1372":{"partsSpaceName":"PartsBin/Basic","migrationLevel":2,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1373":{"style":{"__isSmartRef__":true,"id":1374},"chunkOwner":{"__isSmartRef__":true,"id":1370},"_id":"_5327","storedString":"Timer","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1374":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1375":{"morph":{"__isSmartRef__":true,"id":1370},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1376":{"morph":{"__isSmartRef__":true,"id":1370},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.0)","cachedGlobalPosition":"lively.pt(1126.6,223.6)"},"1377":{"morph":{"__isSmartRef__":true,"id":1370},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,0.0)","cachedGlobalPosition":"lively.pt(1169.3,223.6)"},"1378":{"morph":{"__isSmartRef__":true,"id":1370},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.0)","cachedGlobalPosition":"lively.pt(1211.9,223.6)"},"1379":{"morph":{"__isSmartRef__":true,"id":1370},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,0.5)","cachedGlobalPosition":"lively.pt(1211.9,234.6)"},"1380":{"morph":{"__isSmartRef__":true,"id":1370},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(1.0,1.0)","cachedGlobalPosition":"lively.pt(1211.9,245.6)"},"1381":{"morph":{"__isSmartRef__":true,"id":1370},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.5,1.0)","cachedGlobalPosition":"lively.pt(1169.3,245.6)"},"1382":{"morph":{"__isSmartRef__":true,"id":1370},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,1.0)","cachedGlobalPosition":"lively.pt(1126.6,245.6)"},"1383":{"morph":{"__isSmartRef__":true,"id":1370},"connectedControlPoints":[],"__serializedExpressions__":["position","cachedGlobalPosition"],"__LivelyClassName__":"lively.morphic.RelativeMagnet","__SourceModuleName__":"Global.lively.morphic.Connectors","position":"lively.pt(0.0,0.5)","cachedGlobalPosition":"lively.pt(1126.6,234.6)"},"1384":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":303},"targetMethodName":"addDataColumnAndRender","varMapping":{"__isSmartRef__":true,"id":1385},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1385":{"source":{"__isSmartRef__":true,"id":1370},"target":{"__isSmartRef__":true,"id":303}},"1386":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":168},"targetMethodName":"textString","varMapping":{"__isSmartRef__":true,"id":1387},"visualConnector":{"__isSmartRef__":true,"id":9},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1387":{"source":{"__isSmartRef__":true,"id":1370},"target":{"__isSmartRef__":true,"id":168}},"1388":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":1369},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1389},"dependedBy":{"__isSmartRef__":true,"id":1369},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1389":{"source":{"__isSmartRef__":true,"id":1370},"target":{"__isSmartRef__":true,"id":1369}},"1390":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1369},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1391},"dependedBy":{"__isSmartRef__":true,"id":1369},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1391":{"source":{"__isSmartRef__":true,"id":1370},"target":{"__isSmartRef__":true,"id":1369}},"1392":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1369},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1393},"dependedBy":{"__isSmartRef__":true,"id":1369},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1393":{"source":{"__isSmartRef__":true,"id":1370},"target":{"__isSmartRef__":true,"id":1369}},"1394":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1369},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":1395},"dependedBy":{"__isSmartRef__":true,"id":1369},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1395":{"source":{"__isSmartRef__":true,"id":1370},"target":{"__isSmartRef__":true,"id":1369}},"1396":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"rotation","targetObj":{"__isSmartRef__":true,"id":1269},"targetMethodName":"setRotation","varMapping":{"__isSmartRef__":true,"id":1397},"dependendConnections":[{"__isSmartRef__":true,"id":1398}],"attributeConnections":[{"__isSmartRef__":true,"id":1400}],"doNotSerialize":["$$varMapping"],"doNotCopyProperties":["$$varMapping"],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"1397":{"source":{"__isSmartRef__":true,"id":1370},"target":{"__isSmartRef__":true,"id":1269}},"1398":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1396},"targetMethodName":"update","varMapping":{"__isSmartRef__":true,"id":1399},"dependedBy":{"__isSmartRef__":true,"id":1396},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1399":{"source":{"__isSmartRef__":true,"id":1370},"target":{"__isSmartRef__":true,"id":1396}},"1400":{"sourceObj":{"__isSmartRef__":true,"id":1396},"sourceAttrName":"varMapping","targetObj":{"__isSmartRef__":true,"id":1398},"targetMethodName":"varMapping","varMapping":{"__isSmartRef__":true,"id":1401},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1401":{"source":{"__isSmartRef__":true,"id":1396},"target":{"__isSmartRef__":true,"id":1398}},"1402":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"scale","targetObj":{"__isSmartRef__":true,"id":1269},"targetMethodName":"setScale","varMapping":{"__isSmartRef__":true,"id":1403},"dependendConnections":[{"__isSmartRef__":true,"id":1404}],"attributeConnections":[{"__isSmartRef__":true,"id":1406}],"doNotSerialize":["$$varMapping"],"doNotCopyProperties":["$$varMapping"],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"1403":{"source":{"__isSmartRef__":true,"id":1370},"target":{"__isSmartRef__":true,"id":1269}},"1404":{"sourceObj":{"__isSmartRef__":true,"id":1370},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1402},"targetMethodName":"update","varMapping":{"__isSmartRef__":true,"id":1405},"dependedBy":{"__isSmartRef__":true,"id":1402},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1405":{"source":{"__isSmartRef__":true,"id":1370},"target":{"__isSmartRef__":true,"id":1402}},"1406":{"sourceObj":{"__isSmartRef__":true,"id":1402},"sourceAttrName":"varMapping","targetObj":{"__isSmartRef__":true,"id":1404},"targetMethodName":"varMapping","varMapping":{"__isSmartRef__":true,"id":1407},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1407":{"source":{"__isSmartRef__":true,"id":1402},"target":{"__isSmartRef__":true,"id":1404}},"1408":{"source":{"__isSmartRef__":true,"id":1370},"target":{"__isSmartRef__":true,"id":9}},"1409":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1369},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1410},"dependedBy":{"__isSmartRef__":true,"id":1369},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1410":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1369}},"1411":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1369},"targetMethodName":"signalTarget","varMapping":{"__isSmartRef__":true,"id":1412},"dependedBy":{"__isSmartRef__":true,"id":1369},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1412":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1369}},"1413":{"sourceObj":{"__isSmartRef__":true,"id":1237},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1369},"targetMethodName":"updateOwners","varMapping":{"__isSmartRef__":true,"id":1414},"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","dependedBy":{"__isSmartRef__":true,"id":1369},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1414":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1369}},"1415":{"d":1,"a":1,"f":989.825425200542,"e":8.580000000000013,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":1416},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1416":{"a":1,"b":0,"c":0,"d":1,"e":8.580000000000013,"f":989.825425200542,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1417":{"source":{"__isSmartRef__":true,"id":1237},"target":{"__isSmartRef__":true,"id":1369}},"1418":{"__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(2800.0,2900.0)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)"},"1419":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"1420":{"morph":{"__isSmartRef__":true,"id":0},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1421":{"sourceObj":{"__isSmartRef__":true,"id":0},"sourceAttrName":"savedWorldAsURL","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"visitNewPageAfterSaveAs","varMapping":{"__isSmartRef__":true,"id":1422},"updaterString":"function ($upd, v) {\n if (v && v.toString() !== URL.source.toString()) { $upd(v); }\n }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1422":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"1423":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/oliverwilliams/start.xhtml","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1424":{"isSerializedDate":true,"string":"Thu May 15 2014 00:02:35 GMT+0100 (BST)"},"1425":{"submorphs":[{"__isSmartRef__":true,"id":1426}],"scripts":[],"id":"1F5E60A2-9B37-4277-AED6-BECEDA3C5D29","shape":{"__isSmartRef__":true,"id":1437},"__layered_droppingEnabled__":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"LoadingMorph","partsBinMetaInfo":{"__isSmartRef__":true,"id":1438},"eventHandler":{"__isSmartRef__":true,"id":1538},"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","0C359AB4-E7FF-46F2-B050-E84944AAC865"],"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":1539},"prevScroll":[0,0],"moved":true,"headRevision":146469,"_ClipMode":"visible","_Rotation":0,"_Scale":1,"isMetaTool":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1540},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)","distanceToDragEvent":"lively.pt(171.0,-13.0)"},"1426":{"submorphs":[{"__isSmartRef__":true,"id":1427}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1433},"id":"8ABD8E52-8368-4DB0-B860-8BADD33EFDCB","eventHandler":{"__isSmartRef__":true,"id":1434},"__layered_droppingEnabled__":true,"halosEnabled":true,"name":"ProgressIndicator","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":1435},"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","B1D109CF-D403-4B0A-988D-50F79586DAC1"],"owner":{"__isSmartRef__":true,"id":1425},"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":1436},"prevScroll":[0,0],"_ClipMode":"visible","_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.Image","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(113.5,81.0)","distanceToDragEvent":"lively.pt(39.0,-11.0)"},"1427":{"submorphs":[],"scripts":[],"id":"BC397D7B-CE13-493A-9276-A4A9CA8F24FC","shape":{"__isSmartRef__":true,"id":1428},"grabbingEnabled":false,"__layered_droppingEnabled__":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":257,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"loadedMorphName","partsBinMetaInfo":{"__isSmartRef__":true,"id":1429},"textChunks":[{"__isSmartRef__":true,"id":1430}],"charsReplaced":"MorphName","lastFindLoc":18,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":1432},"_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","08EA4866-65F7-416E-810F-77F2E719663A"],"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":1426},"_MinTextWidth":257,"_MinTextHeight":null,"previousSelection":[6,6],"_Align":"center","isBeingDragged":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","textColor","_Padding","distanceToDragEvent"],"__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)"},"1428":{"fill":null,"_BorderWidth":0,"_ClipMode":"visible","_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(257.0,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"1429":{"partsSpaceName":"PartsBin/Basic","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1430":{"style":{"__isSmartRef__":true,"id":1431},"chunkOwner":{"__isSmartRef__":true,"id":1427},"storedString":"loading part","_id":"_4371","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1431":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1432":{"morph":{"__isSmartRef__":true,"id":1427},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1433":{"_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","__serializedExpressions__":["_Position","_Extent","_Padding"],"__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)"},"1434":{"morph":{"__isSmartRef__":true,"id":1426},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1435":{"partName":"ProgressIndicator","requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1436":{"centeredHorizontal":true,"centeredVertical":true},"1437":{"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":8.515,"_Opacity":0.8146,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(266.0,223.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"1438":{"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":1439},{"__isSmartRef__":true,"id":1441},{"__isSmartRef__":true,"id":1443},{"__isSmartRef__":true,"id":1445},{"__isSmartRef__":true,"id":1447},{"__isSmartRef__":true,"id":1449},{"__isSmartRef__":true,"id":1451},{"__isSmartRef__":true,"id":1453},{"__isSmartRef__":true,"id":1455},{"__isSmartRef__":true,"id":1457},{"__isSmartRef__":true,"id":1459},{"__isSmartRef__":true,"id":1461},{"__isSmartRef__":true,"id":1463},{"__isSmartRef__":true,"id":1465},{"__isSmartRef__":true,"id":1467},{"__isSmartRef__":true,"id":1469},{"__isSmartRef__":true,"id":1471},{"__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}],"lastModifiedDate":{"__isSmartRef__":true,"id":1537},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"1439":{"date":{"__isSmartRef__":true,"id":1440},"author":"sstamm","message":"","id":"1C1391AE-5722-4707-BE52-F0094FC56829"},"1440":{"isSerializedDate":true,"string":"Wed Feb 22 2012 13:02:04 GMT+0000 (GMT)"},"1441":{"date":{"__isSmartRef__":true,"id":1442},"author":"sstamm","message":"","id":"663F147A-9084-4AC3-81A7-1E7BA6547F08"},"1442":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:43:10 GMT+0000 (GMT)"},"1443":{"date":{"__isSmartRef__":true,"id":1444},"author":"sstamm","message":"","id":"F72B746E-B170-4EFB-9074-5E8770640B8A"},"1444":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:36:14 GMT+0000 (GMT)"},"1445":{"date":{"__isSmartRef__":true,"id":1446},"author":"sstamm","message":"","id":"568D2EFD-C535-43AE-8944-6D8B967129F5"},"1446":{"isSerializedDate":true,"string":"Wed Feb 22 2012 11:23:04 GMT+0000 (GMT)"},"1447":{"date":{"__isSmartRef__":true,"id":1448},"author":"sstamm","message":"","id":"AB2484A6-0707-4E13-845E-F0A5F48BBA3D"},"1448":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:59:45 GMT+0000 (GMT)"},"1449":{"date":{"__isSmartRef__":true,"id":1450},"author":"sstamm","message":"","id":"97D20633-F76C-46A5-A32A-FFE9BC83CAB3"},"1450":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:59:10 GMT+0000 (GMT)"},"1451":{"date":{"__isSmartRef__":true,"id":1452},"author":"sstamm","message":"","id":"8A697DF5-9A45-4A84-B709-9719BF55083E"},"1452":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:56:54 GMT+0000 (GMT)"},"1453":{"date":{"__isSmartRef__":true,"id":1454},"author":"sstamm","message":"","id":"F2157D66-1571-4B9A-B325-6FA96488260F"},"1454":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:51:05 GMT+0000 (GMT)"},"1455":{"date":{"__isSmartRef__":true,"id":1456},"author":"sstamm","message":"","id":"E5E808CA-06AB-47DC-A9C9-CA7967591545"},"1456":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:47:19 GMT+0000 (GMT)"},"1457":{"date":{"__isSmartRef__":true,"id":1458},"author":"sstamm","message":"","id":"009DC4E0-23CA-485A-A796-801AA0F75049"},"1458":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:46:25 GMT+0000 (GMT)"},"1459":{"date":{"__isSmartRef__":true,"id":1460},"author":"sstamm","message":"","id":"C0CE1397-6E2E-4E8C-AEFF-9017E24BB7E4"},"1460":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:45:05 GMT+0000 (GMT)"},"1461":{"date":{"__isSmartRef__":true,"id":1462},"author":"sstamm","message":"","id":"FFE16986-548D-4AC2-A627-CF6416282BC4"},"1462":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:37:15 GMT+0000 (GMT)"},"1463":{"date":{"__isSmartRef__":true,"id":1464},"author":"sstamm","message":"","id":"57213D63-7147-4057-ADC9-30994443B066"},"1464":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:35:29 GMT+0000 (GMT)"},"1465":{"date":{"__isSmartRef__":true,"id":1466},"author":"sstamm","message":"","id":"75A31364-B380-4312-BB5B-F8F2DA1CE824"},"1466":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:31:52 GMT+0000 (GMT)"},"1467":{"date":{"__isSmartRef__":true,"id":1468},"author":"sstamm","message":"","id":"5AA50B7E-7D33-44C4-807B-BF1ABA31D530"},"1468":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:14:10 GMT+0000 (GMT)"},"1469":{"date":{"__isSmartRef__":true,"id":1470},"author":"sstamm","message":"","id":"BCDCC505-534C-45E5-9BB2-5238959A5AD0"},"1470":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:02:56 GMT+0000 (GMT)"},"1471":{"date":{"__isSmartRef__":true,"id":1472},"author":"sstamm","message":"","id":"890D14F4-E89D-4E05-BFB9-875D6AB6C765"},"1472":{"isSerializedDate":true,"string":"Wed Feb 22 2012 10:01:50 GMT+0000 (GMT)"},"1473":{"date":{"__isSmartRef__":true,"id":1474},"author":"sstamm","message":"","id":"B6FE0805-0D24-4267-8238-8B332352617E"},"1474":{"isSerializedDate":true,"string":"Wed Feb 22 2012 09:55:44 GMT+0000 (GMT)"},"1475":{"date":{"__isSmartRef__":true,"id":1476},"author":"sstamm","message":"callbacks are working","id":"9348260A-3B55-4659-BC85-440BFBD98EA4"},"1476":{"isSerializedDate":true,"string":"Fri Feb 10 2012 08:45:55 GMT+0000 (GMT)"},"1477":{"date":{"__isSmartRef__":true,"id":1478},"author":"sstamm","message":"made it more opaque","id":"1B84264C-2822-407F-A58F-19217BCD2762"},"1478":{"isSerializedDate":true,"string":"Wed Feb 08 2012 10:41:50 GMT+0000 (GMT)"},"1479":{"date":{"__isSmartRef__":true,"id":1480},"author":"sstamm","message":"","id":"0FB41D7D-2A52-4782-814B-A66C24FCE569"},"1480":{"isSerializedDate":true,"string":"Tue Feb 07 2012 10:13:49 GMT+0000 (GMT)"},"1481":{"date":{"__isSmartRef__":true,"id":1482},"author":"sstamm","message":"","id":"A0C2D7C1-04AF-493A-A7D7-70750F7D3E2F"},"1482":{"isSerializedDate":true,"string":"Thu Feb 02 2012 16:22:07 GMT+0000 (GMT)"},"1483":{"date":{"__isSmartRef__":true,"id":1484},"author":"sstamm","message":"trollolol","id":"F6CFAD78-AC72-4DE2-9F38-79776C2E9462"},"1484":{"isSerializedDate":true,"string":"Thu Feb 02 2012 13:55:14 GMT+0000 (GMT)"},"1485":{"date":{"__isSmartRef__":true,"id":1486},"author":"sstamm","message":"should be centered now","id":"EE366B4D-C272-477F-8C28-4EAE5A7EC7CB"},"1486":{"isSerializedDate":true,"string":"Thu Feb 02 2012 13:54:35 GMT+0000 (GMT)"},"1487":{"date":{"__isSmartRef__":true,"id":1488},"author":"sstamm","message":"initial commit","id":"8920D925-DD16-4667-B8C7-FB74D78C2424"},"1488":{"isSerializedDate":true,"string":"Thu Feb 02 2012 12:26:01 GMT+0000 (GMT)"},"1489":{"date":{"__isSmartRef__":true,"id":1490},"author":"sstamm","message":"changed text morph name","id":"80E88A3C-5AF3-48F2-A600-710877630997"},"1490":{"isSerializedDate":true,"string":"Thu Feb 02 2012 13:04:01 GMT+0000 (GMT)"},"1491":{"date":{"__isSmartRef__":true,"id":1492},"author":"sstamm","message":"added loading script","id":"EE9B8F4D-1F03-4232-82E6-794046974F8F"},"1492":{"isSerializedDate":true,"string":"Thu Feb 02 2012 13:28:30 GMT+0000 (GMT)"},"1493":{"date":{"__isSmartRef__":true,"id":1494},"author":"sstamm","message":"added disconnection","id":"11F19267-924E-4087-99ED-998245576BD2"},"1494":{"isSerializedDate":true,"string":"Thu Feb 02 2012 13:32:58 GMT+0000 (GMT)"},"1495":{"date":{"__isSmartRef__":true,"id":1496},"author":"sstamm","message":"removed connections before deletion","id":"35A88218-6864-4D52-83A2-BFF7B9A6907C"},"1496":{"isSerializedDate":true,"string":"Thu Feb 02 2012 13:41:00 GMT+0000 (GMT)"},"1497":{"date":{"__isSmartRef__":true,"id":1498},"author":"sstamm","message":"now able to load parts by name and category as well as per partItem","id":"F36A5782-461D-4813-95F8-0207990A261C"},"1498":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:24:30 GMT+0000 (GMT)"},"1499":{"date":{"__isSmartRef__":true,"id":1500},"author":"sstamm","message":"now with round corners","id":"F42C39CB-CC37-467D-BF10-D362241F047E"},"1500":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:26:23 GMT+0000 (GMT)"},"1501":{"date":{"__isSmartRef__":true,"id":1502},"author":"sstamm","message":"loadingMorph is sync now","id":"12ACFFC9-BA53-4A2A-ABD4-894A5ECE1145"},"1502":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:48:04 GMT+0000 (GMT)"},"1503":{"date":{"__isSmartRef__":true,"id":1504},"author":"sstamm","message":"display the loadingMorph in new thread","id":"2BA51E30-F02B-4AF0-B3BE-52DD4ED522CC"},"1504":{"isSerializedDate":true,"string":"Thu Feb 02 2012 14:53:49 GMT+0000 (GMT)"},"1505":{"date":{"__isSmartRef__":true,"id":1506},"author":"sstamm","message":"","id":"DF0AE4EA-1B08-4556-8BBE-E6488F23B8A3"},"1506":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:49:48 GMT+0000 (GMT)"},"1507":{"date":{"__isSmartRef__":true,"id":1508},"author":"sstamm","message":"","id":"220821B3-C589-41C9-A324-8E7E6D9D6CEB"},"1508":{"isSerializedDate":true,"string":"Thu Feb 02 2012 15:58:43 GMT+0000 (GMT)"},"1509":{"date":{"__isSmartRef__":true,"id":1510},"author":"sstamm","message":"","id":"DEBFACE2-7EC5-4A86-AD46-5A0A88A73707"},"1510":{"isSerializedDate":true,"string":"Thu Feb 02 2012 16:04:28 GMT+0000 (GMT)"},"1511":{"date":{"__isSmartRef__":true,"id":1512},"author":"sstamm","message":"load request in new thread if loading should be async","id":"18282D28-D6D4-48C9-A508-6E3244449BD8"},"1512":{"isSerializedDate":true,"string":"Tue Feb 07 2012 10:10:27 GMT+0000 (GMT)"},"1513":{"date":{"__isSmartRef__":true,"id":1514},"author":"sstamm","message":"added benchmarking output","id":"249CFF90-DDF5-4A83-9759-0289E96D7D58"},"1514":{"isSerializedDate":true,"string":"Tue Feb 07 2012 10:31:50 GMT+0000 (GMT)"},"1515":{"date":{"__isSmartRef__":true,"id":1516},"author":"sstamm","message":"","id":"882082E1-29B6-418D-9B8B-672729D60619"},"1516":{"isSerializedDate":true,"string":"Tue Feb 07 2012 10:38:26 GMT+0000 (GMT)"},"1517":{"date":{"__isSmartRef__":true,"id":1518},"author":"sstamm","message":"","id":"5179AEF9-E19F-4B0C-BBD8-556C5687988A"},"1518":{"isSerializedDate":true,"string":"Tue Feb 07 2012 10:44:11 GMT+0000 (GMT)"},"1519":{"date":{"__isSmartRef__":true,"id":1520},"author":"sstamm","message":"","id":"1159C5B4-724E-4124-9D7B-5CD5DC4A8EE3"},"1520":{"isSerializedDate":true,"string":"Tue Feb 07 2012 10:48:14 GMT+0000 (GMT)"},"1521":{"date":{"__isSmartRef__":true,"id":1522},"author":"sstamm","message":"","id":"2A718D1F-1036-41D6-999A-336F2B14E65D"},"1522":{"isSerializedDate":true,"string":"Tue Feb 07 2012 10:49:47 GMT+0000 (GMT)"},"1523":{"date":{"__isSmartRef__":true,"id":1524},"author":"sstamm","message":"","id":"EB6BDD0C-7EEC-4124-B77F-2F106A601538"},"1524":{"isSerializedDate":true,"string":"Tue Feb 07 2012 10:59:48 GMT+0000 (GMT)"},"1525":{"date":{"__isSmartRef__":true,"id":1526},"author":"sstamm","message":"","id":"63EC8D07-AB6A-450A-BB84-9B4D37E03647"},"1526":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:02:33 GMT+0000 (GMT)"},"1527":{"date":{"__isSmartRef__":true,"id":1528},"author":"sstamm","message":"","id":"19CE12E4-5AA5-48DC-B1D1-B0EB0EDF1CB9"},"1528":{"isSerializedDate":true,"string":"Tue Feb 07 2012 11:03:42 GMT+0000 (GMT)"},"1529":{"date":{"__isSmartRef__":true,"id":1530},"author":"sstamm","message":"first attempt to introduce callback functions to part loading","id":"22BD0B95-8948-411A-A56E-AD7CBE445F1D"},"1530":{"isSerializedDate":true,"string":"Thu Feb 09 2012 19:20:11 GMT+0000 (GMT)"},"1531":{"date":{"__isSmartRef__":true,"id":1532},"author":"sstamm","message":"","id":"A216DFD2-9D1F-4E62-A22F-6B5472823E1B"},"1532":{"isSerializedDate":true,"string":"Fri Mar 16 2012 14:37:34 GMT+0000 (GMT)"},"1533":{"date":{"__isSmartRef__":true,"id":1534},"author":"sstamm","message":"","id":"464E723A-08DC-433C-AA5C-CEC850DBAF0B"},"1534":{"isSerializedDate":true,"string":"Fri Mar 16 2012 14:42:29 GMT+0000 (GMT)"},"1535":{"date":{"__isSmartRef__":true,"id":1536},"author":"jenslincke","message":"make it a meta tool","id":"8406E1E5-C48F-4F03-AC17-81AABDE9235E"},"1536":{"isSerializedDate":true,"string":"Fri Mar 22 2013 13:56:05 GMT+0000 (GMT)"},"1537":{"isSerializedDate":true,"string":"Wed Feb 05 2014 18:59:57 GMT+0000 (GMT)"},"1538":{"morph":{"__isSmartRef__":true,"id":1425},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1539":{"adjustForNewBounds":true},"1540":{"loadPart":{"__isSmartRef__":true,"id":1541},"loadFinished":{"__isSmartRef__":true,"id":1545},"loadPartByName":{"__isSmartRef__":true,"id":1549}},"1541":{"varMapping":{"__isSmartRef__":true,"id":1542},"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":1543},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1542":{"this":{"__isSmartRef__":true,"id":1425}},"1543":{"timestamp":{"__isSmartRef__":true,"id":1544},"user":"sstamm","tags":[]},"1544":{"isSerializedDate":true,"string":"Fri Mar 16 2012 14:42:18 GMT+0000 (GMT)"},"1545":{"varMapping":{"__isSmartRef__":true,"id":1546},"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":1547},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1546":{"this":{"__isSmartRef__":true,"id":1425}},"1547":{"timestamp":{"__isSmartRef__":true,"id":1548},"user":"sstamm","tags":[]},"1548":{"isSerializedDate":true,"string":"Wed Feb 22 2012 13:01:53 GMT+0000 (GMT)"},"1549":{"varMapping":{"__isSmartRef__":true,"id":1550},"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":1551},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1550":{"this":{"__isSmartRef__":true,"id":1425}},"1551":{"timestamp":{"__isSmartRef__":true,"id":1552},"user":"sstamm","tags":[]},"1552":{"isSerializedDate":true,"string":"Thu Feb 02 2012 16:03:18 GMT+0000 (GMT)"},"isSimplifiedRegistry":true}}]]>