0)\n this.fallingLetters.clone().forEach(function (ea) { this.letterFallToPile(ea) }, this); // unused letter falls to pile\n\tif (this.activeLetters.length == 0) return;\n\tvar letter = this.activeLetters[0]; // Will be on the belt\n\tletter.moveBy(pt(this.xStep, 0));\n\t\n\t// Drop letter from belt to rack, and then drop anew one onto belt\n\tif (letter.bounds().topRight().x < this.rack.bounds().topRight().x) this.letterDropOntoRack(letter);\n\n\t// Propagate leftward motion along rack when letters touch\n\tthis.lettersSlideOnRack();\n\n\t// If leftmost letter is off rack then drop it\n\tif (this.activeLetters.last().bounds().center().x < this.rack.bounds().topLeft().x) this.letterFallOffEnd();\n}","funcProperties":{"__isSmartRef__":true,"id":1649},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1648":{"this":{"__isSmartRef__":true,"id":466}},"1649":{},"1650":{"varMapping":{"__isSmartRef__":true,"id":1651},"source":"function onKeyDown(evt) {\n\tif (this.paused) return;\n\tevt.stop();\n switch (evt.getKeyCode()) {\n\t\tcase 8: this.doDelete(true); return;\n\t\tcase 27: this.doClear(true); return;\n\t\tcase 13: this.doEnter(true); return;\n\t}\n\t// Normal letter keys...\n\tvar char = evt.getKeyChar();\n\tif (char == '!') return;\n\tvar letter = this.findCharOnRack(char.toUpperCase());\n\tif (letter) this.addToOutbox(letter);\n}","funcProperties":{"__isSmartRef__":true,"id":1656},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1651":{"this":{"__isSmartRef__":true,"id":466},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1652}},"1652":{"$super":{"__isSmartRef__":true,"id":1653}},"1653":{"varMapping":{"__isSmartRef__":true,"id":1654},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1655},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1654":{"obj":{"__isSmartRef__":true,"id":466},"name":"onKeyDown"},"1655":{},"1656":{},"1657":{"varMapping":{"__isSmartRef__":true,"id":1658},"source":"function fillLetter(letterMorph, color) {\n\tletterMorph.setBorderColor(color);\n\ttry { // some problem in textColor code\n letterMorph.applyStyle({textColor: color});\n } catch(err) {};\n\ttry { // some problem in textColor code\n\t letterMorph.valueBox.applyStyle({textColor: color});\n } catch(err) {};\n}","funcProperties":{"__isSmartRef__":true,"id":1659},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1658":{"this":{"__isSmartRef__":true,"id":466}},"1659":{},"1660":{"varMapping":{"__isSmartRef__":true,"id":1661},"source":"function removeFromOutbox(letter) {\n\t\tletter.original.copyInOutbox = null; // restore original for, eg, del\n\t\tthis.fillLetter(letter.original, Color.black); \n\t\tletter.remove();\n}","funcProperties":{"__isSmartRef__":true,"id":1662},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1661":{"this":{"__isSmartRef__":true,"id":466}},"1662":{},"1663":{"varMapping":{"__isSmartRef__":true,"id":1664},"source":"function updateOutbox() {\n\t// Lay out outbox letters beginning at index = start\n\tthis.letterScore = 0;\n\tvar nLetters = this.outboxLetters.length;\n\tfor (var i=0; i 0) this.fillLetter(this.multBoxes[nLetters-1], Color.blue);\n\tthis.letterScoreBox.setTextString(this.letterScore.toString());\n\tthis.wordScore = this.letterScore*this.multipliers[nLetters];\n\tthis.wordScoreBox.setTextString(this.wordScore.toString());\n}","funcProperties":{"__isSmartRef__":true,"id":1665},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1664":{"this":{"__isSmartRef__":true,"id":466}},"1665":{},"1666":{"varMapping":{"__isSmartRef__":true,"id":1667},"source":"function shuffle(inp) {\n\t// Return a shuffled copy of the input array\n\tvar shuffled = inp.slice(0); // shuffleable copy\n\tfor (var i=0; i 0 && consonants.length > 0) { \n\t\t// Assemble letters according to their overall ratio\n\t\tif ( (vowels.length / (vowels.length + consonants.length)) > ratio) mixed.push(vowels.pop());\n\t\t\telse mixed.push(consonants.pop());\n\t}\n\t// pick up any leftovers\n\treturn mixed.concat(consonants, vowels);\n}","funcProperties":{"__isSmartRef__":true,"id":1671},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1670":{"this":{"__isSmartRef__":true,"id":466}},"1671":{},"1672":{"varMapping":{"__isSmartRef__":true,"id":1673},"source":"function letterValue(char) {\n\tvar letterValues = { A: 1, B: 3, C: 3, D: 2, E: 1, F: 4, G: 2, H: 4, I: 1, J: 8, K: 5, L: 1, M: 3, N: 1, O: 1, P: 3, Q: 10, R: 1, S: 1, T: 1, U: 1, V: 4, W: 4, X: 8, Y: 4, Z: 10}; \n\treturn letterValues[char] || 1;\n}","funcProperties":{"__isSmartRef__":true,"id":1674},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1673":{"this":{"__isSmartRef__":true,"id":466}},"1674":{},"1675":{"varMapping":{"__isSmartRef__":true,"id":1676},"source":"function doPause(val) {\n\tthis.paused = val;\n\tthis.pauseButton.setLabel( this.paused ? \"resume\" : \"pause\" );\n\n\t// If pausing, blank out all moving letters; if un-pausing, then restore them\n\tvar backGroundFill = Color.veryLightGray; // reading fill from text does not work\n\tvar ifInBin = (this.letterInBin ? [this.letterInBin] : []);\n\t\tifInBin.concat(this.outboxLetters, this.fallingLetters, this.activeLetters).each( \n\t\t\tfunction (letter) {\n\t\t\t\tif (this.paused) letter.colorBeforePause = letter.getBorderColor(); // save color when pause\n\t\t\t\tthis.fillLetter(letter, ( this.paused ? backGroundFill : letter.colorBeforePause ) ); // blank or restore\n\t\t\t}.bind(this)); \n this.focus();\n\n}","funcProperties":{"__isSmartRef__":true,"id":1677},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1676":{"this":{"__isSmartRef__":true,"id":466}},"1677":{},"1678":{"varMapping":{"__isSmartRef__":true,"id":1679},"source":"function doRestart(val) {\n\tif (this.gameOver) {\n\t\tthis.setup();\n\t\t} else {\n\t\tthis.doPause(true);\n\t\tthis.world().confirm(\"OK to end this game and restart?\",\n\t\t\t\tfunction(ok) { if (ok) this.setup(); else this.doPause(false); }.bind(this) );\n\t}\n}","funcProperties":{"__isSmartRef__":true,"id":1680},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1679":{"this":{"__isSmartRef__":true,"id":466}},"1680":{},"1681":{"varMapping":{"__isSmartRef__":true,"id":1682},"source":"function doDelete(val) {\n\tif (!val) return;\n\t// Delete key or button -- delete last letter from outbox and restore original\n\tif (this.outboxLetters.length == 0) return;\n\tthis.removeFromOutbox(this.outboxLetters.pop());\n\tthis.updateOutbox();\n}","funcProperties":{"__isSmartRef__":true,"id":1683},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1682":{"this":{"__isSmartRef__":true,"id":466}},"1683":{},"1684":{"varMapping":{"__isSmartRef__":true,"id":1685},"source":"function doClear(val) {\n\tif (!val) return;\n\t// Tab key or clear button -- means to delete all letters in outbox\n\twhile (this.outboxLetters.length > 0) \n\t\tthis.removeFromOutbox(this.outboxLetters.pop());\n\tthis.updateOutbox();\n}","funcProperties":{"__isSmartRef__":true,"id":1686},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1685":{"this":{"__isSmartRef__":true,"id":466}},"1686":{},"1687":{"varMapping":{"__isSmartRef__":true,"id":1688},"source":"function doEnter(val) {\n\t// Enter key or button -- means to submit this word from outbox\n\t// First gather the word\n\tif (!val) return;\n\tvar word = \"\";\n\tfor (var i=0; i this.bestWordScore) {\n\t\tthis.bestWordScore = this.wordScore;\n\t\tthis.bestWordBox.setTextString(this.bestWordScore.toString());\n\t\tthis.bestWord = word;\n\t\tthis.bestWordLetters.setTextString(this.bestWord);\n\t}\n\tthis.outboxLetters = [];\n\tthis.updateOutbox();\n}","funcProperties":{"__isSmartRef__":true,"id":1689},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1688":{"this":{"__isSmartRef__":true,"id":466}},"1689":{},"1690":{"varMapping":{"__isSmartRef__":true,"id":1691},"source":"function doSlowGame(val) {\n\tif (!val) return;\n\t// Toggle belt size between 2 and 3\n\tif (this.gameOver) {\n\t\tthis.beltSize = (this.beltSize == 2) ? 3 : 2;\n\t\tthis.setup();\n\t\treturn;\n\t}\n\tthis.doPause(true);\n\tthis.world().confirm(\"OK to end this game and restart?\",\n\t\t\t\tfunction(ok) {\n\t\t\t\t\tif (ok) {\n\t\t\t\t\t\tthis.beltSize = (this.beltSize == 2) ? 3 : 2;\n\t\t\t\t\t\tthis.setup();\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.doPause(false);\n\t\t\t\t\t} }.bind(this) );\n}","funcProperties":{"__isSmartRef__":true,"id":1692},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1691":{"this":{"__isSmartRef__":true,"id":466}},"1692":{},"1693":{"varMapping":{"__isSmartRef__":true,"id":1694},"source":"function findCharOnRack(char) {\n\tfor (var i=0; i0) ? this.addMorphBack(this.letterSource.shift()) : null;\n\t\tthis.nLeftBox.setTextString(this.letterSource.length.toString());\n this.nLeftBox.applyStyle({align: 'center'});\n\t}\n}","funcProperties":{"__isSmartRef__":true,"id":1710},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1709":{"this":{"__isSmartRef__":true,"id":466}},"1710":{},"1711":{"varMapping":{"__isSmartRef__":true,"id":1712},"source":"function letterFallToPile(letter) {\n // Animate a rotating fall;\n letter.moveBy(letter.vel);\n letter.vel = letter.vel.addXY(0, 1); // accelerated drop\n letter.rotateBy(letter.rot);\n \n letter.owner.addMorph(letter);\n\n // Below a certain y, stop its motion, but leave it in the world\n // We also need to keep score of the dropped letters\n // -- let's make them land on top of the negative score box\n if (letter.bounds().bottomRight().y > 300) {\n this.fallingLetters.shift();\n }\n}","funcProperties":{"__isSmartRef__":true,"id":1713},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1712":{"this":{"__isSmartRef__":true,"id":466}},"1713":{},"1714":{"varMapping":{"__isSmartRef__":true,"id":1715},"source":"function setupLetterPrototype(borderWidth) {\n\tthis.letterW = 45;\n\tthis.letterH = 50;\n // Letter prototype...\n\tvar letter = new TextMorph(new Rectangle(0, 0, this.letterW, this.letterH), 'W');\n\tletter.takesKeyboardFocus = Functions.False;\n\tletter.setFontSize(24);\n\tletter.setBorderWidth(borderWidth);\n\tletter.applyStyle({align: 'center'});\n\n\tletter.valueBox = new TextMorph(new Rectangle(10, 10, 30, 10), '10');\n\tletter.valueBox.setFontSize(8);\n\tletter.valueBox.applyStyle({align: 'right'})\n\tletter.valueBox.setFill(null);\n\tletter.valueBox.setBorderWidth(0);\n\tletter.valueBox.fitWidth();\n\tletter.addMorph(letter.valueBox);\n\tletter.valueBox.align(letter.valueBox.bounds().bottomRight(), letter.bounds().bottomRight().addXY(-6, -9));\n\tletter.valueBox.ignoreEvents();\n\treturn letter;\n}","funcProperties":{"__isSmartRef__":true,"id":1716},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1715":{"this":{"__isSmartRef__":true,"id":466}},"1716":{},"1717":{"varMapping":{"__isSmartRef__":true,"id":1718},"source":"function setupRackEtc() {\n\tvar rackR = new Rectangle(130,120, this.rackSize*this.letterW + 6, 5);\n\tthis.rack = this.addMorph(Morph.makeRectangle(rackR));\n\tthis.outbox = this.addMorph(Morph.makeRectangle(rackR.translatedBy(pt(0,70))));\n\tthis.beltR = rackR.topRight().addXY(7, -5).extent(pt(this.beltSize*this.letterW, 2));\n\tvar belt = this.addMorph(Morph.makeRectangle(this.beltR));\n\t\tthis.addMorph(belt.duplicate().translateBy(pt(0,16)));\n\tvar r = 9;\n\tthis.pulley = this.addMorph(Morph.makeCircle(this.beltR.topLeft().addXY(0,r), r, 2, Color.black, Color.green))\n\t\tvar c = this.pulley.innerBounds().center();\n\t\tfor (var a=0; a this.level.bestWordScore) {\n this.level.bestWord = this.bestWord;\n this.level.bestWordScore = this.bestWordScore;\n }\t\n if (this.totalScore > this.level.bestGameScore) this.level.bestGameScore = this.totalScore;\n this.postLevelStats();\n}","funcProperties":{"__isSmartRef__":true,"id":1750},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1749":{"this":{"__isSmartRef__":true,"id":466}},"1750":{},"1751":{"varMapping":{"__isSmartRef__":true,"id":1752},"source":"function onWindowCollapse() {\n this.doPause(true);\n}","funcProperties":{"__isSmartRef__":true,"id":1753},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1752":{"this":{"__isSmartRef__":true,"id":466}},"1753":{},"1754":{"varMapping":{"__isSmartRef__":true,"id":1755},"source":"function onWindowExpand() {\n this.doPause(false);\n}","funcProperties":{"__isSmartRef__":true,"id":1756},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1755":{"this":{"__isSmartRef__":true,"id":466}},"1756":{},"1757":{"varMapping":{"__isSmartRef__":true,"id":1758},"source":"function onWindowGetsFocus() {\n this.focus();\n}","funcProperties":{"__isSmartRef__":true,"id":1759},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1758":{"this":{"__isSmartRef__":true,"id":466}},"1759":{},"1760":{"varMapping":{"__isSmartRef__":true,"id":1761},"source":"function compactStringFromArray(wordArray) {\n// [3,1,4,1,5,9] == [3,1,4,1,5,9] // test array equality\n// This code produces a compact form of a sorted list of words.\n// [It may work if thelist is not sorted, but no guarantees]\n// For the 70k array with 516k of words in QBF it produces\n// a single string of length 225k with no array overhead.\n// For example:\n// this.compactStringFromArray(this.wordList).slice(0,70)\n// <0>a<1>bilities<6>y<2>le<2>out<3>ve<2>sence<3>olute<2>use<1>cademic<2>...\n// Note: the character codes for A-Z are used for counts so there must\n// be no capital letters and no words longer than 26 characters\nvar charOffset = \"A\".charCodeAt(0); // stop codes begin at 65\nvar s = \"\", prevWord;\nvar match = function(a, b) {\n // Return the number of leading characters in a and b that match\n for (var i=0; i\"; // Makes the readable form above\n s += w.slice(nSame);\n prevWord = w;\n });\nreturn s;\n}","funcProperties":{"__isSmartRef__":true,"id":1762},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1761":{"this":{"__isSmartRef__":true,"id":466}},"1762":{},"1763":{"varMapping":{"__isSmartRef__":true,"id":1764},"source":"function compactStringToArray(str) {\n // May be slow, but only used to convert the wordList\n var a = [];\n this.compactStringForEach(str, function(w) { a.push(w) });\n return a;\n}","funcProperties":{"__isSmartRef__":true,"id":1765},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1764":{"this":{"__isSmartRef__":true,"id":466}},"1765":{},"1766":{"varMapping":{"__isSmartRef__":true,"id":1767},"source":"function lookupWord(word) {\n if (!this.wordList) return true; // no list - anything goes\n if (this.wordList instanceof Array) return this.wordList.include(word);\n // if wordList is in compact form, then do a search...\n var found = false;\n this.compactStringForEach(this.wordList,\n function(w) { if (w == word) found = true; });\n return found;\n}","funcProperties":{"__isSmartRef__":true,"id":1768},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1767":{"this":{"__isSmartRef__":true,"id":466}},"1768":{},"1769":{"varMapping":{"__isSmartRef__":true,"id":1770},"source":"function compactStringForEach(str, func) {\n// Operates like forEach, calling the function with all the encoded words\n// Tests:\n// this.compactStringToArray(this.compactStringFromArray(this.wordList)).length == this.wordList.length\n// this.compactStringToArray(this.compactStringFromArray(this.wordList)).slice(0,9)\n// this.wordList.slice(0,9)\n// this.compactStringToArray(this.compactStringFromArray(this.wordList)).slice(71632)\n// this.wordList.slice(71632)\nvar w = \"\", c = 0;\nvar charOffset = \"A\".charCodeAt(0),\n maxStopCode = charOffset+25;\nfor (var i=0; i maxStopCode) w += str[i]; // just a character - append it to w\n else { // it is a stop code\n func(w); // call the func with the current word\n w = w.slice(0, c-charOffset); // stop code = no. characters to retain\n }\n}\nfunc(w); // call the func with the last word;\n}","funcProperties":{"__isSmartRef__":true,"id":1771},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1770":{"this":{"__isSmartRef__":true,"id":466}},"1771":{},"1772":{"varMapping":{"__isSmartRef__":true,"id":1773},"source":"function compactifyWordList(toCompact) {\n// Converts the this.wordList to/from compact format *in place*\n// this.compactifyWordList(true)\nif (this.wordList instanceof Array) {\n if (!toCompact) return; // already an array\n this.wordList = this.compactStringFromArray(this.wordList);\n }\n else {\n if (toCompact) return; // already compact\n this.wordList = this.compactStringToArray(this.wordList);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":1774},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1773":{"this":{"__isSmartRef__":true,"id":466}},"1774":{},"1775":{"varMapping":{"__isSmartRef__":true,"id":1776},"source":"function reset() {\n this.setup(true);\n}","funcProperties":{"__isSmartRef__":true,"id":1777},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1776":{"this":{"__isSmartRef__":true,"id":466}},"1777":{},"1778":{"varMapping":{"__isSmartRef__":true,"id":1779},"source":"function postLevelStats() {\n // Display stats for this level, after posting or changing levels\n this.levelWordLetters.setTextString(this.level.bestWord);\t\n this.levelWordBox.setTextString(this.level.bestWordScore.toString());\n this.bestGameBox.setTextString(this.level.bestGameScore.toString());\t\n}","funcProperties":{"__isSmartRef__":true,"id":1780},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1779":{"this":{"__isSmartRef__":true,"id":466}},"1780":{},"1781":{"varMapping":{"__isSmartRef__":true,"id":1782},"source":"function doChooseLevel(val) {\n\tvar items = Array.range(0,2).map(function(i) {\n var level = this.levels[i];\n return [level.caption,\n function(lv) {this.level = lv; this.setup();}.bind(this).curry(level)]\n }.bind(this));\n var pos = this.world().firstHand().getPosition();\n\tif (this.gameOver) {\n\t\tlively.morphic.Menu.openAt(pos, \"Choose your level\", items);\n return;\n\t}\n\tthis.doPause(true);\n\tthis.world().confirm(\"OK to end this game and restart?\",\n function(ok) {\n if (ok) {\n lively.morphic.Menu.openAt(pos, \"Choose your level\", items);\n } else {\n this.doPause(false);\n } }.bind(this) );\n}","funcProperties":{"__isSmartRef__":true,"id":1783},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1782":{"this":{"__isSmartRef__":true,"id":466}},"1783":{},"1784":{"varMapping":{"__isSmartRef__":true,"id":1785},"source":"function showMultiplier() {\n // Display the mean multipier\n var mult = this.totalScore/(this.pointsMissed + this.pointsUsed);\n var str = mult.toPrecision(2);\n if (mult < 1) str = mult.toPrecision(1);\n if (mult < 0.1) str = '-';\n this.multiplierBox.setTextString(str);\n}","funcProperties":{"__isSmartRef__":true,"id":1786},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1785":{"this":{"__isSmartRef__":true,"id":466}},"1786":{},"1787":{"submorphs":[{"__isSmartRef__":true,"id":1788},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1848},{"__isSmartRef__":true,"id":1881}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1915},"id":299,"renderContextTable":{"__isSmartRef__":true,"id":1920},"eventHandler":{"__isSmartRef__":true,"id":1921},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":1922},"_Position":{"__isSmartRef__":true,"id":1923},"windowMorph":{"__isSmartRef__":true,"id":465},"label":{"__isSmartRef__":true,"id":1788},"closeButton":{"__isSmartRef__":true,"id":1802},"menuButton":{"__isSmartRef__":true,"id":1848},"collapseButton":{"__isSmartRef__":true,"id":1881},"priorExtent":{"__isSmartRef__":true,"id":1924},"owner":{"__isSmartRef__":true,"id":465},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.TitleBar"},"1788":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1789},"id":300,"renderContextTable":{"__isSmartRef__":true,"id":1794},"textChunks":[{"__isSmartRef__":true,"id":1795}],"eventHandler":{"__isSmartRef__":true,"id":1797},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1798},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":1799},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":1787},"priorExtent":{"__isSmartRef__":true,"id":1800},"_MaxTextWidth":741.5002499997495,"_MaxTextHeight":null,"_Position":{"__isSmartRef__":true,"id":1801},"__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":741.5002499997495,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"1789":{"_Position":{"__isSmartRef__":true,"id":1790},"renderContextTable":{"__isSmartRef__":true,"id":1791},"_Extent":{"__isSmartRef__":true,"id":1792},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1793},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1790":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1791":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1792":{"x":741.5002499997495,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1793":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1794":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1795":{"style":{"__isSmartRef__":true,"id":1796},"chunkOwner":{"__isSmartRef__":true,"id":1788},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Quick Brown Fox","__LivelyClassName__":"lively.morphic.TextChunk"},"1796":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1797":{"morph":{"__isSmartRef__":true,"id":1788},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1798":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1799":{"resizeWidth":true},"1800":{"x":741.5002499997495,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1801":{"x":20,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1802":{"submorphs":[{"__isSmartRef__":true,"id":1803}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1815},"id":301,"renderContextTable":{"__isSmartRef__":true,"id":1830},"eventHandler":{"__isSmartRef__":true,"id":1831},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1832},"priorExtent":{"__isSmartRef__":true,"id":1833},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1820},"lighterFill":{"__isSmartRef__":true,"id":1834},"label":{"__isSmartRef__":true,"id":1803},"owner":{"__isSmartRef__":true,"id":1787},"layout":{"__isSmartRef__":true,"id":1843},"attributeConnections":[{"__isSmartRef__":true,"id":1844},{"__isSmartRef__":true,"id":1846}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1803":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1804},"id":302,"renderContextTable":{"__isSmartRef__":true,"id":1808},"textChunks":[{"__isSmartRef__":true,"id":1809}],"eventHandler":{"__isSmartRef__":true,"id":1811},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1812},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1813},"priorExtent":{"__isSmartRef__":true,"id":1814},"_MaxTextWidth":17,"_MaxTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1802},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":17,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"1804":{"_Position":{"__isSmartRef__":true,"id":1805},"renderContextTable":{"__isSmartRef__":true,"id":1806},"_Extent":{"__isSmartRef__":true,"id":1807},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1793},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1805":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1806":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1807":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1808":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1809":{"style":{"__isSmartRef__":true,"id":1810},"chunkOwner":{"__isSmartRef__":true,"id":1803},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"1810":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1811":{"morph":{"__isSmartRef__":true,"id":1803},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1812":{"x":0,"y":3,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1813":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1814":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1815":{"_Position":{"__isSmartRef__":true,"id":1816},"renderContextTable":{"__isSmartRef__":true,"id":1817},"_Extent":{"__isSmartRef__":true,"id":1818},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1819},"_Fill":{"__isSmartRef__":true,"id":1820},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1816":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1817":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1818":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1819":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1820":{"stops":[{"__isSmartRef__":true,"id":1821},{"__isSmartRef__":true,"id":1823},{"__isSmartRef__":true,"id":1825},{"__isSmartRef__":true,"id":1827}],"vector":{"__isSmartRef__":true,"id":1829},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1821":{"offset":0,"color":{"__isSmartRef__":true,"id":1822}},"1822":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1823":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1824}},"1824":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1825":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1826}},"1826":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1827":{"offset":1,"color":{"__isSmartRef__":true,"id":1828}},"1828":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1829":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1830":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1831":{"morph":{"__isSmartRef__":true,"id":1802},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1832":{"x":780.5002499997495,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1833":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1834":{"stops":[{"__isSmartRef__":true,"id":1835},{"__isSmartRef__":true,"id":1837},{"__isSmartRef__":true,"id":1839},{"__isSmartRef__":true,"id":1841}],"vector":{"__isSmartRef__":true,"id":1829},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1835":{"offset":0,"color":{"__isSmartRef__":true,"id":1836}},"1836":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1837":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1838}},"1838":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1839":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1840}},"1840":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1841":{"offset":1,"color":{"__isSmartRef__":true,"id":1842}},"1842":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1843":{"moveHorizontal":true},"1844":{"sourceObj":{"__isSmartRef__":true,"id":1802},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1845},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1845":{"source":{"__isSmartRef__":true,"id":1802},"target":{"__isSmartRef__":true,"id":465}},"1846":{"sourceObj":{"__isSmartRef__":true,"id":1802},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1847},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1847":{"source":{"__isSmartRef__":true,"id":1802},"target":{"__isSmartRef__":true,"id":465}},"1848":{"submorphs":[{"__isSmartRef__":true,"id":1849}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1860},"id":303,"renderContextTable":{"__isSmartRef__":true,"id":1864},"eventHandler":{"__isSmartRef__":true,"id":1865},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1866},"priorExtent":{"__isSmartRef__":true,"id":1867},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1820},"lighterFill":{"__isSmartRef__":true,"id":1868},"label":{"__isSmartRef__":true,"id":1849},"owner":{"__isSmartRef__":true,"id":1787},"attributeConnections":[{"__isSmartRef__":true,"id":1877},{"__isSmartRef__":true,"id":1879}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1849":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1850},"id":304,"renderContextTable":{"__isSmartRef__":true,"id":1854},"textChunks":[{"__isSmartRef__":true,"id":1855}],"eventHandler":{"__isSmartRef__":true,"id":1857},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1812},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1858},"priorExtent":{"__isSmartRef__":true,"id":1859},"_MaxTextWidth":17,"_MaxTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1848},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":17,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"1850":{"_Position":{"__isSmartRef__":true,"id":1851},"renderContextTable":{"__isSmartRef__":true,"id":1852},"_Extent":{"__isSmartRef__":true,"id":1853},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1793},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1851":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1852":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1853":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1854":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1855":{"style":{"__isSmartRef__":true,"id":1856},"chunkOwner":{"__isSmartRef__":true,"id":1849},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"1856":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1857":{"morph":{"__isSmartRef__":true,"id":1849},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1858":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1859":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1860":{"_Position":{"__isSmartRef__":true,"id":1861},"renderContextTable":{"__isSmartRef__":true,"id":1862},"_Extent":{"__isSmartRef__":true,"id":1863},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1819},"_Fill":{"__isSmartRef__":true,"id":1820},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1861":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1862":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1863":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1864":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1865":{"morph":{"__isSmartRef__":true,"id":1848},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1866":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1867":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1868":{"stops":[{"__isSmartRef__":true,"id":1869},{"__isSmartRef__":true,"id":1871},{"__isSmartRef__":true,"id":1873},{"__isSmartRef__":true,"id":1875}],"vector":{"__isSmartRef__":true,"id":1829},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1869":{"offset":0,"color":{"__isSmartRef__":true,"id":1870}},"1870":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1871":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1872}},"1872":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1873":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1874}},"1874":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1875":{"offset":1,"color":{"__isSmartRef__":true,"id":1876}},"1876":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1877":{"sourceObj":{"__isSmartRef__":true,"id":1848},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1878},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1878":{"source":{"__isSmartRef__":true,"id":1848},"target":{"__isSmartRef__":true,"id":465}},"1879":{"sourceObj":{"__isSmartRef__":true,"id":1848},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1880},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1880":{"source":{"__isSmartRef__":true,"id":1848},"target":{"__isSmartRef__":true,"id":465}},"1881":{"submorphs":[{"__isSmartRef__":true,"id":1882}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1893},"id":305,"renderContextTable":{"__isSmartRef__":true,"id":1897},"eventHandler":{"__isSmartRef__":true,"id":1898},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1899},"priorExtent":{"__isSmartRef__":true,"id":1900},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1820},"lighterFill":{"__isSmartRef__":true,"id":1901},"label":{"__isSmartRef__":true,"id":1882},"owner":{"__isSmartRef__":true,"id":1787},"layout":{"__isSmartRef__":true,"id":1910},"attributeConnections":[{"__isSmartRef__":true,"id":1911},{"__isSmartRef__":true,"id":1913}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1882":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1883},"id":306,"renderContextTable":{"__isSmartRef__":true,"id":1887},"textChunks":[{"__isSmartRef__":true,"id":1888}],"eventHandler":{"__isSmartRef__":true,"id":1890},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1812},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1891},"priorExtent":{"__isSmartRef__":true,"id":1892},"_MaxTextWidth":17,"_MaxTextHeight":null,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1881},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_MinTextWidth":17,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text"},"1883":{"_Position":{"__isSmartRef__":true,"id":1884},"renderContextTable":{"__isSmartRef__":true,"id":1885},"_Extent":{"__isSmartRef__":true,"id":1886},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1793},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1884":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1885":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1886":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1887":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1888":{"style":{"__isSmartRef__":true,"id":1889},"chunkOwner":{"__isSmartRef__":true,"id":1882},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"1889":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1890":{"morph":{"__isSmartRef__":true,"id":1882},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1891":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1892":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1893":{"_Position":{"__isSmartRef__":true,"id":1894},"renderContextTable":{"__isSmartRef__":true,"id":1895},"_Extent":{"__isSmartRef__":true,"id":1896},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1819},"_Fill":{"__isSmartRef__":true,"id":1820},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1894":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1895":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1896":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1897":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1898":{"morph":{"__isSmartRef__":true,"id":1881},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1899":{"x":761.5002499997495,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1900":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1901":{"stops":[{"__isSmartRef__":true,"id":1902},{"__isSmartRef__":true,"id":1904},{"__isSmartRef__":true,"id":1906},{"__isSmartRef__":true,"id":1908}],"vector":{"__isSmartRef__":true,"id":1829},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1902":{"offset":0,"color":{"__isSmartRef__":true,"id":1903}},"1903":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1904":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1905}},"1905":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1906":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1907}},"1907":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1908":{"offset":1,"color":{"__isSmartRef__":true,"id":1909}},"1909":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1910":{"moveHorizontal":true},"1911":{"sourceObj":{"__isSmartRef__":true,"id":1881},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1912},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1912":{"source":{"__isSmartRef__":true,"id":1881},"target":{"__isSmartRef__":true,"id":465}},"1913":{"sourceObj":{"__isSmartRef__":true,"id":1881},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":465},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1914},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1914":{"source":{"__isSmartRef__":true,"id":1881},"target":{"__isSmartRef__":true,"id":465}},"1915":{"_Position":{"__isSmartRef__":true,"id":1916},"renderContextTable":{"__isSmartRef__":true,"id":1917},"_Extent":{"__isSmartRef__":true,"id":1918},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1919},"_Fill":{"__isSmartRef__":true,"id":150},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1916":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1917":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1918":{"x":800.5002499997495,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1919":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1920":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1921":{"morph":{"__isSmartRef__":true,"id":1787},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1922":{"resizeWidth":true,"adjustForNewBounds":true},"1923":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1924":{"x":800.5002499997495,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1925":{"renderContextTable":{"__isSmartRef__":true,"id":1926},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":1927},"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1926":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1927":{"x":800.5002499997495,"y":517.5806707608509,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1928":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1929":{"morph":{"__isSmartRef__":true,"id":465},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1930":{"adjustForNewBounds":true},"1931":{"x":45,"y":43,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1932":{"x":800.5002499997495,"y":517.5806707608509,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1933":{"x":0,"y":21,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1934":{"partName":"QuickBrownFox","requiredModules":[],"migrationLevel":4,"partsSpaceName":"PartsBin/Fun/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1935":{"x":1103,"y":135,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1936":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":1937},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":false,"registeredForMouseEvents":true,"_world":{"__isSmartRef__":true,"id":0},"_Position":{"__isSmartRef__":true,"id":1942},"owner":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","carriesGrabbedMorphs":false,"_Scale":1.002003004005006,"renderContextTable":{"__isSmartRef__":true,"id":1943},"eventHandler":{"__isSmartRef__":true,"id":1944},"_Rotation":0,"__LivelyClassName__":"lively.morphic.HandMorph","withLayers":["Global.NoMagnetsLayer"]},"1937":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1938},"_Extent":{"__isSmartRef__":true,"id":1939},"_Fill":{"__isSmartRef__":true,"id":1940},"renderContextTable":{"__isSmartRef__":true,"id":1941},"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1938":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1939":{"x":2,"y":2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1940":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1941":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1942":{"x":1041,"y":398,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1943":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1944":{"morph":{"__isSmartRef__":true,"id":1936},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1945":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1946},"_Extent":{"__isSmartRef__":true,"id":1947},"_Fill":{"__isSmartRef__":true,"id":1948},"renderContextTable":{"__isSmartRef__":true,"id":1949},"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1946":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1947":{"x":2800,"y":2900,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1948":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1949":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setClipMode":"setClipModeHTML"},"1950":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1951":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"1952":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1953":{"morph":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1954":{"x":1039,"y":396,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1955":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/Dan/QBF2B.xhtml","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1956":{"sourceObj":{"__isSmartRef__":true,"id":0},"sourceAttrName":"savedWorldAsURL","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"visitNewPageAfterSaveAs","converter":null,"converterString":null,"updaterString":"function ($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }","varMapping":{"__isSmartRef__":true,"id":1957},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1958},"__LivelyClassName__":"AttributeConnection"},"1957":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"1958":{"updater":{"__isSmartRef__":true,"id":1959}},"1959":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":1957},"source":"function ($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }","funcProperties":{"__isSmartRef__":true,"id":1960},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1960":{}}}]]>