//
t = ClipboardHack.ensurePasteBuffer();
t.style.top = '700px'
t.style.height = '30px'
t.style.width = '300px'
>reshape\n\t\tClipboardHack.selectPasteBuffer();\n\t\t\n\t\tvar selecting = evt.isShiftDown();\n\t\tvar selectionStopped = !this.hasNullSelection() && !selecting;\n\t\tvar pos = this.getCursorPos(); // is selectionRange[0] or selectionRange[1], depends on selectionPivot\n\t\tvar wordRange = evt.isMetaDown() ? this.locale.selectWord(this.textString, pos) : null;\n\n\t\tvar textMorph = this;\n\t\tvar moveCursor = function(newPos) {\n\t\t\tif (selecting) textMorph.extendSelection(newPos);\n\t\t\telse textMorph.startSelection(newPos);\n\t\t\tevt.stop();\n\t\t\treturn true;\n\t\t};\n\t\t\n\t\tswitch (evt.getKeyCode()) {\n\t\t\tcase Event.KEY_HOME: {\n\t\t\t\t// go to the beginning of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\treturn moveCursor(line.startIndex);\n\t\t\t}\n\t\t\tcase Event.KEY_END: {\n\t\t\t\t// go to the end of the line\n\t\t\t\tvar line = this.lines[this.lineNumberForIndex(pos)] || this.lines.last(); //FIXME\n\t\t\t\tvar idx = line === this.lines.last() ? line.getStopIndex() + 1 : line.getStopIndex(); // FIXME!!!\n\t\t\t\treturn moveCursor(idx);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEUP: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(0);\n\t\t\t}\n\t\t\tcase Event.KEY_PAGEDOWN: {\n\t\t\t\t// go to start\n\t\t\t\treturn moveCursor(this.textString.length);\n\t\t\t}\n\t\t\tcase Event.KEY_LEFT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but but selecting off -> jump to the beginning of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[0]);\n\t\t\t\tvar newPos = evt.isMetaDown() && wordRange[0] != pos ? wordRange[0] : pos-1;\n\t\t\t\tnewPos = Math.max(newPos, 0);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t} \n\t\t\tcase Event.KEY_RIGHT: {\n\t\t\t\tif (selectionStopped) // if a selection exists but selecting off -> jump to the end of the selection\n\t\t\t\t\treturn moveCursor(this.selectionRange[1]+1);\n\t\t\t\tnewPos = evt.isMetaDown() && wordRange[1]+1 != pos ? wordRange[1]+1 : pos + 1;\n\t\t\t\tnewPos = Math.min(this.textString.length, newPos);\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_UP: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(Math.min(pos, this.textString.length-1));\n\t\t\t\tif (lineNo <= 0) { // cannot move up\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tvar lineIndex = pos - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo - 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_DOWN: {\n\t\t\t\tvar lineNo = this.lineNumberForIndex(pos);\n\t\t\t\tif (lineNo >= this.lines.length - 1) { // cannot move down\n\t\t\t\t\tevt.stop();\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tvar line = this.lines[lineNo];\n\t\t\t\tif (!line) {\n\t\t\t\t\t\tconsole.log('TextMorph finds no line ???');\n\t\t\t\t\t\tevt.stop();\n\t\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t\tvar lineIndex = pos\t - line.startIndex;\n\t\t\t\tvar newLine = this.lines[lineNo + 1];\n\t\t\t\tvar newPos = Math.min(newLine.startIndex + lineIndex, newLine.getStopIndex());\n\t\t\t\treturn moveCursor(newPos);\n\t\t\t}\n\t\t\tcase Event.KEY_TAB: {\n\t\t\t\tthis.replaceSelectionfromKeyboard(\"\\t\");\n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_BACKSPACE: {\n\t\t\t\t// Backspace deletes current selection or prev character\n\t\t\t\t\tif (this.hasNullSelection()) this.selectionRange[0] = Math.max(-1, this.selectionRange[0]-1);\n\t\t\t\t\tthis.replaceSelectionfromKeyboard(\"\");\n\t\t\t\tif (this.charsTyped.length > 0) this.charsTyped = this.charsTyped.substring(0, this.charsTyped.length-1); \n\t\t\t\t\tevt.stop(); // do not use for browser navigation\n\t\t\t\t\treturn true;\n\t\t\t}\n\t\t\tcase Event.KEY_ESC: {\n\t\t\t\tthis.relinquishKeyboardFocus(this.world().firstHand());\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t// have to process commands in keydown...\n\t\tif (evt.isCommandKey()) {\n\t\t\tif (this.processCommandKeys(evt)) { \n\t\t\t\tevt.stop();\n\t\t\t\treturn true;\n\t\t\t} \n\t\t}\n\t\treturn false;\n\t}","lineNumberHint":13,"useChangeClue":true,"__layered_suppressHandles__":true,"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":414},"changeClue":{"__isSmartRef__":true,"id":398},"isSelecting":false,"hasKeyboardFocus":false,"textSelection":{"__isSmartRef__":true,"id":393},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"92544:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"393":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":392},"_livelyDataWrapperId_":"97012:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":394},"shape":{"__isSmartRef__":true,"id":395},"priorExtent":{"__isSmartRef__":true,"id":396},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":397},"isCursor":false,"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97012:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"394":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"395":{"_livelyDataWrapperId_":"97011:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"97011:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"396":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"397":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"398":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":392},"pvtCachedTransform":{"__isSmartRef__":true,"id":399},"origin":{"__isSmartRef__":true,"id":400},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":401},"shape":{"__isSmartRef__":true,"id":402},"mouseHandler":null,"ignoreWhenCopying":true,"_pointer-events":"none","priorExtent":{"__isSmartRef__":true,"id":405},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"Morph","namespaceURI":null},{"key":"id","value":"92546:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"399":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"400":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"401":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"402":{"_fill":{"__isSmartRef__":true,"id":403},"_stroke":{"__isSmartRef__":true,"id":404},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"5","namespaceURI":null},{"key":"height","value":"5","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(204,0,0)","namespaceURI":null}]}},"403":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"404":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"405":{"x":5,"y":5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"406":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"407":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"408":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"409":{"_fill":{"__isSmartRef__":true,"id":410},"_stroke":{"__isSmartRef__":true,"id":411},"_x":0,"_y":0,"_width":792,"_height":1662.800000000003,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"792","namespaceURI":null},{"key":"height","value":"1662.800000000003","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"410":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"411":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"412":{"_fill":{"__isSmartRef__":true,"id":413},"_stroke":null,"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"413":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"414":{"x":777,"y":1611.5999755859375,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"415":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"416":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"417":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"418":{"_fill":{"__isSmartRef__":true,"id":419},"_stroke":null,"_x":0,"_y":0,"_width":792,"_height":313,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"792","namespaceURI":null},{"key":"height","value":"313","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"419":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"420":{"shape":{"__isSmartRef__":true,"id":421},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"92549:lively.scene.Clip","namespaceURI":null}]}},"421":{"_fill":{"__isSmartRef__":true,"id":419},"_stroke":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"792","namespaceURI":null},{"key":"height","value":"313","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"422":{"x":789,"y":311,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"423":{"submorphs":[{"__isSmartRef__":true,"id":424}],"owner":{"__isSmartRef__":true,"id":390},"_livelyDataWrapperId_":"95012:SliderMorph","origin":{"__isSmartRef__":true,"id":431},"shape":{"__isSmartRef__":true,"id":432},"priorExtent":{"__isSmartRef__":true,"id":433},"value":0,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":434},"sliderKnob":{"__isSmartRef__":true,"id":424},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":435},{"__isSmartRef__":true,"id":437}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"SliderMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"95012:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(791,0)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"424":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":423},"_livelyDataWrapperId_":"95013:Morph","origin":{"__isSmartRef__":true,"id":425},"shape":{"__isSmartRef__":true,"id":426},"priorExtent":{"__isSmartRef__":true,"id":427},"pvtCachedTransform":{"__isSmartRef__":true,"id":428},"mouseHandler":{"__isSmartRef__":true,"id":429},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"95013:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"425":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"426":{"_x":0,"_y":0,"_width":13,"_height":60.76321482056677,"_stroke":{"__isSmartRef__":true,"id":263},"_fill":{"__isSmartRef__":true,"id":264},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"60.76321482056677","namespaceURI":null},{"key":"stroke","value":"rgb(102,102,102)","namespaceURI":null},{"key":"fill","value":"url(#18:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"427":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"428":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"429":{"target":{"__isSmartRef__":true,"id":423},"eventSpec":{"__isSmartRef__":true,"id":430},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"430":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"431":{"x":791,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"432":{"_x":0,"_y":0,"_width":13,"_height":313,"_stroke":{"__isSmartRef__":true,"id":275},"_fill":{"__isSmartRef__":true,"id":276},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"313","namespaceURI":null},{"key":"stroke","value":"rgb(204,204,204)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"433":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"434":{"a":1,"b":0,"c":0,"d":1,"e":791,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"435":{"sourceObj":{"__isSmartRef__":true,"id":423},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":390},"targetMethodName":"setVerticalScrollPosition","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":436},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"436":{"source":{"__isSmartRef__":true,"id":423},"target":{"__isSmartRef__":true,"id":390}},"437":{"sourceObj":{"__isSmartRef__":true,"id":423},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":390},"targetMethodName":"getVerticalVisibleExtent","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":438},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"438":{"source":{"__isSmartRef__":true,"id":423},"target":{"__isSmartRef__":true,"id":390}},"439":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":22,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"440":{"x":0,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"441":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"442":{"_fill":null,"_stroke":{"__isSmartRef__":true,"id":443},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"804","namespaceURI":null},{"key":"height","value":"313","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null}]}},"443":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"444":{"x":804,"y":313,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"445":{"sourceObj":{"__isSmartRef__":true,"id":390},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":423},"targetMethodName":"setValue","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":446},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"446":{"source":{"__isSmartRef__":true,"id":390},"target":{"__isSmartRef__":true,"id":423}},"447":{"submorphs":[{"__isSmartRef__":true,"id":448},{"__isSmartRef__":true,"id":467},{"__isSmartRef__":true,"id":478},{"__isSmartRef__":true,"id":494},{"__isSmartRef__":true,"id":510}],"owner":{"__isSmartRef__":true,"id":389},"pvtCachedTransform":{"__isSmartRef__":true,"id":526},"origin":{"__isSmartRef__":true,"id":527},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":528},"shape":{"__isSmartRef__":true,"id":529},"mouseHandler":null,"__layered_openForDragAndDrop__":false,"_pointer-events":"none","priorExtent":{"__isSmartRef__":true,"id":530},"contentMorph":{"__isSmartRef__":true,"id":449},"windowMorph":{"__isSmartRef__":true,"id":389},"label":{"__isSmartRef__":true,"id":467},"closeButton":{"__isSmartRef__":true,"id":478},"menuButton":{"__isSmartRef__":true,"id":494},"collapseButton":{"__isSmartRef__":true,"id":510},"__LivelyClassName__":"TitleBarMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TitleBarMorph","namespaceURI":null},{"key":"id","value":"92556:TitleBarMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"448":{"submorphs":[{"__isSmartRef__":true,"id":449}],"owner":{"__isSmartRef__":true,"id":447},"pvtCachedTransform":{"__isSmartRef__":true,"id":460},"origin":{"__isSmartRef__":true,"id":461},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":462},"shape":{"__isSmartRef__":true,"id":463},"clip":{"__isSmartRef__":true,"id":464},"_clip-path":"url(#92559:lively.scene.Clip)","isClipMorph":true,"mouseHandler":null,"__layered_openForDragAndDrop__":false,"_pointer-events":"none","priorExtent":{"__isSmartRef__":true,"id":466},"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"ClipMorph","namespaceURI":null},{"key":"id","value":"92558:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#92559:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(-1,-1)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"449":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":448},"pvtCachedTransform":{"__isSmartRef__":true,"id":450},"origin":{"__isSmartRef__":true,"id":451},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":452},"shape":{"__isSmartRef__":true,"id":453},"styleClass":["titleBar"],"mouseHandler":null,"__layered_openForDragAndDrop__":false,"_pointer-events":"none","priorExtent":{"__isSmartRef__":true,"id":459},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"Morph","namespaceURI":null},{"key":"id","value":"92557:Morph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"titleBar","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"450":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"451":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"452":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"453":{"_fill":{"__isSmartRef__":true,"id":454},"_stroke":{"__isSmartRef__":true,"id":458},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"804","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#92560:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null}]}},"454":{"stops":[{"__isSmartRef__":true,"id":455},{"__isSmartRef__":true,"id":456},{"__isSmartRef__":true,"id":457}],"refcount":0,"__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"92560:lively.paint.LinearGradient","namespaceURI":null}]}},"455":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(169,193,208)","namespaceURI":null}]}},"456":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(83,130,161)","namespaceURI":null}]}},"457":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(212,224,232)","namespaceURI":null}]}},"458":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"459":{"x":804,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"460":{"a":1,"b":0,"c":0,"d":1,"e":-1,"f":-1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"461":{"x":-1,"y":-1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"462":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"463":{"_fill":null,"_stroke":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"806","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"464":{"shape":{"__isSmartRef__":true,"id":465},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"92559:lively.scene.Clip","namespaceURI":null}]}},"465":{"_fill":null,"_stroke":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"806","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"466":{"x":806,"y":23,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"467":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":447},"pvtCachedTransform":{"__isSmartRef__":true,"id":468},"origin":{"__isSmartRef__":true,"id":469},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":470},"shape":{"__isSmartRef__":true,"id":471},"textContent":{"__isSmartRef__":true,"id":474},"fontFamily":"Helvetica","fontSize":12,"textColor":{"__isSmartRef__":true,"id":475},"textString":"","shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":476},"wrap":"Shrink","mouseHandler":null,"__layered_openForDragAndDrop__":false,"_pointer-events":"none","priorExtent":{"__isSmartRef__":true,"id":477},"lineNumberHint":0,"styleClass":["titleBar_label_highlight"],"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"TextMorph","namespaceURI":null},{"key":"id","value":"92561:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(402,3.005)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_label_highlight","namespaceURI":null}]}},"468":{"a":1,"b":0,"c":0,"d":1,"e":402,"f":3.005,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"469":{"x":402,"y":3.005,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"470":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"471":{"_fill":{"__isSmartRef__":true,"id":472},"_stroke":{"__isSmartRef__":true,"id":473},"_x":0,"_y":0,"_width":0,"_height":14.399999999999999,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"0","namespaceURI":null},{"key":"height","value":"14.399999999999999","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"fill-opacity","value":"0.5","namespaceURI":null}]}},"472":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"473":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"474":{"_fill":{"__isSmartRef__":true,"id":475},"_stroke":null,"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"475":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"476":{"x":6,"y":2,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"477":{"x":-12,"y":10.399999618530273,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"478":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":447},"pvtCachedTransform":{"__isSmartRef__":true,"id":479},"origin":{"__isSmartRef__":true,"id":480},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":481},"shape":{"__isSmartRef__":true,"id":482},"formalModel":{"__isSmartRef__":true,"id":488},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":489},"attributeConnections":[{"__isSmartRef__":true,"id":490},{"__isSmartRef__":true,"id":492}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"styleClass":["titleBar_closeButton_highlight"],"__LivelyClassName__":"WindowControlMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"WindowControlMorph","namespaceURI":null},{"key":"id","value":"92563:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(793,11)","namespaceURI":null},{"key":"class","value":"titleBar_closeButton_highlight","namespaceURI":null}]}},"479":{"a":1,"b":0,"c":0,"d":1,"e":793,"f":11,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"480":{"x":793,"y":11,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"481":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"482":{"_fill":{"__isSmartRef__":true,"id":483},"_stroke":null,"__LivelyClassName__":"lively.scene.Ellipse","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"url(#26:lively.paint.RadialGradient)","namespaceURI":null}]}},"483":{"stops":[{"__isSmartRef__":true,"id":484},{"__isSmartRef__":true,"id":485},{"__isSmartRef__":true,"id":486}],"f":{"__isSmartRef__":true,"id":487},"refcount":2,"_livelyDataWrapperId_":"26:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__LivelyClassName__":"lively.paint.RadialGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"26:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"484":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(226,179,179)","namespaceURI":null}]}},"485":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(158,0,0)","namespaceURI":null}]}},"486":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(95,0,0)","namespaceURI":null}]}},"487":{"x":0.4,"y":0.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"488":{"delegate":{"__isSmartRef__":true,"id":389},"__SourceModuleName__":"Global.anonymous_module_5","definition":"{\"HelpText\":\"-CloseHelp\",\"Trigger\":\"=initiateShutdown\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"489":{"x":16,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"490":{"sourceObj":{"__isSmartRef__":true,"id":478},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":389},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":491},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"491":{"source":{"__isSmartRef__":true,"id":478},"target":{"__isSmartRef__":true,"id":389}},"492":{"sourceObj":{"__isSmartRef__":true,"id":478},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":389},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":493},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"493":{"source":{"__isSmartRef__":true,"id":478},"target":{"__isSmartRef__":true,"id":389}},"494":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":447},"pvtCachedTransform":{"__isSmartRef__":true,"id":495},"origin":{"__isSmartRef__":true,"id":496},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":497},"shape":{"__isSmartRef__":true,"id":498},"formalModel":{"__isSmartRef__":true,"id":504},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":505},"attributeConnections":[{"__isSmartRef__":true,"id":506},{"__isSmartRef__":true,"id":508}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"styleClass":["titleBar_menuButton_highlight"],"__LivelyClassName__":"WindowControlMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"WindowControlMorph","namespaceURI":null},{"key":"id","value":"92565:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(11,11)","namespaceURI":null},{"key":"class","value":"titleBar_menuButton_highlight","namespaceURI":null}]}},"495":{"a":1,"b":0,"c":0,"d":1,"e":11,"f":11,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"496":{"x":11,"y":11,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"497":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"498":{"_fill":{"__isSmartRef__":true,"id":499},"_stroke":null,"__LivelyClassName__":"lively.scene.Ellipse","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"url(#27:lively.paint.RadialGradient)","namespaceURI":null}]}},"499":{"stops":[{"__isSmartRef__":true,"id":500},{"__isSmartRef__":true,"id":501},{"__isSmartRef__":true,"id":502}],"f":{"__isSmartRef__":true,"id":503},"refcount":2,"_livelyDataWrapperId_":"27:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__LivelyClassName__":"lively.paint.RadialGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"27:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"500":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(179,219,179)","namespaceURI":null}]}},"501":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(0,133,0)","namespaceURI":null}]}},"502":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(0,79,0)","namespaceURI":null}]}},"503":{"x":0.4,"y":0.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"504":{"delegate":{"__isSmartRef__":true,"id":389},"__SourceModuleName__":"Global.anonymous_module_5","definition":"{\"HelpText\":\"-MenuHelp\",\"Trigger\":\"=showTargetMorphMenu\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"505":{"x":16,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"506":{"sourceObj":{"__isSmartRef__":true,"id":494},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":389},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":507},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"507":{"source":{"__isSmartRef__":true,"id":494},"target":{"__isSmartRef__":true,"id":389}},"508":{"sourceObj":{"__isSmartRef__":true,"id":494},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":389},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":509},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"509":{"source":{"__isSmartRef__":true,"id":494},"target":{"__isSmartRef__":true,"id":389}},"510":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":447},"pvtCachedTransform":{"__isSmartRef__":true,"id":511},"origin":{"__isSmartRef__":true,"id":512},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":513},"shape":{"__isSmartRef__":true,"id":514},"formalModel":{"__isSmartRef__":true,"id":520},"__layered_openForDragAndDrop__":false,"priorExtent":{"__isSmartRef__":true,"id":521},"attributeConnections":[{"__isSmartRef__":true,"id":522},{"__isSmartRef__":true,"id":524}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"styleClass":["titleBar_collapseButton_highlight"],"__LivelyClassName__":"WindowControlMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"type","value":"WindowControlMorph","namespaceURI":null},{"key":"id","value":"92567:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(774,11)","namespaceURI":null},{"key":"class","value":"titleBar_collapseButton_highlight","namespaceURI":null}]}},"511":{"a":1,"b":0,"c":0,"d":1,"e":774,"f":11,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"512":{"x":774,"y":11,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"513":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"514":{"_fill":{"__isSmartRef__":true,"id":515},"_stroke":null,"__LivelyClassName__":"lively.scene.Ellipse","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"url(#28:lively.paint.RadialGradient)","namespaceURI":null}]}},"515":{"stops":[{"__isSmartRef__":true,"id":516},{"__isSmartRef__":true,"id":517},{"__isSmartRef__":true,"id":518}],"f":{"__isSmartRef__":true,"id":519},"refcount":2,"_livelyDataWrapperId_":"28:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__LivelyClassName__":"lively.paint.RadialGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"28:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"516":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(255,243,209)","namespaceURI":null}]}},"517":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(255,215,102)","namespaceURI":null}]}},"518":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(153,129,61)","namespaceURI":null}]}},"519":{"x":0.4,"y":0.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"520":{"delegate":{"__isSmartRef__":true,"id":389},"__SourceModuleName__":"Global.anonymous_module_5","definition":"{\"HelpText\":\"-CollapseHelp\",\"Trigger\":\"=toggleCollapse\"}","isInstanceOfAnonymousClass":true,"isRelay":true},"521":{"x":16,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"522":{"sourceObj":{"__isSmartRef__":true,"id":510},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":389},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":523},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"523":{"source":{"__isSmartRef__":true,"id":510},"target":{"__isSmartRef__":true,"id":389}},"524":{"sourceObj":{"__isSmartRef__":true,"id":510},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":389},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":525},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"525":{"source":{"__isSmartRef__":true,"id":510},"target":{"__isSmartRef__":true,"id":389}},"526":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"527":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"528":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"529":{"_fill":null,"_stroke":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"804","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"530":{"x":804,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"531":{"a":1,"b":0,"c":0,"d":1,"e":52,"f":165,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"532":{"x":52,"y":165,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"533":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"534":{"_fill":null,"_stroke":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"804","namespaceURI":null},{"key":"height","value":"335","namespaceURI":null},{"key":"stroke-width","value":"0.01","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"535":{"x":0,"y":23.000000000000004,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"536":{"x":804,"y":335,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"537":{"submorphs":[{"__isSmartRef__":true,"id":538},{"__isSmartRef__":true,"id":559}],"owner":{"__isSmartRef__":true,"id":0},"_livelyDataWrapperId_":"97526:StatusMessageContainer","origin":{"__isSmartRef__":true,"id":613},"shape":{"__isSmartRef__":true,"id":614},"priorExtent":{"__isSmartRef__":true,"id":615},"dismissAllButton":{"__isSmartRef__":true,"id":538},"ignoreWhenCopying":true,"name":"statusMorphContainer","pvtCachedTransform":{"__isSmartRef__":true,"id":616},"__LivelyClassName__":"StatusMessageContainer","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"StatusMessageContainer","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97526:StatusMessageContainer","namespaceURI":null},{"key":"transform","value":"translate(1265,0.5)","namespaceURI":null}]}},"538":{"baseFill":{"__isSmartRef__":true,"id":539},"submorphs":[{"__isSmartRef__":true,"id":540}],"owner":{"__isSmartRef__":true,"id":537},"_livelyDataWrapperId_":"97527:ButtonMorph","origin":{"__isSmartRef__":true,"id":552},"shape":{"__isSmartRef__":true,"id":553},"priorExtent":{"__isSmartRef__":true,"id":555},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":539},"lighterFill":{"__isSmartRef__":true,"id":556},"label":{"__isSmartRef__":true,"id":540},"pvtCachedTransform":{"__isSmartRef__":true,"id":557},"attributeConnections":[{"__isSmartRef__":true,"id":558}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97527:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(0,0.5999999999999996)","namespaceURI":null}]}},"539":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"540":{"textString":"dismiss all","savedTextString":"dismiss all","submorphs":[{"__isSmartRef__":true,"id":541}],"owner":{"__isSmartRef__":true,"id":538},"_livelyDataWrapperId_":"97530:TextMorph","origin":{"__isSmartRef__":true,"id":546},"shape":{"__isSmartRef__":true,"id":547},"textContent":{"__isSmartRef__":true,"id":548},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":549},"textSelection":{"__isSmartRef__":true,"id":541},"priorExtent":{"__isSmartRef__":true,"id":550},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":551},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97530:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(173,2.4000000000000004)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"541":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":540},"_livelyDataWrapperId_":"97532:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":542},"shape":{"__isSmartRef__":true,"id":543},"priorExtent":{"__isSmartRef__":true,"id":544},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":545},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97532:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"542":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"543":{"_livelyDataWrapperId_":"97531:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"97531:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"544":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"545":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"546":{"x":173,"y":2.4000000000000004,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"547":{"_x":0,"_y":0,"_width":57,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":25},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"57","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"548":{"_fill":{"__isSmartRef__":true,"id":25},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"549":{"a":1,"b":0,"c":0,"d":1,"e":173,"f":2.4000000000000004,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"550":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"551":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"552":{"x":0,"y":0.5999999999999996,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"553":{"_x":0,"_y":0,"_width":400,"_height":15,"_stroke":{"__isSmartRef__":true,"id":554},"_fill":{"__isSmartRef__":true,"id":539},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"400","namespaceURI":null},{"key":"height","value":"15","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"rgb(230,230,230)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"554":{"r":0.5019607843137255,"g":0.4470588235294118,"b":0.4666666666666667,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"555":{"x":400,"y":15,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"556":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"557":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0.5999999999999996,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"558":{"sourceObj":{"__isSmartRef__":true,"id":538},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":537},"targetMethodName":"dismissAll","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"559":{"textString":"Cannot serialize model stuff of type lively.data.DOMNodeRecord","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":560},{"__isSmartRef__":true,"id":565},{"__isSmartRef__":true,"id":584}],"owner":{"__isSmartRef__":true,"id":537},"_livelyDataWrapperId_":"97538:TextMorph","origin":{"__isSmartRef__":true,"id":606},"shape":{"__isSmartRef__":true,"id":607},"textContent":{"__isSmartRef__":true,"id":608},"lineNumberHint":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":610},"textSelection":{"__isSmartRef__":true,"id":560},"priorExtent":{"__isSmartRef__":true,"id":611},"useChangeClue":false,"fontSize":16,"padding":{"__isSmartRef__":true,"id":612},"textColor":{"__isSmartRef__":true,"id":609},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97538:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,19.2)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"560":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":559},"_livelyDataWrapperId_":"97540:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":561},"shape":{"__isSmartRef__":true,"id":562},"priorExtent":{"__isSmartRef__":true,"id":563},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":564},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97540:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"561":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"562":{"_livelyDataWrapperId_":"97539:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"97539:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"563":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"564":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"565":{"baseFill":{"__isSmartRef__":true,"id":472},"submorphs":[{"__isSmartRef__":true,"id":566}],"owner":{"__isSmartRef__":true,"id":559},"_livelyDataWrapperId_":"97541:ButtonMorph","origin":{"__isSmartRef__":true,"id":578},"shape":{"__isSmartRef__":true,"id":579},"priorExtent":{"__isSmartRef__":true,"id":580},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":472},"lighterFill":{"__isSmartRef__":true,"id":581},"label":{"__isSmartRef__":true,"id":566},"pvtCachedTransform":{"__isSmartRef__":true,"id":582},"attributeConnections":[{"__isSmartRef__":true,"id":583}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97541:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(374.5,5)","namespaceURI":null}]}},"566":{"textString":"X","savedTextString":"X","submorphs":[{"__isSmartRef__":true,"id":567}],"owner":{"__isSmartRef__":true,"id":565},"_livelyDataWrapperId_":"97544:TextMorph","origin":{"__isSmartRef__":true,"id":572},"shape":{"__isSmartRef__":true,"id":573},"textContent":{"__isSmartRef__":true,"id":574},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":575},"textSelection":{"__isSmartRef__":true,"id":567},"priorExtent":{"__isSmartRef__":true,"id":576},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":577},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97544:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(7.5,4.9)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"567":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":566},"_livelyDataWrapperId_":"97546:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":568},"shape":{"__isSmartRef__":true,"id":569},"priorExtent":{"__isSmartRef__":true,"id":570},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":571},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97546:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"568":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"569":{"_livelyDataWrapperId_":"97545:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"97545:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"570":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"571":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"572":{"x":7.5,"y":4.9,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"573":{"_x":0,"_y":0,"_width":8,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":25},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"8","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"574":{"_fill":{"__isSmartRef__":true,"id":25},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"575":{"a":1,"b":0,"c":0,"d":1,"e":7.5,"f":4.9,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"576":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"577":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"578":{"x":374.5,"y":5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"579":{"_x":0,"_y":0,"_width":20,"_height":20,"_stroke":{"__isSmartRef__":true,"id":554},"_fill":{"__isSmartRef__":true,"id":472},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"20","namespaceURI":null},{"key":"height","value":"20","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"580":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"581":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"582":{"a":1,"b":0,"c":0,"d":1,"e":374.5,"f":5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"583":{"sourceObj":{"__isSmartRef__":true,"id":565},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":559},"targetMethodName":"remove","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"584":{"baseFill":{"__isSmartRef__":true,"id":472},"submorphs":[{"__isSmartRef__":true,"id":585}],"owner":{"__isSmartRef__":true,"id":559},"_livelyDataWrapperId_":"97547:ButtonMorph","origin":{"__isSmartRef__":true,"id":597},"shape":{"__isSmartRef__":true,"id":598},"priorExtent":{"__isSmartRef__":true,"id":599},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":472},"lighterFill":{"__isSmartRef__":true,"id":600},"label":{"__isSmartRef__":true,"id":585},"pvtCachedTransform":{"__isSmartRef__":true,"id":601},"attributeConnections":[{"__isSmartRef__":true,"id":602},{"__isSmartRef__":true,"id":604}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97547:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(328.5,5)","namespaceURI":null}]}},"585":{"textString":"more","savedTextString":"more","submorphs":[{"__isSmartRef__":true,"id":586}],"owner":{"__isSmartRef__":true,"id":584},"_livelyDataWrapperId_":"97550:TextMorph","origin":{"__isSmartRef__":true,"id":591},"shape":{"__isSmartRef__":true,"id":592},"textContent":{"__isSmartRef__":true,"id":593},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":594},"textSelection":{"__isSmartRef__":true,"id":586},"priorExtent":{"__isSmartRef__":true,"id":595},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":596},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97550:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(7.5,4.9)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"586":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":585},"_livelyDataWrapperId_":"97552:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":587},"shape":{"__isSmartRef__":true,"id":588},"priorExtent":{"__isSmartRef__":true,"id":589},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":590},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97552:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"587":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"588":{"_livelyDataWrapperId_":"97551:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"97551:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"589":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"590":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"591":{"x":7.5,"y":4.9,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"592":{"_x":0,"_y":0,"_width":28,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":25},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"28","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"593":{"_fill":{"__isSmartRef__":true,"id":25},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"594":{"a":1,"b":0,"c":0,"d":1,"e":7.5,"f":4.9,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"595":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"596":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"597":{"x":328.5,"y":5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"598":{"_x":0,"_y":0,"_width":40,"_height":20,"_stroke":{"__isSmartRef__":true,"id":554},"_fill":{"__isSmartRef__":true,"id":472},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"40","namespaceURI":null},{"key":"height","value":"20","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"599":{"x":40,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"600":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"601":{"a":1,"b":0,"c":0,"d":1,"e":328.5,"f":5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"602":{"sourceObj":{"__isSmartRef__":true,"id":584},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":537},"targetMethodName":"relinquishKeyboardFocus","converter":null,"converterString":"function (){ return WorldMorph.current().firstHand()}","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":603},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"603":{"source":{"__isSmartRef__":true,"id":584},"target":{"__isSmartRef__":true,"id":537}},"604":{"sourceObj":{"__isSmartRef__":true,"id":584},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":605},"targetMethodName":"callback","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"605":{},"606":{"x":3,"y":19.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"607":{"_x":0,"_y":0,"_width":400,"_height":47.46666666666667,"_stroke":{"__isSmartRef__":true,"id":25},"_fill":{"__isSmartRef__":true,"id":275},"_rx":10,"_ry":10,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"400","namespaceURI":null},{"key":"height","value":"47.46666666666667","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(204,204,204)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill-opacity","value":"0.7","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"rx","value":"10","namespaceURI":null},{"key":"ry","value":"10","namespaceURI":null}]}},"608":{"_fill":{"__isSmartRef__":true,"id":609},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(204,0,0)","namespaceURI":null},{"key":"font-size","value":"16","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"609":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"610":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":19.2,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"611":{"x":388,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"612":{"x":10,"y":5.333333333333333,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"613":{"x":1265,"y":0.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"614":{"_x":0,"_y":0,"_width":400,"_height":30,"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"400","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"615":{"x":400,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"616":{"a":1,"b":0,"c":0,"d":1,"e":1265,"f":0.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"617":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"618":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"619":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"620":{"_fill":{"__isSmartRef__":true,"id":621},"_stroke":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"2000","namespaceURI":null},{"key":"height","value":"1200","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"fill-opacity","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"621":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"622":{"x":2000,"y":1200,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"623":{"styleName":"hpi","raisedBorder":{"__isSmartRef__":true,"id":624},"button":{"__isSmartRef__":true,"id":629},"widgetPanel":{"__isSmartRef__":true,"id":635},"focusHalo":{"__isSmartRef__":true,"id":638},"panel":{"__isSmartRef__":true,"id":640},"link":{"__isSmartRef__":true,"id":643},"helpText":{"__isSmartRef__":true,"id":645},"menu_items":{"__isSmartRef__":true,"id":647},"menu_list":{"__isSmartRef__":true,"id":649},"slider":{"__isSmartRef__":true,"id":651},"slider_background":{"__isSmartRef__":true,"id":652},"slider_horizontal":{"__isSmartRef__":true,"id":653},"slider_background_horizontal":{"__isSmartRef__":true,"id":660},"titleBar":{"__isSmartRef__":true,"id":665},"titleBar_label":{"__isSmartRef__":true,"id":670},"titleBar_label_highlight":{"__isSmartRef__":true,"id":671},"titleBar_button_label":{"__isSmartRef__":true,"id":672},"titleBar_closeButton":{"__isSmartRef__":true,"id":674},"titleBar_menuButton":{"__isSmartRef__":true,"id":675},"titleBar_collapseButton":{"__isSmartRef__":true,"id":676},"titleBar_closeButton_highlight":{"__isSmartRef__":true,"id":677},"titleBar_menuButton_highlight":{"__isSmartRef__":true,"id":678},"titleBar_collapseButton_highlight":{"__isSmartRef__":true,"id":679},"clock":{"__isSmartRef__":true,"id":680},"fabrik":{"__isSmartRef__":true,"id":684},"world":{"__isSmartRef__":true,"id":686}},"624":{"borderColor":{"__isSmartRef__":true,"id":625}},"625":{"vector":{"__isSmartRef__":true,"id":626},"stops":[{"__isSmartRef__":true,"id":627},{"__isSmartRef__":true,"id":628}],"refcount":0,"_livelyDataWrapperId_":"16:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"1","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"16:lively.paint.LinearGradient","namespaceURI":null}]}},"626":{"x":0,"y":0,"width":1,"height":1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"627":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"628":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(12,12,12)","namespaceURI":null}]}},"629":{"borderColor":{"__isSmartRef__":true,"id":554},"borderWidth":1,"borderRadius":5,"fill":{"__isSmartRef__":true,"id":630}},"630":{"vector":{"__isSmartRef__":true,"id":631},"stops":[{"__isSmartRef__":true,"id":632},{"__isSmartRef__":true,"id":633},{"__isSmartRef__":true,"id":634}],"refcount":0,"_livelyDataWrapperId_":"17:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"17:lively.paint.LinearGradient","namespaceURI":null}]}},"631":{"x":0,"y":1,"width":0,"height":-1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"632":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"633":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"634":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"635":{"borderColor":{"__isSmartRef__":true,"id":636},"borderWidth":4,"borderRadius":16,"fill":{"__isSmartRef__":true,"id":637},"opacity":0.4},"636":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"637":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"638":{"fill":null,"borderColor":{"__isSmartRef__":true,"id":639},"strokeOpacity":0.5},"639":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"640":{"fill":{"__isSmartRef__":true,"id":641},"borderWidth":2,"borderColor":{"__isSmartRef__":true,"id":642}},"641":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"642":{"r":0.2,"g":0.2,"b":0.2,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"643":{"borderColor":{"__isSmartRef__":true,"id":644},"borderWidth":1,"fill":{"__isSmartRef__":true,"id":275}},"644":{"r":0,"g":0.8,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"645":{"borderRadius":15,"fill":{"__isSmartRef__":true,"id":646},"fillOpacity":0.8},"646":{"r":1,"g":0.9725490196078431,"b":0.8936274509803921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"647":{"fontSize":14,"textColor":{"__isSmartRef__":true,"id":648}},"648":{"r":0.129,"g":0.129,"b":0.129,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"649":{"fill":{"__isSmartRef__":true,"id":650}},"650":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"651":{"borderColor":{"__isSmartRef__":true,"id":263},"borderOpacity":1,"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":264}},"652":{"borderColor":{"__isSmartRef__":true,"id":275},"borderWidth":1,"strokeOpacity":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":276}},"653":{"borderColor":{"__isSmartRef__":true,"id":654},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":655}},"654":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"655":{"vector":{"__isSmartRef__":true,"id":656},"stops":[{"__isSmartRef__":true,"id":657},{"__isSmartRef__":true,"id":658},{"__isSmartRef__":true,"id":659}],"refcount":4,"_livelyDataWrapperId_":"20:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"20:lively.paint.LinearGradient","namespaceURI":null}]}},"656":{"x":0,"y":0,"width":0,"height":1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"657":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(196,211,221)","namespaceURI":null}]}},"658":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(137,167,187)","namespaceURI":null}]}},"659":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(96,130,153)","namespaceURI":null}]}},"660":{"borderColor":{"__isSmartRef__":true,"id":654},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":661}},"661":{"vector":{"__isSmartRef__":true,"id":656},"stops":[{"__isSmartRef__":true,"id":662},{"__isSmartRef__":true,"id":663},{"__isSmartRef__":true,"id":664}],"refcount":4,"_livelyDataWrapperId_":"21:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"21:lively.paint.LinearGradient","namespaceURI":null}]}},"662":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"663":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.4","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"664":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(245,245,245)","namespaceURI":null}]}},"665":{"borderRadius":8,"borderWidth":2,"bordercolor":{"__isSmartRef__":true,"id":654},"fill":{"__isSmartRef__":true,"id":666}},"666":{"vector":{"__isSmartRef__":true,"id":631},"stops":[{"__isSmartRef__":true,"id":667},{"__isSmartRef__":true,"id":668},{"__isSmartRef__":true,"id":669}],"refcount":1,"_livelyDataWrapperId_":"22:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"22:lively.paint.LinearGradient","namespaceURI":null}]}},"667":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(184,184,184)","namespaceURI":null}]}},"668":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.6","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"669":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(184,184,184)","namespaceURI":null}]}},"670":{"fill":null},"671":{"fill":{"__isSmartRef__":true,"id":472},"fillOpacity":0.5},"672":{"textColor":{"__isSmartRef__":true,"id":673},"fontStyle":"bold"},"673":{"r":0.5,"g":0.5,"b":0.5,"a":0.5,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"674":{"fill":{"__isSmartRef__":true,"id":335}},"675":{"fill":{"__isSmartRef__":true,"id":351}},"676":{"fill":{"__isSmartRef__":true,"id":367}},"677":{"fill":{"__isSmartRef__":true,"id":483}},"678":{"fill":{"__isSmartRef__":true,"id":499}},"679":{"fill":{"__isSmartRef__":true,"id":515}},"680":{"borderColor":{"__isSmartRef__":true,"id":25},"borderWidth":4,"fill":{"__isSmartRef__":true,"id":681}},"681":{"stops":[{"__isSmartRef__":true,"id":682},{"__isSmartRef__":true,"id":683}],"refcount":0,"_livelyDataWrapperId_":"29:lively.paint.RadialGradient","__LivelyClassName__":"lively.paint.RadialGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"29:lively.paint.RadialGradient","namespaceURI":null}]}},"682":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(243,243,243)","namespaceURI":null}]}},"683":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"684":{"borderColor":{"__isSmartRef__":true,"id":685},"borderWidth":1,"borderRadius":2,"fill":{"__isSmartRef__":true,"id":275},"opacity":1},"685":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"686":{"fill":{"__isSmartRef__":true,"id":472}},"isSimplifiedRegistry":true}}]]>