From 001670885e07966063de8fcf0ccc96d2485fc162 Mon Sep 17 00:00:00 2001 From: Carolyn Moneymaker Date: Thu, 19 Sep 2024 13:39:06 -0400 Subject: [PATCH] feat(Keyboard): pre-load keyboards (#538) * create/format all keyboards on _update and toggle smoothly * remove setSmooth - not needed * update snapshot and tests * create keyboards once and remove unused func * allow user to set x pos * add number format to KeyboardNumbers story * support theme swapping, format patching, and storybook arg updates * fix existing prop name typo --- .../src/components/Keyboard/Keyboard.js | 48 +- .../src/components/Keyboard/Keyboard.mdx | 2 +- .../src/components/Keyboard/Keyboard.test.js | 4 +- .../Keyboard/KeyboardNumbers.stories.js | 2 +- .../__snapshots__/Keyboard.test.js.snap | 60297 +++++++++++++++- 5 files changed, 58624 insertions(+), 1729 deletions(-) diff --git a/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.js b/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.js index 24a34b9b4..348c29dce 100644 --- a/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.js +++ b/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.js @@ -69,30 +69,31 @@ export default class Keyboard extends Base { } _update() { - if (!this._currentFormat) { + if (!this._currentFormat || this._shouldUpdateKeyboards) { this._currentFormat = this.defaultFormat; } if (this.centerKeyboard) { - this.x = (this.style.screenW - this.w) / 2 - this.style.marginX; - } else { + this.x = this.centeredXPos; + } else if (this.x === this.centeredXPos && !this.centerKeyboard) { + // if the keyboard was centered before but now should not be this.x = 0; - } - if (this._formatsChanged || this.shouldUpdateTheme) { - this._createFormat(this._currentFormat); - this._refocus(); - this._formatsChanged = false; - this.shouldUpdateTheme = false; } else { - this._formatKeys(); + this.x == null && (this.x = 0); // if x is undefined or null set it to 0, otherwise do not overwrite x pos } + this._shouldUpdateKeyboards && this._createKeyboardsFromFormats(); + this._formatKeys(); } - _createFormat(keyboard) { - const format = this.formats[keyboard]; - if (format) { - const keyboardData = this._formatKeyboardData(format); - this._createKeyboard(keyboard, this._createRows(keyboardData, keyboard)); - } + _createKeyboardsFromFormats() { + this.childList.clear(); // if new formats patched in, remove keyboards created from the previous formats + Object.keys(this.formats).forEach(key => { + const format = this.formats[key]; + if (format) { + const keyboardData = this._formatKeyboardData(format); + this._createKeyboard(key, this._createRows(keyboardData, key)); + } + }); + this._formatsChanged = false; } _createKeyboard(key, rows = []) { @@ -110,7 +111,8 @@ export default class Keyboard extends Base { }, autoResizeWidth: true, autoResizeHeight: true, - neverScroll: true + neverScroll: true, + alpha: key === capitalize(this._currentFormat) ? 1 : 0.001 } }); } @@ -199,6 +201,7 @@ export default class Keyboard extends Base { const element = this.tag(capitalize(format)); if (element) { element.patch({ + alpha: format === this._currentFormat ? 1 : 0.001, style: { itemSpacing: this.style.keySpacing } @@ -221,11 +224,10 @@ export default class Keyboard extends Base { $toggleKeyboard(next) { const nextKeyboard = capitalize(next); if (next !== this._currentFormat) { - this._createFormat(next); const nextKeyboardTag = this.tag(nextKeyboard); this.selectKeyOn(nextKeyboardTag); - this._currentKeyboard.alpha = 0; + this._currentKeyboard.alpha = 0.001; nextKeyboardTag.alpha = 1; this._currentFormat = next; } @@ -268,6 +270,14 @@ export default class Keyboard extends Base { return formats; } + get centeredXPos() { + return (this.style.screenW - this.w) / 2 - this.style.marginX; + } + + get _shouldUpdateKeyboards() { + return this.shouldUpdateTheme || this._formatsChanged; + } + set defaultFormat(format) { this._defaultFormat = format; } diff --git a/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.mdx b/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.mdx index 23be12f45..cba227f92 100644 --- a/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.mdx +++ b/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.mdx @@ -93,7 +93,7 @@ All of the following examples will yield the same result. | name | type | required | default | description | | ------------- | ------------- | -------- | --------- | --------------------------------------------------------------------------------------------------------------------------------------------- | | columnCount | number | false | 11 | number of columns across the keyboard if passing a flat array | -| centeKeyboard | bool | false | false | center the keyboard within it's set width (must set the w property of Keyboard) | +| centerKeyboard | bool | false | false | center the keyboard within it's set width (must set the w property of Keyboard) | | centerKeys | bool | false | false | center the keys within it's set width (must set the w property of Keyboard) | | defaultFormat | string | true | undefined | default format of the keyboard to be shown. should be a key of `formats`. | | formats | object | true | undefined | object containing arrays that represent different formats that the keyboard can be presented in. These arrays can contain strings or objects. | diff --git a/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.test.js b/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.test.js index a08ef4065..6b708a2e5 100644 --- a/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.test.js +++ b/packages/@lightningjs/ui-components/src/components/Keyboard/Keyboard.test.js @@ -173,7 +173,7 @@ describe('Keyboard', () => { it('should toggle to a different format', () => { keyboard.$toggleKeyboard('symbols'); - expect(keyboard.tag('Lowercase').alpha).toEqual(0); + expect(keyboard.tag('Lowercase').alpha).toEqual(0.001); expect(keyboard.tag('Symbols').alpha).toEqual(1); }); @@ -187,7 +187,7 @@ describe('Keyboard', () => { }); return keyboard._whenEnabled.then(() => { keyboard.$toggleKeyboard('num'); - expect(keyboard.tag('Abc').alpha).toEqual(0); + expect(keyboard.tag('Abc').alpha).toEqual(0.001); expect(keyboard.tag('Num').alpha).toEqual(1); }); }); diff --git a/packages/@lightningjs/ui-components/src/components/Keyboard/KeyboardNumbers.stories.js b/packages/@lightningjs/ui-components/src/components/Keyboard/KeyboardNumbers.stories.js index 50754dbe5..25331777a 100644 --- a/packages/@lightningjs/ui-components/src/components/Keyboard/KeyboardNumbers.stories.js +++ b/packages/@lightningjs/ui-components/src/components/Keyboard/KeyboardNumbers.stories.js @@ -60,7 +60,7 @@ KeyboardNumbers.argTypes = { defaultFormat: { description: 'Select the format of dialpad', control: 'radio', - options: ['dialpad', 'dialpadExtended'], + options: ['dialpad', 'dialpadExtended', 'numbers'], table: { defaultValue: { summary: 'undefined' } } diff --git a/packages/@lightningjs/ui-components/src/components/Keyboard/__snapshots__/Keyboard.test.js.snap b/packages/@lightningjs/ui-components/src/components/Keyboard/__snapshots__/Keyboard.test.js.snap index 734cc61f5..965b3097e 100644 --- a/packages/@lightningjs/ui-components/src/components/Keyboard/__snapshots__/Keyboard.test.js.snap +++ b/packages/@lightningjs/ui-components/src/components/Keyboard/__snapshots__/Keyboard.test.js.snap @@ -15,7 +15,7 @@ exports[`Keyboard renders 1`] = ` "attached": true, "boundsMargin": null, "children": { - "Element-110": { + "Element-158": { "active": false, "alpha": 1, "attached": true, @@ -27,7 +27,7 @@ exports[`Keyboard renders 1`] = ` "attached": true, "boundsMargin": null, "children": { - "Element-112": { + "Element-160": { "active": false, "alpha": 1, "attached": true, @@ -125,9 +125,9 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "z", + "text": "1", "textBaseline": "bottom", - "textColor": 4294506490, + "textColor": 4279769113, "type": "TextTexture", "verticalAlign": "middle", }, @@ -240,8 +240,8 @@ exports[`Keyboard renders 1`] = ` "flex": false, "flexItem": false, "h": 90, - "hasFinalFocus": false, - "hasFocus": false, + "hasFinalFocus": true, + "hasFocus": true, "isComponent": true, "mount": 0, "mountX": 0, @@ -264,7 +264,7 @@ exports[`Keyboard renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-115": { + "Element-163": { "active": false, "alpha": 1, "attached": true, @@ -362,7 +362,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "x", + "text": "2", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -501,7 +501,7 @@ exports[`Keyboard renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-118": { + "Element-166": { "active": false, "alpha": 1, "attached": true, @@ -599,7 +599,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "c", + "text": "3", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -738,7 +738,7 @@ exports[`Keyboard renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-121": { + "Element-169": { "active": false, "alpha": 1, "attached": true, @@ -836,7 +836,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "v", + "text": "4", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -975,7 +975,7 @@ exports[`Keyboard renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-124": { + "Element-172": { "active": false, "alpha": 1, "attached": true, @@ -1073,7 +1073,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "b", + "text": "5", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -1212,7 +1212,7 @@ exports[`Keyboard renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-127": { + "Element-175": { "active": false, "alpha": 1, "attached": true, @@ -1310,7 +1310,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "n", + "text": "6", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -1449,7 +1449,7 @@ exports[`Keyboard renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-130": { + "Element-178": { "active": false, "alpha": 1, "attached": true, @@ -1547,7 +1547,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "m", + "text": "7", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -1686,7 +1686,7 @@ exports[`Keyboard renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-133": { + "Element-181": { "active": false, "alpha": 1, "attached": true, @@ -1784,7 +1784,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "_", + "text": "8", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -1923,7 +1923,7 @@ exports[`Keyboard renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-136": { + "Element-184": { "active": false, "alpha": 1, "attached": true, @@ -2021,7 +2021,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": ".", + "text": "9", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -2160,7 +2160,7 @@ exports[`Keyboard renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-139": { + "Element-187": { "active": false, "alpha": 1, "attached": true, @@ -2258,7 +2258,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "-", + "text": "0", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -2397,7 +2397,7 @@ exports[`Keyboard renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-142": { + "Element-190": { "active": false, "alpha": 1, "attached": true, @@ -2447,64 +2447,57 @@ exports[`Keyboard renders 1`] = ` "attached": true, "boundsMargin": null, "children": { - "TextWrapper": { + "Prefix": { "active": false, "alpha": 1, "attached": true, "boundsMargin": null, "children": { - "Title": { + "Items": { "active": false, - "alpha": 0.001, + "alpha": 1, "attached": true, "boundsMargin": null, "children": { - "Text": { + "Element-917": { "active": false, "alpha": 1, "attached": true, "boundsMargin": null, "clipping": false, - "color": 4294967295, + "color": "fff8f7fa", "enabled": true, "flex": false, "flexItem": false, - "h": 0, - "isComponent": undefined, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, "mount": 0, "mountX": 0, "mountY": 0, "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, - "ref": "Text", + "ref": null, "renderOfScreen": undefined, "renderToTexture": false, "scale": 1, "scaleX": 1, "scaleY": 1, - "state": undefined, + "state": "", "tag": [Function], - "tags": [ - "Text", - ], "texture": { - "fontFace": "Arial", - "fontSize": 30, - "fontStyle": "500", - "lineHeight": 40, - "maxLines": 1, - "precision": 0.6666666666666666, - "text": "shift", - "textBaseline": "bottom", - "textColor": 4294506490, - "type": "TextTexture", - "verticalAlign": "middle", + "h": 40, + "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAYAAADnRuK4AAAAAXNSR0IArs4c6QAACmpJREFUeF7tnVmoZUcVhv/feY4gBEVEH/KgCCZxCK2itNo4xQQH+kUN0TjEiDGKKBqnaExwBjUaR6KY+NQgiQkOMSYhYEScIopGJOqDE2hHjfP0y4p1Oqdv33v2qr32Prv2Paug6Ye7Vu2qv75TtWvtGohMqUBAAQZ80zUVQAKUEIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypfPsAJJ0NYC92XRHKPB3AAfLv18BuBLAFSR/NKZWswJI0vkA3jCmILsw75sAvIfkR8eo22wAknQSgMvGEGFD8vwxgFeQvGrI+s4CIEnHAPgugHsMWfkNzevDAM4i+Z8h6t88QJLuXOB5yBAVzjxuVeBaAM8ieXNUjzkAdAmA50Yrmv5HKPATACeQ/GNEm6YBkvRyANblZhpHAXsfekpkOGsWIEmPAHA9gDuOo13mWhS4gOSZfdVoEiBJ9wFwA4D7961Y+lUpsK/v7KxVgL4K4ElOCS4l+Uyn7a41k3Q0gMcC2ANgH4CHV1T2OyStx69OzQEk6TwAZztr8lMAx5P8s9N+Y8wk2cTjfQDu66z080h+zml7yKwpgCSdCOByZyX+BuBRJH/otN84M0kWN/s0gOc4Kv8Nko922B1m0gxAkh4I4AcVwcL9JA/UVnjT7CXdHYD9yEzfVUkAjib5uxqNmgCoBAu/CeBhzsJ/kORZTtuNN5Nk70bXAZ0Hy59G8qIawVoB6LMAnu8suE3tH0/y3077NAMg6esAuoaoC0la7M2dJgdI0ssAXOgs8W8BHEvS/s9UoYCkdwN4bYfL5STto7U7TQpQZbDQehzreawHylSpgKSTAVza4XYDyeNqsp4MoB7BwteQfH9N5dL2NgWK3l0vyAdJWhDXnSYBSNLtANh3GO/KwgMk97trlYbbKiDJPpzea5U8JKuYqDIeql0kvQPAG5352ZLMR5L8q9M+zXZQYFcAJOnJAL7sbGWLMFuk2SLOmYIKzB6gEiz8HoB7O7U4meQXnLZp1qGApD8BuOcsh7AewcL3kuyadg4OjSSbhRxH0j4BjJok2Ufga0j+YdQHlcznDlBNsPAa+xpP8r/rEHbxjAKPbRuyHvKFY0Ik6QUALOprPfIT1gHRbAGSdDoA77aSX5Zg4e8nhGfx6FEgWoJn8Zy1QCTplq5vjc3NwnoEC/eQ/HYD8IwC0TbwrA2i2QHUI1h4JskLGoJnUIhWwLMWiGYFkCSLMX2t5WDhlneeLm5Dw5kDntEhkmRhEVvesWNqZgiTdC6AN3W1Svn72oOFkuxF+WcVIQUrai+IKuA5BBHJ453auc1mA1AJFn7Jsf7EKj9ZsLBHw1ZDtI5neAmaBUBzCxaO2cBj5u2FZtlO0l8A3K3ZIaxHsPB8kt5vYn00c/mM0dBj5OmqzAqjOQDUfLBwJ32HbPAh84pCM5seSNJLAHzcWeFJgoVdZRui4YfIo6ucff8uyVY03LW5IawyWPgvW5u77mChV/QIABFfb/kidk0CVKbDth3Huw35dJLeniqiV2/fniDYx1f7vlWTeoUFah6wZQhrqwcqwUKbrtsaH0+6mOQpHsOpbXpCVFPstcJjBZNkmzHv0swQJultAN7iVO375TyafzjtJzcbEaK1w9McQJXBQlvvYmtsfjE5FZUFGAGiSeBpCqDKYKFtmX0qya9Utl0z5gNCNBk8BSA7CtiODNwxjf4trEew8BySNtTNOg0A0aTwtARQTbDQeh3rfawXmn0KQDQ5PC0B9EkAL3LSkAD9X6hWALIJzJ3mNoSdS9I7U3NyuX6zQO+zKOzkEEmaHqDSFdpZM97tOfkSfRvvk0LUDEAFIgseetf85DS+AYgk/bPr1NvRZ2HLg4ektwI4xzmgZCBxYohaBMjWPeenDOcvaIvZ2oez5gAqQ5mtLbb3oa4z+Bb6nTHW1UP92vFIr54vzJ8BcGplGdYKkSRbCXGHSWdh2z1ckp1taGccroxyFt9cznG4iGuDqFmASk9kZxxakNGTckHZBBA1DVCB6BMAXuwhyA4VmGL/+05l6zlsbdt7DJmXU0uXmSQ7JvD2zQ1hiwJJsotRvlVxXO87SU5+heUYDT5Gni5KVhg1D1DphWqCjOYy6RlAYzb0mHn3gWkWABWIaoKMubHwSBpGebGWZNdc2vmUO6a1BhJXFUSSff/yLuOYamvzzwEcVfFr7tWwPXqi6uN2PXWYG0C1Qca1n8RaDlewl3kPRL3gWXo/XBwo1dXWdk/a3jEOnJoVQGUoqw0yvpLkh7oUHvLvTohC8FRANBo8pT3sxLeVJ/M2M4QtiVYTZJzkNPoOiAaBxwHRqPDMFqBS8Jog4yT3YewA0aDwrIBodHhmDVApvG0mtO3PnjTJjTxbIBoFnm0gWgs8pQ06lxY3N4QtCWZBRgPDezdnHvPr+alV2EiaL0DlF2Dbn20bdB40XtHwQ5nOHqAC0SyCjEM1Wkv57AqACkRvBvB2p7hrDzI6yzU7s90EUPNBxtnR4SjwrgGo9EK1Qca8cM4ByU4mkuz++F93ZHELyZX3iW31n+S+sKWZWfNBxkCbNeUq6ekArugo1I0kH1xT8EkBKj1R80HGGkFbtZVkZ3bb2d2r0tUkn1hTh8kBKhB9DMBLnQWfJMjoLFuTZpJsO/ONAB7UUcBLSHqvX781q1YAqg0yfoDkq5psrQYLJeldAF7nKFr1x+wmACq9kAUZLazvvTV4P8kDDlE22kTSQ4uuK9dCF5HuR/I3NYI1A1CBaB+AK50VsAMj7TJeixNl2kYBSccCsB/ZMQ6Brif5GIfdYSZNAVQg8rzsLSphl/Hapby2LDZTUaBcq/56ALb1fOVxLkuinULy4loRmwOoQGQX7T7DWZnPk3y203bXmkl6AIA91isDOBGADV3e1HsJbasA1QYZvUKl3fYKPI2knXFQnZoEqPRCNUHG6oqnwyEFLiJ5Wl89mgWoQFQTZOyrwSb7WUztcSRtu0+v1DRABaKPADijV+3SaZUCNgE5geTNEZnmAFBtkDGix6b4Xld2BNvJcaHUPEClF6oNMoZE2eXOtm3q1ZFha1mfWQBUINoL4Kqurbm7vPEj1bOAqx3udW0kk62+swGoQHQ2gPOGFGAD8roJgF0t+qkx6jorgApElwE4aQwxZp6n3YNxsPyzA7yst/4iSdvEMFqaHUCjKZEZ91IgAeolWzotFEiAkoWQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnT+H0jPT81J3xWWAAAAAElFTkSuQmCC", + "type": "CustomImageTexture", + "w": 40, }, + "type": "Icon", "visible": true, - "w": 0, + "w": 40, "x": 0, - "y": 2, + "y": 0, "zIndex": 0, }, }, @@ -2513,32 +2506,29 @@ exports[`Keyboard renders 1`] = ` "enabled": true, "flex": false, "flexItem": false, - "h": 0, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, + "h": 40, + "isComponent": undefined, "mount": 0, "mountX": 0, - "mountY": 0.5, + "mountY": 0, "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, - "ref": "Title", + "ref": "Items", "renderOfScreen": undefined, "renderToTexture": false, "scale": 1, "scaleX": 1, "scaleY": 1, - "state": "", + "state": undefined, "tag": [Function], "tags": [ - "Title", + "Items", ], - "type": "TextBox", "visible": true, - "w": 0, + "w": 40, "x": 0, - "y": [Function], + "y": 0, "zIndex": 0, }, }, @@ -2547,11 +2537,49 @@ exports[`Keyboard renders 1`] = ` "enabled": true, "flex": false, "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Prefix", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "tags": [ + "Prefix", + ], + "type": "Row", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, "h": 0, "isComponent": undefined, "mount": 0, "mountX": 0, - "mountY": 0.5, + "mountY": 0, "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, @@ -2598,7 +2626,7 @@ exports[`Keyboard renders 1`] = ` "Content", ], "visible": true, - "w": 0, + "w": 40, "x": 75, "y": 45, "zIndex": 2, @@ -2673,7 +2701,7 @@ exports[`Keyboard renders 1`] = ` "flexItem": false, "h": 90, "hasFinalFocus": false, - "hasFocus": false, + "hasFocus": true, "isComponent": true, "mount": 0, "mountX": 0, @@ -2693,10 +2721,10 @@ exports[`Keyboard renders 1`] = ` "visible": true, "w": 950, "x": 0, - "y": 300, + "y": 0, "zIndex": 0, }, - "Element-145": { + "Element-193": { "active": false, "alpha": 1, "attached": true, @@ -2708,7 +2736,7 @@ exports[`Keyboard renders 1`] = ` "attached": true, "boundsMargin": null, "children": { - "Element-147": { + "Element-195": { "active": false, "alpha": 1, "attached": true, @@ -2806,7 +2834,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "Clear", + "text": "q", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -2910,7 +2938,7 @@ exports[`Keyboard renders 1`] = ` ], "visible": true, "w": 0, - "x": 115, + "x": 35, "y": 45, "zIndex": 2, }, @@ -2940,12 +2968,12 @@ exports[`Keyboard renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 230, + "w": 70, "x": 0, "y": 0, "zIndex": 0, }, - "Element-150": { + "Element-198": { "active": false, "alpha": 1, "attached": true, @@ -3043,7 +3071,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "Space", + "text": "w", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -3147,7 +3175,7 @@ exports[`Keyboard renders 1`] = ` ], "visible": true, "w": 0, - "x": 155, + "x": 35, "y": 45, "zIndex": 2, }, @@ -3177,12 +3205,12 @@ exports[`Keyboard renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 310, - "x": 240, + "w": 70, + "x": 80, "y": 0, "zIndex": 0, }, - "Element-153": { + "Element-201": { "active": false, "alpha": 1, "attached": true, @@ -3280,7 +3308,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "Done", + "text": "e", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -3384,7 +3412,7 @@ exports[`Keyboard renders 1`] = ` ], "visible": true, "w": 0, - "x": 115, + "x": 35, "y": 45, "zIndex": 2, }, @@ -3414,86 +3442,12 @@ exports[`Keyboard renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 230, - "x": 560, + "w": 70, + "x": 160, "y": 0, "zIndex": 0, }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Items", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Items", - ], - "visible": true, - "w": 790, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": null, - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "Row", - "tag": [Function], - "type": "Row", - "visible": true, - "w": 790, - "x": 0, - "y": 400, - "zIndex": 0, - }, - "Element-40": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Items": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Element-42": { + "Element-204": { "active": false, "alpha": 1, "attached": true, @@ -3591,7 +3545,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "q", + "text": "r", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -3726,11 +3680,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 0, + "x": 240, "y": 0, "zIndex": 0, }, - "Element-45": { + "Element-207": { "active": false, "alpha": 1, "attached": true, @@ -3828,7 +3782,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "w", + "text": "t", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -3963,11 +3917,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 80, + "x": 320, "y": 0, "zIndex": 0, }, - "Element-48": { + "Element-210": { "active": false, "alpha": 1, "attached": true, @@ -4065,7 +4019,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "e", + "text": "y", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -4200,11 +4154,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 160, + "x": 400, "y": 0, "zIndex": 0, }, - "Element-51": { + "Element-213": { "active": false, "alpha": 1, "attached": true, @@ -4302,7 +4256,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "r", + "text": "u", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -4437,11 +4391,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 240, + "x": 480, "y": 0, "zIndex": 0, }, - "Element-54": { + "Element-216": { "active": false, "alpha": 1, "attached": true, @@ -4539,7 +4493,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "t", + "text": "i", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -4674,11 +4628,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 320, + "x": 560, "y": 0, "zIndex": 0, }, - "Element-57": { + "Element-219": { "active": false, "alpha": 1, "attached": true, @@ -4776,7 +4730,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "y", + "text": "o", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -4911,11 +4865,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 400, + "x": 640, "y": 0, "zIndex": 0, }, - "Element-60": { + "Element-222": { "active": false, "alpha": 1, "attached": true, @@ -5013,7 +4967,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "u", + "text": "p", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -5148,11 +5102,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 480, + "x": 720, "y": 0, "zIndex": 0, }, - "Element-63": { + "Element-225": { "active": false, "alpha": 1, "attached": true, @@ -5250,7 +5204,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "i", + "text": "#@!", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -5354,7 +5308,7 @@ exports[`Keyboard renders 1`] = ` ], "visible": true, "w": 0, - "x": 35, + "x": 75, "y": 45, "zIndex": 2, }, @@ -5384,12 +5338,86 @@ exports[`Keyboard renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 70, - "x": 560, + "w": 150, + "x": 800, "y": 0, "zIndex": 0, }, - "Element-66": { + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 100, + "zIndex": 0, + }, + "Element-228": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-230": { "active": false, "alpha": 1, "attached": true, @@ -5487,7 +5515,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "o", + "text": "a", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -5622,11 +5650,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 640, + "x": 0, "y": 0, "zIndex": 0, }, - "Element-69": { + "Element-233": { "active": false, "alpha": 1, "attached": true, @@ -5724,7 +5752,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "p", + "text": "s", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -5859,11 +5887,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 720, + "x": 80, "y": 0, "zIndex": 0, }, - "Element-72": { + "Element-236": { "active": false, "alpha": 1, "attached": true, @@ -5961,7 +5989,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "#@!", + "text": "d", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -6065,7 +6093,7 @@ exports[`Keyboard renders 1`] = ` ], "visible": true, "w": 0, - "x": 75, + "x": 35, "y": 45, "zIndex": 2, }, @@ -6095,86 +6123,12 @@ exports[`Keyboard renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 150, - "x": 800, + "w": 70, + "x": 160, "y": 0, "zIndex": 0, }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Items", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Items", - ], - "visible": true, - "w": 950, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": null, - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "Row", - "tag": [Function], - "type": "Row", - "visible": true, - "w": 950, - "x": 0, - "y": 100, - "zIndex": 0, - }, - "Element-5": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Items": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Element-10": { + "Element-239": { "active": false, "alpha": 1, "attached": true, @@ -6272,7 +6226,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "2", + "text": "f", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -6407,11 +6361,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 80, + "x": 240, "y": 0, "zIndex": 0, }, - "Element-13": { + "Element-242": { "active": false, "alpha": 1, "attached": true, @@ -6509,7 +6463,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "3", + "text": "g", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -6644,11 +6598,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 160, + "x": 320, "y": 0, "zIndex": 0, }, - "Element-16": { + "Element-245": { "active": false, "alpha": 1, "attached": true, @@ -6746,7 +6700,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "4", + "text": "h", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -6881,11 +6835,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 240, + "x": 400, "y": 0, "zIndex": 0, }, - "Element-19": { + "Element-248": { "active": false, "alpha": 1, "attached": true, @@ -6983,7 +6937,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "5", + "text": "j", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -7118,11 +7072,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 320, + "x": 480, "y": 0, "zIndex": 0, }, - "Element-22": { + "Element-251": { "active": false, "alpha": 1, "attached": true, @@ -7220,7 +7174,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "6", + "text": "k", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -7355,11 +7309,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 400, + "x": 560, "y": 0, "zIndex": 0, }, - "Element-25": { + "Element-254": { "active": false, "alpha": 1, "attached": true, @@ -7457,7 +7411,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "7", + "text": "l", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -7592,11 +7546,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 480, + "x": 640, "y": 0, "zIndex": 0, }, - "Element-28": { + "Element-257": { "active": false, "alpha": 1, "attached": true, @@ -7694,7 +7648,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "8", + "text": "@", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -7829,11 +7783,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 560, + "x": 720, "y": 0, "zIndex": 0, }, - "Element-31": { + "Element-260": { "active": false, "alpha": 1, "attached": true, @@ -7931,7 +7885,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "9", + "text": "áöû", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -8035,7 +7989,7 @@ exports[`Keyboard renders 1`] = ` ], "visible": true, "w": 0, - "x": 35, + "x": 75, "y": 45, "zIndex": 2, }, @@ -8065,12 +8019,86 @@ exports[`Keyboard renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 70, - "x": 640, + "w": 150, + "x": 800, "y": 0, "zIndex": 0, }, - "Element-34": { + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 200, + "zIndex": 0, + }, + "Element-263": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-265": { "active": false, "alpha": 1, "attached": true, @@ -8168,7 +8196,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "0", + "text": "z", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -8303,11 +8331,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 720, + "x": 0, "y": 0, "zIndex": 0, }, - "Element-37": { + "Element-268": { "active": false, "alpha": 1, "attached": true, @@ -8357,57 +8385,64 @@ exports[`Keyboard renders 1`] = ` "attached": true, "boundsMargin": null, "children": { - "Prefix": { + "TextWrapper": { "active": false, "alpha": 1, "attached": true, "boundsMargin": null, "children": { - "Items": { + "Title": { "active": false, - "alpha": 1, + "alpha": 0.001, "attached": true, "boundsMargin": null, "children": { - "Element-178": { + "Text": { "active": false, "alpha": 1, "attached": true, "boundsMargin": null, "clipping": false, - "color": "fff8f7fa", + "color": 4294967295, "enabled": true, "flex": false, "flexItem": false, - "h": 40, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, + "h": 0, + "isComponent": undefined, "mount": 0, "mountX": 0, "mountY": 0, "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, - "ref": null, + "ref": "Text", "renderOfScreen": undefined, "renderToTexture": false, "scale": 1, "scaleX": 1, "scaleY": 1, - "state": "", + "state": undefined, "tag": [Function], + "tags": [ + "Text", + ], "texture": { - "h": 40, - "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAYAAADnRuK4AAAAAXNSR0IArs4c6QAACmpJREFUeF7tnVmoZUcVhv/feY4gBEVEH/KgCCZxCK2itNo4xQQH+kUN0TjEiDGKKBqnaExwBjUaR6KY+NQgiQkOMSYhYEScIopGJOqDE2hHjfP0y4p1Oqdv33v2qr32Prv2Paug6Ye7Vu2qv75TtWvtGohMqUBAAQZ80zUVQAKUEIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypfPsAJJ0NYC92XRHKPB3AAfLv18BuBLAFSR/NKZWswJI0vkA3jCmILsw75sAvIfkR8eo22wAknQSgMvGEGFD8vwxgFeQvGrI+s4CIEnHAPgugHsMWfkNzevDAM4i+Z8h6t88QJLuXOB5yBAVzjxuVeBaAM8ieXNUjzkAdAmA50Yrmv5HKPATACeQ/GNEm6YBkvRyANblZhpHAXsfekpkOGsWIEmPAHA9gDuOo13mWhS4gOSZfdVoEiBJ9wFwA4D7961Y+lUpsK/v7KxVgL4K4ElOCS4l+Uyn7a41k3Q0gMcC2ANgH4CHV1T2OyStx69OzQEk6TwAZztr8lMAx5P8s9N+Y8wk2cTjfQDu66z080h+zml7yKwpgCSdCOByZyX+BuBRJH/otN84M0kWN/s0gOc4Kv8Nko922B1m0gxAkh4I4AcVwcL9JA/UVnjT7CXdHYD9yEzfVUkAjib5uxqNmgCoBAu/CeBhzsJ/kORZTtuNN5Nk70bXAZ0Hy59G8qIawVoB6LMAnu8suE3tH0/y3077NAMg6esAuoaoC0la7M2dJgdI0ssAXOgs8W8BHEvS/s9UoYCkdwN4bYfL5STto7U7TQpQZbDQehzreawHylSpgKSTAVza4XYDyeNqsp4MoB7BwteQfH9N5dL2NgWK3l0vyAdJWhDXnSYBSNLtANh3GO/KwgMk97trlYbbKiDJPpzea5U8JKuYqDIeql0kvQPAG5352ZLMR5L8q9M+zXZQYFcAJOnJAL7sbGWLMFuk2SLOmYIKzB6gEiz8HoB7O7U4meQXnLZp1qGApD8BuOcsh7AewcL3kuyadg4OjSSbhRxH0j4BjJok2Ufga0j+YdQHlcznDlBNsPAa+xpP8r/rEHbxjAKPbRuyHvKFY0Ik6QUALOprPfIT1gHRbAGSdDoA77aSX5Zg4e8nhGfx6FEgWoJn8Zy1QCTplq5vjc3NwnoEC/eQ/HYD8IwC0TbwrA2i2QHUI1h4JskLGoJnUIhWwLMWiGYFkCSLMX2t5WDhlneeLm5Dw5kDntEhkmRhEVvesWNqZgiTdC6AN3W1Svn72oOFkuxF+WcVIQUrai+IKuA5BBHJ453auc1mA1AJFn7Jsf7EKj9ZsLBHw1ZDtI5neAmaBUBzCxaO2cBj5u2FZtlO0l8A3K3ZIaxHsPB8kt5vYn00c/mM0dBj5OmqzAqjOQDUfLBwJ32HbPAh84pCM5seSNJLAHzcWeFJgoVdZRui4YfIo6ucff8uyVY03LW5IawyWPgvW5u77mChV/QIABFfb/kidk0CVKbDth3Huw35dJLeniqiV2/fniDYx1f7vlWTeoUFah6wZQhrqwcqwUKbrtsaH0+6mOQpHsOpbXpCVFPstcJjBZNkmzHv0swQJultAN7iVO375TyafzjtJzcbEaK1w9McQJXBQlvvYmtsfjE5FZUFGAGiSeBpCqDKYKFtmX0qya9Utl0z5gNCNBk8BSA7CtiODNwxjf4trEew8BySNtTNOg0A0aTwtARQTbDQeh3rfawXmn0KQDQ5PC0B9EkAL3LSkAD9X6hWALIJzJ3mNoSdS9I7U3NyuX6zQO+zKOzkEEmaHqDSFdpZM97tOfkSfRvvk0LUDEAFIgseetf85DS+AYgk/bPr1NvRZ2HLg4ektwI4xzmgZCBxYohaBMjWPeenDOcvaIvZ2oez5gAqQ5mtLbb3oa4z+Bb6nTHW1UP92vFIr54vzJ8BcGplGdYKkSRbCXGHSWdh2z1ckp1taGccroxyFt9cznG4iGuDqFmASk9kZxxakNGTckHZBBA1DVCB6BMAXuwhyA4VmGL/+05l6zlsbdt7DJmXU0uXmSQ7JvD2zQ1hiwJJsotRvlVxXO87SU5+heUYDT5Gni5KVhg1D1DphWqCjOYy6RlAYzb0mHn3gWkWABWIaoKMubHwSBpGebGWZNdc2vmUO6a1BhJXFUSSff/yLuOYamvzzwEcVfFr7tWwPXqi6uN2PXWYG0C1Qca1n8RaDlewl3kPRL3gWXo/XBwo1dXWdk/a3jEOnJoVQGUoqw0yvpLkh7oUHvLvTohC8FRANBo8pT3sxLeVJ/M2M4QtiVYTZJzkNPoOiAaBxwHRqPDMFqBS8Jog4yT3YewA0aDwrIBodHhmDVApvG0mtO3PnjTJjTxbIBoFnm0gWgs8pQ06lxY3N4QtCWZBRgPDezdnHvPr+alV2EiaL0DlF2Dbn20bdB40XtHwQ5nOHqAC0SyCjEM1Wkv57AqACkRvBvB2p7hrDzI6yzU7s90EUPNBxtnR4SjwrgGo9EK1Qca8cM4ByU4mkuz++F93ZHELyZX3iW31n+S+sKWZWfNBxkCbNeUq6ekArugo1I0kH1xT8EkBKj1R80HGGkFbtZVkZ3bb2d2r0tUkn1hTh8kBKhB9DMBLnQWfJMjoLFuTZpJsO/ONAB7UUcBLSHqvX781q1YAqg0yfoDkq5psrQYLJeldAF7nKFr1x+wmACq9kAUZLazvvTV4P8kDDlE22kTSQ4uuK9dCF5HuR/I3NYI1A1CBaB+AK50VsAMj7TJeixNl2kYBSccCsB/ZMQ6Brif5GIfdYSZNAVQg8rzsLSphl/Hapby2LDZTUaBcq/56ALb1fOVxLkuinULy4loRmwOoQGQX7T7DWZnPk3y203bXmkl6AIA91isDOBGADV3e1HsJbasA1QYZvUKl3fYKPI2knXFQnZoEqPRCNUHG6oqnwyEFLiJ5Wl89mgWoQFQTZOyrwSb7WUztcSRtu0+v1DRABaKPADijV+3SaZUCNgE5geTNEZnmAFBtkDGix6b4Xld2BNvJcaHUPEClF6oNMoZE2eXOtm3q1ZFha1mfWQBUINoL4Kqurbm7vPEj1bOAqx3udW0kk62+swGoQHQ2gPOGFGAD8roJgF0t+qkx6jorgApElwE4aQwxZp6n3YNxsPyzA7yst/4iSdvEMFqaHUCjKZEZ91IgAeolWzotFEiAkoWQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnT+H0jPT81J3xWWAAAAAElFTkSuQmCC", - "type": "CustomImageTexture", - "w": 40, + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "x", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", }, - "type": "Icon", "visible": true, - "w": 40, + "w": 0, "x": 0, - "y": 0, + "y": 2, "zIndex": 0, }, }, @@ -8416,29 +8451,32 @@ exports[`Keyboard renders 1`] = ` "enabled": true, "flex": false, "flexItem": false, - "h": 40, - "isComponent": undefined, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, "mount": 0, "mountX": 0, - "mountY": 0, + "mountY": 0.5, "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, - "ref": "Items", + "ref": "Title", "renderOfScreen": undefined, "renderToTexture": false, "scale": 1, "scaleX": 1, "scaleY": 1, - "state": undefined, + "state": "", "tag": [Function], "tags": [ - "Items", + "Title", ], + "type": "TextBox", "visible": true, - "w": 40, + "w": 0, "x": 0, - "y": 0, + "y": [Function], "zIndex": 0, }, }, @@ -8447,39 +8485,238 @@ exports[`Keyboard renders 1`] = ` "enabled": true, "flex": false, "flexItem": false, - "h": 40, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, + "h": 0, + "isComponent": undefined, "mount": 0, "mountX": 0, "mountY": 0.5, "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, - "ref": "Prefix", + "ref": "TextWrapper", "renderOfScreen": undefined, "renderToTexture": false, "scale": 1, "scaleX": 1, "scaleY": 1, - "state": "Row", + "state": undefined, "tag": [Function], "tags": [ - "Prefix", + "TextWrapper", ], - "type": "Row", "visible": true, - "w": 40, + "w": 0, "x": 0, "y": 0, "zIndex": 0, }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-271": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { "TextWrapper": { "active": false, "alpha": 1, "attached": true, "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "c", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, "clipping": false, "color": 4294967295, "enabled": true, @@ -8489,7 +8726,7 @@ exports[`Keyboard renders 1`] = ` "isComponent": undefined, "mount": 0, "mountX": 0, - "mountY": 0, + "mountY": 0.5, "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, @@ -8536,8 +8773,8 @@ exports[`Keyboard renders 1`] = ` "Content", ], "visible": true, - "w": 40, - "x": 75, + "w": 0, + "x": 35, "y": 45, "zIndex": 2, }, @@ -8567,12 +8804,12 @@ exports[`Keyboard renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 150, - "x": 800, + "w": 70, + "x": 160, "y": 0, "zIndex": 0, }, - "Element-7": { + "Element-274": { "active": false, "alpha": 1, "attached": true, @@ -8670,320 +8907,9 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "1", + "text": "v", "textBaseline": "bottom", - "textColor": 4279769113, - "type": "TextTexture", - "verticalAlign": "middle", - }, - "visible": true, - "w": 0, - "x": 0, - "y": 2, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0.5, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Title", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "", - "tag": [Function], - "tags": [ - "Title", - ], - "type": "TextBox", - "visible": true, - "w": 0, - "x": 0, - "y": [Function], - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0.5, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "TextWrapper", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "TextWrapper", - ], - "visible": true, - "w": 0, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, - "isComponent": undefined, - "mount": 0.5, - "mountX": 0.5, - "mountY": 0.5, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Content", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Content", - ], - "visible": true, - "w": 0, - "x": 35, - "y": 45, - "zIndex": 2, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "hasFinalFocus": true, - "hasFocus": true, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": null, - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "", - "tag": [Function], - "type": "Key", - "visible": true, - "w": 70, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Items", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Items", - ], - "visible": true, - "w": 950, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "hasFinalFocus": false, - "hasFocus": true, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": null, - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "Row", - "tag": [Function], - "type": "Row", - "visible": true, - "w": 950, - "x": 0, - "y": 0, - "zIndex": 0, - }, - "Element-75": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Items": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Element-101": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Background": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Background", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Background", - ], - "texture": { - "type": "StaticCanvasTexture", - }, - "visible": true, - "w": 0, - "x": 0, - "y": 0, - "zIndex": 0, - }, - "Content": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "TextWrapper": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Title": { - "active": false, - "alpha": 0.001, - "attached": true, - "boundsMargin": null, - "children": { - "Text": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Text", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Text", - ], - "texture": { - "fontFace": "Arial", - "fontSize": 30, - "fontStyle": "500", - "lineHeight": 40, - "maxLines": 1, - "precision": 0.6666666666666666, - "text": "l", - "textBaseline": "bottom", - "textColor": 4294506490, + "textColor": 4294506490, "type": "TextTexture", "verticalAlign": "middle", }, @@ -9116,11 +9042,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 640, + "x": 240, "y": 0, "zIndex": 0, }, - "Element-104": { + "Element-277": { "active": false, "alpha": 1, "attached": true, @@ -9218,7 +9144,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "@", + "text": "b", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -9353,11 +9279,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 720, + "x": 320, "y": 0, "zIndex": 0, }, - "Element-107": { + "Element-280": { "active": false, "alpha": 1, "attached": true, @@ -9455,7 +9381,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "áöû", + "text": "n", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -9559,7 +9485,7 @@ exports[`Keyboard renders 1`] = ` ], "visible": true, "w": 0, - "x": 75, + "x": 35, "y": 45, "zIndex": 2, }, @@ -9589,12 +9515,12 @@ exports[`Keyboard renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 150, - "x": 800, + "w": 70, + "x": 400, "y": 0, "zIndex": 0, }, - "Element-77": { + "Element-283": { "active": false, "alpha": 1, "attached": true, @@ -9692,7 +9618,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "a", + "text": "m", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -9827,11 +9753,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 0, + "x": 480, "y": 0, "zIndex": 0, }, - "Element-80": { + "Element-286": { "active": false, "alpha": 1, "attached": true, @@ -9929,7 +9855,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "s", + "text": "_", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -10064,11 +9990,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 80, + "x": 560, "y": 0, "zIndex": 0, }, - "Element-83": { + "Element-289": { "active": false, "alpha": 1, "attached": true, @@ -10166,7 +10092,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "d", + "text": ".", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -10301,11 +10227,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 160, + "x": 640, "y": 0, "zIndex": 0, }, - "Element-86": { + "Element-292": { "active": false, "alpha": 1, "attached": true, @@ -10403,7 +10329,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "f", + "text": "-", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -10538,11 +10464,11 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 240, + "x": 720, "y": 0, "zIndex": 0, }, - "Element-89": { + "Element-295": { "active": false, "alpha": 1, "attached": true, @@ -10640,7 +10566,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "g", + "text": "shift", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -10744,7 +10670,7 @@ exports[`Keyboard renders 1`] = ` ], "visible": true, "w": 0, - "x": 35, + "x": 75, "y": 45, "zIndex": 2, }, @@ -10774,12 +10700,86 @@ exports[`Keyboard renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 70, - "x": 320, + "w": 150, + "x": 800, "y": 0, "zIndex": 0, }, - "Element-92": { + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 300, + "zIndex": 0, + }, + "Element-298": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-300": { "active": false, "alpha": 1, "attached": true, @@ -10877,7 +10877,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "h", + "text": "Clear", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -10981,7 +10981,7 @@ exports[`Keyboard renders 1`] = ` ], "visible": true, "w": 0, - "x": 35, + "x": 115, "y": 45, "zIndex": 2, }, @@ -11011,12 +11011,12 @@ exports[`Keyboard renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 70, - "x": 400, + "w": 230, + "x": 0, "y": 0, "zIndex": 0, }, - "Element-95": { + "Element-303": { "active": false, "alpha": 1, "attached": true, @@ -11114,7 +11114,7 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "j", + "text": "Space", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -11218,7 +11218,7 @@ exports[`Keyboard renders 1`] = ` ], "visible": true, "w": 0, - "x": 35, + "x": 155, "y": 45, "zIndex": 2, }, @@ -11248,12 +11248,12 @@ exports[`Keyboard renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 70, - "x": 480, + "w": 310, + "x": 240, "y": 0, "zIndex": 0, }, - "Element-98": { + "Element-306": { "active": false, "alpha": 1, "attached": true, @@ -11351,7 +11351,395 @@ exports[`Keyboard renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "k", + "text": "Done", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 115, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 230, + "x": 560, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 790, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 790, + "x": 0, + "y": 400, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 490, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 490, + "hasFinalFocus": false, + "hasFocus": true, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Lowercase", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Column", + "tag": [Function], + "tags": [ + "Lowercase", + ], + "type": "Column", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Uppercase": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-110": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-112": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Z", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -11486,293 +11874,56903 @@ exports[`Keyboard renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 560, + "x": 0, "y": 0, "zIndex": 0, }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Items", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Items", - ], - "visible": true, - "w": 950, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": null, - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "Row", - "tag": [Function], - "type": "Row", - "visible": true, - "w": 950, - "x": 0, - "y": 200, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 490, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Items", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Items", - ], - "visible": true, - "w": 950, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 490, - "hasFinalFocus": false, - "hasFocus": true, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Lowercase", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "Column", - "tag": [Function], - "tags": [ - "Lowercase", - ], - "type": "Column", - "visible": true, - "w": 950, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, -} -`; - -exports[`KeyboardInput renders 1`] = ` -{ - "Component": { - "Wrapper": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Items": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Input": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Background": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Background", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Background", - ], - "texture": { - "type": "StaticCanvasTexture", - }, - "visible": true, - "w": 0, - "x": 0, - "y": 0, - "zIndex": 0, - }, - "Content": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Cursor": { + "Element-115": { "active": false, "alpha": 1, "attached": true, "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "X", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, "clipping": false, "color": 4294967295, "enabled": true, "flex": false, "flexItem": false, - "h": 40, - "isComponent": undefined, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, "mount": 0, "mountX": 0, - "mountY": 0.5, + "mountY": 0, "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, - "ref": "Cursor", + "ref": null, "renderOfScreen": undefined, "renderToTexture": false, "scale": 1, "scaleX": 1, "scaleY": 1, - "state": undefined, + "state": "", "tag": [Function], - "tags": [ - "Cursor", - ], - "texture": { - "type": "RectangleTexture", + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-118": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "C", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-121": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "V", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-124": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "B", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-127": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "N", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-130": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "M", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-133": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "_", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-136": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": ".", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-139": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "-", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-142": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "shift", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 300, + "zIndex": 0, + }, + "Element-145": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-147": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Clear", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 115, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 230, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-150": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Space", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 155, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 310, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-153": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Done", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 115, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 230, + "x": 560, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 790, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 790, + "x": 0, + "y": 400, + "zIndex": 0, + }, + "Element-40": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-42": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Q", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-45": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "W", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-48": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "E", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-51": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "R", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-54": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "T", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-57": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Y", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-60": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "U", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-63": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "I", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-66": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "O", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-69": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "P", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-72": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "#@!", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 100, + "zIndex": 0, + }, + "Element-5": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-10": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "2", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-13": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "3", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-16": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "4", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-19": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "5", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-22": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "6", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-25": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "7", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-28": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "8", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-31": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "9", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-34": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "0", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-37": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Prefix": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-775": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": "fff8f7fa", + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "texture": { + "h": 40, + "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAYAAADnRuK4AAAAAXNSR0IArs4c6QAACmpJREFUeF7tnVmoZUcVhv/feY4gBEVEH/KgCCZxCK2itNo4xQQH+kUN0TjEiDGKKBqnaExwBjUaR6KY+NQgiQkOMSYhYEScIopGJOqDE2hHjfP0y4p1Oqdv33v2qr32Prv2Paug6Ye7Vu2qv75TtWvtGohMqUBAAQZ80zUVQAKUEIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypfPsAJJ0NYC92XRHKPB3AAfLv18BuBLAFSR/NKZWswJI0vkA3jCmILsw75sAvIfkR8eo22wAknQSgMvGEGFD8vwxgFeQvGrI+s4CIEnHAPgugHsMWfkNzevDAM4i+Z8h6t88QJLuXOB5yBAVzjxuVeBaAM8ieXNUjzkAdAmA50Yrmv5HKPATACeQ/GNEm6YBkvRyANblZhpHAXsfekpkOGsWIEmPAHA9gDuOo13mWhS4gOSZfdVoEiBJ9wFwA4D7961Y+lUpsK/v7KxVgL4K4ElOCS4l+Uyn7a41k3Q0gMcC2ANgH4CHV1T2OyStx69OzQEk6TwAZztr8lMAx5P8s9N+Y8wk2cTjfQDu66z080h+zml7yKwpgCSdCOByZyX+BuBRJH/otN84M0kWN/s0gOc4Kv8Nko922B1m0gxAkh4I4AcVwcL9JA/UVnjT7CXdHYD9yEzfVUkAjib5uxqNmgCoBAu/CeBhzsJ/kORZTtuNN5Nk70bXAZ0Hy59G8qIawVoB6LMAnu8suE3tH0/y3077NAMg6esAuoaoC0la7M2dJgdI0ssAXOgs8W8BHEvS/s9UoYCkdwN4bYfL5STto7U7TQpQZbDQehzreawHylSpgKSTAVza4XYDyeNqsp4MoB7BwteQfH9N5dL2NgWK3l0vyAdJWhDXnSYBSNLtANh3GO/KwgMk97trlYbbKiDJPpzea5U8JKuYqDIeql0kvQPAG5352ZLMR5L8q9M+zXZQYFcAJOnJAL7sbGWLMFuk2SLOmYIKzB6gEiz8HoB7O7U4meQXnLZp1qGApD8BuOcsh7AewcL3kuyadg4OjSSbhRxH0j4BjJok2Ufga0j+YdQHlcznDlBNsPAa+xpP8r/rEHbxjAKPbRuyHvKFY0Ik6QUALOprPfIT1gHRbAGSdDoA77aSX5Zg4e8nhGfx6FEgWoJn8Zy1QCTplq5vjc3NwnoEC/eQ/HYD8IwC0TbwrA2i2QHUI1h4JskLGoJnUIhWwLMWiGYFkCSLMX2t5WDhlneeLm5Dw5kDntEhkmRhEVvesWNqZgiTdC6AN3W1Svn72oOFkuxF+WcVIQUrai+IKuA5BBHJ453auc1mA1AJFn7Jsf7EKj9ZsLBHw1ZDtI5neAmaBUBzCxaO2cBj5u2FZtlO0l8A3K3ZIaxHsPB8kt5vYn00c/mM0dBj5OmqzAqjOQDUfLBwJ32HbPAh84pCM5seSNJLAHzcWeFJgoVdZRui4YfIo6ucff8uyVY03LW5IawyWPgvW5u77mChV/QIABFfb/kidk0CVKbDth3Huw35dJLeniqiV2/fniDYx1f7vlWTeoUFah6wZQhrqwcqwUKbrtsaH0+6mOQpHsOpbXpCVFPstcJjBZNkmzHv0swQJultAN7iVO375TyafzjtJzcbEaK1w9McQJXBQlvvYmtsfjE5FZUFGAGiSeBpCqDKYKFtmX0qya9Utl0z5gNCNBk8BSA7CtiODNwxjf4trEew8BySNtTNOg0A0aTwtARQTbDQeh3rfawXmn0KQDQ5PC0B9EkAL3LSkAD9X6hWALIJzJ3mNoSdS9I7U3NyuX6zQO+zKOzkEEmaHqDSFdpZM97tOfkSfRvvk0LUDEAFIgseetf85DS+AYgk/bPr1NvRZ2HLg4ektwI4xzmgZCBxYohaBMjWPeenDOcvaIvZ2oez5gAqQ5mtLbb3oa4z+Bb6nTHW1UP92vFIr54vzJ8BcGplGdYKkSRbCXGHSWdh2z1ckp1taGccroxyFt9cznG4iGuDqFmASk9kZxxakNGTckHZBBA1DVCB6BMAXuwhyA4VmGL/+05l6zlsbdt7DJmXU0uXmSQ7JvD2zQ1hiwJJsotRvlVxXO87SU5+heUYDT5Gni5KVhg1D1DphWqCjOYy6RlAYzb0mHn3gWkWABWIaoKMubHwSBpGebGWZNdc2vmUO6a1BhJXFUSSff/yLuOYamvzzwEcVfFr7tWwPXqi6uN2PXWYG0C1Qca1n8RaDlewl3kPRL3gWXo/XBwo1dXWdk/a3jEOnJoVQGUoqw0yvpLkh7oUHvLvTohC8FRANBo8pT3sxLeVJ/M2M4QtiVYTZJzkNPoOiAaBxwHRqPDMFqBS8Jog4yT3YewA0aDwrIBodHhmDVApvG0mtO3PnjTJjTxbIBoFnm0gWgs8pQ06lxY3N4QtCWZBRgPDezdnHvPr+alV2EiaL0DlF2Dbn20bdB40XtHwQ5nOHqAC0SyCjEM1Wkv57AqACkRvBvB2p7hrDzI6yzU7s90EUPNBxtnR4SjwrgGo9EK1Qca8cM4ByU4mkuz++F93ZHELyZX3iW31n+S+sKWZWfNBxkCbNeUq6ekArugo1I0kH1xT8EkBKj1R80HGGkFbtZVkZ3bb2d2r0tUkn1hTh8kBKhB9DMBLnQWfJMjoLFuTZpJsO/ONAB7UUcBLSHqvX781q1YAqg0yfoDkq5psrQYLJeldAF7nKFr1x+wmACq9kAUZLazvvTV4P8kDDlE22kTSQ4uuK9dCF5HuR/I3NYI1A1CBaB+AK50VsAMj7TJeixNl2kYBSccCsB/ZMQ6Brif5GIfdYSZNAVQg8rzsLSphl/Hapby2LDZTUaBcq/56ALb1fOVxLkuinULy4loRmwOoQGQX7T7DWZnPk3y203bXmkl6AIA91isDOBGADV3e1HsJbasA1QYZvUKl3fYKPI2knXFQnZoEqPRCNUHG6oqnwyEFLiJ5Wl89mgWoQFQTZOyrwSb7WUztcSRtu0+v1DRABaKPADijV+3SaZUCNgE5geTNEZnmAFBtkDGix6b4Xld2BNvJcaHUPEClF6oNMoZE2eXOtm3q1ZFha1mfWQBUINoL4Kqurbm7vPEj1bOAqx3udW0kk62+swGoQHQ2gPOGFGAD8roJgF0t+qkx6jorgApElwE4aQwxZp6n3YNxsPyzA7yst/4iSdvEMFqaHUCjKZEZ91IgAeolWzotFEiAkoWQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnT+H0jPT81J3xWWAAAAAElFTkSuQmCC", + "type": "CustomImageTexture", + "w": 40, + }, + "type": "Icon", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Prefix", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "tags": [ + "Prefix", + ], + "type": "Row", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 40, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + "Element-7": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "1", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-75": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-101": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "L", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-104": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "@", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-107": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "áöû", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + "Element-77": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "A", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-80": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "S", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-83": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "D", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-86": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "F", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-89": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "G", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-92": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "H", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-95": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "J", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-98": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "K", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 200, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 490, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 490, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Uppercase", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Column", + "tag": [Function], + "tags": [ + "Uppercase", + ], + "type": "Column", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, +} +`; + +exports[`KeyboardInput renders 1`] = ` +{ + "Component": { + "Wrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Input": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Cursor": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Cursor", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Cursor", + ], + "texture": { + "type": "RectangleTexture", + }, + "visible": true, + "w": 4, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "HiddenContent": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "HiddenContent", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "HiddenContent", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": true, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 1, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 30, + "y": 50, + "zIndex": 2, + }, + "Eyebrow": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 1, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Eyebrow", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Eyebrow", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 30, + "y": -30, + "zIndex": 0, + }, + "HelpText": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "HelpText", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "HelpText", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 30, + "y": 130, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 100, + "hasFinalFocus": true, + "hasFocus": true, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Input", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Input", + ], + "type": "Input", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Keyboard": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Accents": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38195": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38197": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "1", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38200": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "2", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38203": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "3", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38206": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "4", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38209": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "5", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38212": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "6", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38215": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "7", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38218": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "8", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38221": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "9", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38224": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "0", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38227": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Prefix": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38943": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": "fff8f7fa", + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "texture": { + "h": 40, + "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAYAAADnRuK4AAAAAXNSR0IArs4c6QAACmpJREFUeF7tnVmoZUcVhv/feY4gBEVEH/KgCCZxCK2itNo4xQQH+kUN0TjEiDGKKBqnaExwBjUaR6KY+NQgiQkOMSYhYEScIopGJOqDE2hHjfP0y4p1Oqdv33v2qr32Prv2Paug6Ye7Vu2qv75TtWvtGohMqUBAAQZ80zUVQAKUEIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypfPsAJJ0NYC92XRHKPB3AAfLv18BuBLAFSR/NKZWswJI0vkA3jCmILsw75sAvIfkR8eo22wAknQSgMvGEGFD8vwxgFeQvGrI+s4CIEnHAPgugHsMWfkNzevDAM4i+Z8h6t88QJLuXOB5yBAVzjxuVeBaAM8ieXNUjzkAdAmA50Yrmv5HKPATACeQ/GNEm6YBkvRyANblZhpHAXsfekpkOGsWIEmPAHA9gDuOo13mWhS4gOSZfdVoEiBJ9wFwA4D7961Y+lUpsK/v7KxVgL4K4ElOCS4l+Uyn7a41k3Q0gMcC2ANgH4CHV1T2OyStx69OzQEk6TwAZztr8lMAx5P8s9N+Y8wk2cTjfQDu66z080h+zml7yKwpgCSdCOByZyX+BuBRJH/otN84M0kWN/s0gOc4Kv8Nko922B1m0gxAkh4I4AcVwcL9JA/UVnjT7CXdHYD9yEzfVUkAjib5uxqNmgCoBAu/CeBhzsJ/kORZTtuNN5Nk70bXAZ0Hy59G8qIawVoB6LMAnu8suE3tH0/y3077NAMg6esAuoaoC0la7M2dJgdI0ssAXOgs8W8BHEvS/s9UoYCkdwN4bYfL5STto7U7TQpQZbDQehzreawHylSpgKSTAVza4XYDyeNqsp4MoB7BwteQfH9N5dL2NgWK3l0vyAdJWhDXnSYBSNLtANh3GO/KwgMk97trlYbbKiDJPpzea5U8JKuYqDIeql0kvQPAG5352ZLMR5L8q9M+zXZQYFcAJOnJAL7sbGWLMFuk2SLOmYIKzB6gEiz8HoB7O7U4meQXnLZp1qGApD8BuOcsh7AewcL3kuyadg4OjSSbhRxH0j4BjJok2Ufga0j+YdQHlcznDlBNsPAa+xpP8r/rEHbxjAKPbRuyHvKFY0Ik6QUALOprPfIT1gHRbAGSdDoA77aSX5Zg4e8nhGfx6FEgWoJn8Zy1QCTplq5vjc3NwnoEC/eQ/HYD8IwC0TbwrA2i2QHUI1h4JskLGoJnUIhWwLMWiGYFkCSLMX2t5WDhlneeLm5Dw5kDntEhkmRhEVvesWNqZgiTdC6AN3W1Svn72oOFkuxF+WcVIQUrai+IKuA5BBHJ453auc1mA1AJFn7Jsf7EKj9ZsLBHw1ZDtI5neAmaBUBzCxaO2cBj5u2FZtlO0l8A3K3ZIaxHsPB8kt5vYn00c/mM0dBj5OmqzAqjOQDUfLBwJ32HbPAh84pCM5seSNJLAHzcWeFJgoVdZRui4YfIo6ucff8uyVY03LW5IawyWPgvW5u77mChV/QIABFfb/kidk0CVKbDth3Huw35dJLeniqiV2/fniDYx1f7vlWTeoUFah6wZQhrqwcqwUKbrtsaH0+6mOQpHsOpbXpCVFPstcJjBZNkmzHv0swQJultAN7iVO375TyafzjtJzcbEaK1w9McQJXBQlvvYmtsfjE5FZUFGAGiSeBpCqDKYKFtmX0qya9Utl0z5gNCNBk8BSA7CtiODNwxjf4trEew8BySNtTNOg0A0aTwtARQTbDQeh3rfawXmn0KQDQ5PC0B9EkAL3LSkAD9X6hWALIJzJ3mNoSdS9I7U3NyuX6zQO+zKOzkEEmaHqDSFdpZM97tOfkSfRvvk0LUDEAFIgseetf85DS+AYgk/bPr1NvRZ2HLg4ektwI4xzmgZCBxYohaBMjWPeenDOcvaIvZ2oez5gAqQ5mtLbb3oa4z+Bb6nTHW1UP92vFIr54vzJ8BcGplGdYKkSRbCXGHSWdh2z1ckp1taGccroxyFt9cznG4iGuDqFmASk9kZxxakNGTckHZBBA1DVCB6BMAXuwhyA4VmGL/+05l6zlsbdt7DJmXU0uXmSQ7JvD2zQ1hiwJJsotRvlVxXO87SU5+heUYDT5Gni5KVhg1D1DphWqCjOYy6RlAYzb0mHn3gWkWABWIaoKMubHwSBpGebGWZNdc2vmUO6a1BhJXFUSSff/yLuOYamvzzwEcVfFr7tWwPXqi6uN2PXWYG0C1Qca1n8RaDlewl3kPRL3gWXo/XBwo1dXWdk/a3jEOnJoVQGUoqw0yvpLkh7oUHvLvTohC8FRANBo8pT3sxLeVJ/M2M4QtiVYTZJzkNPoOiAaBxwHRqPDMFqBS8Jog4yT3YewA0aDwrIBodHhmDVApvG0mtO3PnjTJjTxbIBoFnm0gWgs8pQ06lxY3N4QtCWZBRgPDezdnHvPr+alV2EiaL0DlF2Dbn20bdB40XtHwQ5nOHqAC0SyCjEM1Wkv57AqACkRvBvB2p7hrDzI6yzU7s90EUPNBxtnR4SjwrgGo9EK1Qca8cM4ByU4mkuz++F93ZHELyZX3iW31n+S+sKWZWfNBxkCbNeUq6ekArugo1I0kH1xT8EkBKj1R80HGGkFbtZVkZ3bb2d2r0tUkn1hTh8kBKhB9DMBLnQWfJMjoLFuTZpJsO/ONAB7UUcBLSHqvX781q1YAqg0yfoDkq5psrQYLJeldAF7nKFr1x+wmACq9kAUZLazvvTV4P8kDDlE22kTSQ4uuK9dCF5HuR/I3NYI1A1CBaB+AK50VsAMj7TJeixNl2kYBSccCsB/ZMQ6Brif5GIfdYSZNAVQg8rzsLSphl/Hapby2LDZTUaBcq/56ALb1fOVxLkuinULy4loRmwOoQGQX7T7DWZnPk3y203bXmkl6AIA91isDOBGADV3e1HsJbasA1QYZvUKl3fYKPI2knXFQnZoEqPRCNUHG6oqnwyEFLiJ5Wl89mgWoQFQTZOyrwSb7WUztcSRtu0+v1DRABaKPADijV+3SaZUCNgE5geTNEZnmAFBtkDGix6b4Xld2BNvJcaHUPEClF6oNMoZE2eXOtm3q1ZFha1mfWQBUINoL4Kqurbm7vPEj1bOAqx3udW0kk62+swGoQHQ2gPOGFGAD8roJgF0t+qkx6jorgApElwE4aQwxZp6n3YNxsPyzA7yst/4iSdvEMFqaHUCjKZEZ91IgAeolWzotFEiAkoWQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnT+H0jPT81J3xWWAAAAAElFTkSuQmCC", + "type": "CustomImageTexture", + "w": 40, + }, + "type": "Icon", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Prefix", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "tags": [ + "Prefix", + ], + "type": "Row", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 40, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38230": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38232": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ä", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38235": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ë", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38238": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ï", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38241": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ö", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38244": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ü", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38247": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ÿ", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38250": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "à", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38253": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "è", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38256": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ì", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38259": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ò", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38262": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "#@!", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 100, + "zIndex": 0, + }, + "Element-38265": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38267": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ù", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38270": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "á", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38273": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "é", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38276": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "í", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38279": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ó", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38282": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ú", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38285": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ý", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38288": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "â", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38291": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ê", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38294": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "@", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38297": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "abc", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 200, + "zIndex": 0, + }, + "Element-38300": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38302": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "î", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38305": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ô", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38308": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "û", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38311": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ã", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38314": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "ñ", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38317": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "_", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38320": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": ".", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38323": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "-", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38326": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "shift", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 155, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 310, + "x": 640, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 300, + "zIndex": 0, + }, + "Element-38329": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38331": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Clear", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 115, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 230, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38334": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Space", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 155, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 310, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38337": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Done", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 115, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 230, + "x": 560, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 790, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 790, + "x": 0, + "y": 400, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 490, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 490, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Accents", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Column", + "tag": [Function], + "tags": [ + "Accents", + ], + "type": "Column", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "AccentsUpper": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38342": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38344": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "1", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38347": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "2", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38350": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "3", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38353": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "4", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38356": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "5", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38359": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "6", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38362": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "7", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38365": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "8", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38368": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "9", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38371": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "0", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38374": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Prefix": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-39079": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": "fff8f7fa", + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "texture": { + "h": 40, + "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAYAAADnRuK4AAAAAXNSR0IArs4c6QAACmpJREFUeF7tnVmoZUcVhv/feY4gBEVEH/KgCCZxCK2itNo4xQQH+kUN0TjEiDGKKBqnaExwBjUaR6KY+NQgiQkOMSYhYEScIopGJOqDE2hHjfP0y4p1Oqdv33v2qr32Prv2Paug6Ye7Vu2qv75TtWvtGohMqUBAAQZ80zUVQAKUEIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypfPsAJJ0NYC92XRHKPB3AAfLv18BuBLAFSR/NKZWswJI0vkA3jCmILsw75sAvIfkR8eo22wAknQSgMvGEGFD8vwxgFeQvGrI+s4CIEnHAPgugHsMWfkNzevDAM4i+Z8h6t88QJLuXOB5yBAVzjxuVeBaAM8ieXNUjzkAdAmA50Yrmv5HKPATACeQ/GNEm6YBkvRyANblZhpHAXsfekpkOGsWIEmPAHA9gDuOo13mWhS4gOSZfdVoEiBJ9wFwA4D7961Y+lUpsK/v7KxVgL4K4ElOCS4l+Uyn7a41k3Q0gMcC2ANgH4CHV1T2OyStx69OzQEk6TwAZztr8lMAx5P8s9N+Y8wk2cTjfQDu66z080h+zml7yKwpgCSdCOByZyX+BuBRJH/otN84M0kWN/s0gOc4Kv8Nko922B1m0gxAkh4I4AcVwcL9JA/UVnjT7CXdHYD9yEzfVUkAjib5uxqNmgCoBAu/CeBhzsJ/kORZTtuNN5Nk70bXAZ0Hy59G8qIawVoB6LMAnu8suE3tH0/y3077NAMg6esAuoaoC0la7M2dJgdI0ssAXOgs8W8BHEvS/s9UoYCkdwN4bYfL5STto7U7TQpQZbDQehzreawHylSpgKSTAVza4XYDyeNqsp4MoB7BwteQfH9N5dL2NgWK3l0vyAdJWhDXnSYBSNLtANh3GO/KwgMk97trlYbbKiDJPpzea5U8JKuYqDIeql0kvQPAG5352ZLMR5L8q9M+zXZQYFcAJOnJAL7sbGWLMFuk2SLOmYIKzB6gEiz8HoB7O7U4meQXnLZp1qGApD8BuOcsh7AewcL3kuyadg4OjSSbhRxH0j4BjJok2Ufga0j+YdQHlcznDlBNsPAa+xpP8r/rEHbxjAKPbRuyHvKFY0Ik6QUALOprPfIT1gHRbAGSdDoA77aSX5Zg4e8nhGfx6FEgWoJn8Zy1QCTplq5vjc3NwnoEC/eQ/HYD8IwC0TbwrA2i2QHUI1h4JskLGoJnUIhWwLMWiGYFkCSLMX2t5WDhlneeLm5Dw5kDntEhkmRhEVvesWNqZgiTdC6AN3W1Svn72oOFkuxF+WcVIQUrai+IKuA5BBHJ453auc1mA1AJFn7Jsf7EKj9ZsLBHw1ZDtI5neAmaBUBzCxaO2cBj5u2FZtlO0l8A3K3ZIaxHsPB8kt5vYn00c/mM0dBj5OmqzAqjOQDUfLBwJ32HbPAh84pCM5seSNJLAHzcWeFJgoVdZRui4YfIo6ucff8uyVY03LW5IawyWPgvW5u77mChV/QIABFfb/kidk0CVKbDth3Huw35dJLeniqiV2/fniDYx1f7vlWTeoUFah6wZQhrqwcqwUKbrtsaH0+6mOQpHsOpbXpCVFPstcJjBZNkmzHv0swQJultAN7iVO375TyafzjtJzcbEaK1w9McQJXBQlvvYmtsfjE5FZUFGAGiSeBpCqDKYKFtmX0qya9Utl0z5gNCNBk8BSA7CtiODNwxjf4trEew8BySNtTNOg0A0aTwtARQTbDQeh3rfawXmn0KQDQ5PC0B9EkAL3LSkAD9X6hWALIJzJ3mNoSdS9I7U3NyuX6zQO+zKOzkEEmaHqDSFdpZM97tOfkSfRvvk0LUDEAFIgseetf85DS+AYgk/bPr1NvRZ2HLg4ektwI4xzmgZCBxYohaBMjWPeenDOcvaIvZ2oez5gAqQ5mtLbb3oa4z+Bb6nTHW1UP92vFIr54vzJ8BcGplGdYKkSRbCXGHSWdh2z1ckp1taGccroxyFt9cznG4iGuDqFmASk9kZxxakNGTckHZBBA1DVCB6BMAXuwhyA4VmGL/+05l6zlsbdt7DJmXU0uXmSQ7JvD2zQ1hiwJJsotRvlVxXO87SU5+heUYDT5Gni5KVhg1D1DphWqCjOYy6RlAYzb0mHn3gWkWABWIaoKMubHwSBpGebGWZNdc2vmUO6a1BhJXFUSSff/yLuOYamvzzwEcVfFr7tWwPXqi6uN2PXWYG0C1Qca1n8RaDlewl3kPRL3gWXo/XBwo1dXWdk/a3jEOnJoVQGUoqw0yvpLkh7oUHvLvTohC8FRANBo8pT3sxLeVJ/M2M4QtiVYTZJzkNPoOiAaBxwHRqPDMFqBS8Jog4yT3YewA0aDwrIBodHhmDVApvG0mtO3PnjTJjTxbIBoFnm0gWgs8pQ06lxY3N4QtCWZBRgPDezdnHvPr+alV2EiaL0DlF2Dbn20bdB40XtHwQ5nOHqAC0SyCjEM1Wkv57AqACkRvBvB2p7hrDzI6yzU7s90EUPNBxtnR4SjwrgGo9EK1Qca8cM4ByU4mkuz++F93ZHELyZX3iW31n+S+sKWZWfNBxkCbNeUq6ekArugo1I0kH1xT8EkBKj1R80HGGkFbtZVkZ3bb2d2r0tUkn1hTh8kBKhB9DMBLnQWfJMjoLFuTZpJsO/ONAB7UUcBLSHqvX781q1YAqg0yfoDkq5psrQYLJeldAF7nKFr1x+wmACq9kAUZLazvvTV4P8kDDlE22kTSQ4uuK9dCF5HuR/I3NYI1A1CBaB+AK50VsAMj7TJeixNl2kYBSccCsB/ZMQ6Brif5GIfdYSZNAVQg8rzsLSphl/Hapby2LDZTUaBcq/56ALb1fOVxLkuinULy4loRmwOoQGQX7T7DWZnPk3y203bXmkl6AIA91isDOBGADV3e1HsJbasA1QYZvUKl3fYKPI2knXFQnZoEqPRCNUHG6oqnwyEFLiJ5Wl89mgWoQFQTZOyrwSb7WUztcSRtu0+v1DRABaKPADijV+3SaZUCNgE5geTNEZnmAFBtkDGix6b4Xld2BNvJcaHUPEClF6oNMoZE2eXOtm3q1ZFha1mfWQBUINoL4Kqurbm7vPEj1bOAqx3udW0kk62+swGoQHQ2gPOGFGAD8roJgF0t+qkx6jorgApElwE4aQwxZp6n3YNxsPyzA7yst/4iSdvEMFqaHUCjKZEZ91IgAeolWzotFEiAkoWQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnT+H0jPT81J3xWWAAAAAElFTkSuQmCC", + "type": "CustomImageTexture", + "w": 40, + }, + "type": "Icon", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Prefix", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "tags": [ + "Prefix", + ], + "type": "Row", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 40, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38377": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38379": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ä", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38382": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ë", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38385": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ï", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38388": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ö", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38391": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ü", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38394": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ÿ", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38397": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "À", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38400": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "È", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38403": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ì", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38406": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ò", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38409": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "#@!", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 100, + "zIndex": 0, + }, + "Element-38412": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38414": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ù", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38417": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Á", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38420": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "É", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38423": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Í", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38426": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ó", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38429": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ú", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38432": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ý", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38435": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Â", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38438": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ê", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38441": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "@", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38444": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "abc", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 200, + "zIndex": 0, + }, + "Element-38447": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38449": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Î", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38452": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ô", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38455": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Û", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38458": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ã", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38461": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Ñ", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38464": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": ".", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38467": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "-", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38470": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "_", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38473": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "shift", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 155, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 310, + "x": 640, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 300, + "zIndex": 0, + }, + "Element-38476": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38478": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Clear", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 115, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 230, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38481": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Space", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 155, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 310, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38484": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Done", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 115, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 230, + "x": 560, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 790, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 790, + "x": 0, + "y": 400, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 490, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 490, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "AccentsUpper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Column", + "tag": [Function], + "tags": [ + "AccentsUpper", + ], + "type": "Column", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Lowercase": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38042": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38044": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "1", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38047": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "2", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38050": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "3", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38053": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "4", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38056": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "5", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38059": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "6", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38062": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "7", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38065": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "8", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38068": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "9", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38071": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "0", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38074": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Prefix": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38801": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": "fff8f7fa", + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "texture": { + "h": 40, + "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAYAAADnRuK4AAAAAXNSR0IArs4c6QAACmpJREFUeF7tnVmoZUcVhv/feY4gBEVEH/KgCCZxCK2itNo4xQQH+kUN0TjEiDGKKBqnaExwBjUaR6KY+NQgiQkOMSYhYEScIopGJOqDE2hHjfP0y4p1Oqdv33v2qr32Prv2Paug6Ye7Vu2qv75TtWvtGohMqUBAAQZ80zUVQAKUEIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypfPsAJJ0NYC92XRHKPB3AAfLv18BuBLAFSR/NKZWswJI0vkA3jCmILsw75sAvIfkR8eo22wAknQSgMvGEGFD8vwxgFeQvGrI+s4CIEnHAPgugHsMWfkNzevDAM4i+Z8h6t88QJLuXOB5yBAVzjxuVeBaAM8ieXNUjzkAdAmA50Yrmv5HKPATACeQ/GNEm6YBkvRyANblZhpHAXsfekpkOGsWIEmPAHA9gDuOo13mWhS4gOSZfdVoEiBJ9wFwA4D7961Y+lUpsK/v7KxVgL4K4ElOCS4l+Uyn7a41k3Q0gMcC2ANgH4CHV1T2OyStx69OzQEk6TwAZztr8lMAx5P8s9N+Y8wk2cTjfQDu66z080h+zml7yKwpgCSdCOByZyX+BuBRJH/otN84M0kWN/s0gOc4Kv8Nko922B1m0gxAkh4I4AcVwcL9JA/UVnjT7CXdHYD9yEzfVUkAjib5uxqNmgCoBAu/CeBhzsJ/kORZTtuNN5Nk70bXAZ0Hy59G8qIawVoB6LMAnu8suE3tH0/y3077NAMg6esAuoaoC0la7M2dJgdI0ssAXOgs8W8BHEvS/s9UoYCkdwN4bYfL5STto7U7TQpQZbDQehzreawHylSpgKSTAVza4XYDyeNqsp4MoB7BwteQfH9N5dL2NgWK3l0vyAdJWhDXnSYBSNLtANh3GO/KwgMk97trlYbbKiDJPpzea5U8JKuYqDIeql0kvQPAG5352ZLMR5L8q9M+zXZQYFcAJOnJAL7sbGWLMFuk2SLOmYIKzB6gEiz8HoB7O7U4meQXnLZp1qGApD8BuOcsh7AewcL3kuyadg4OjSSbhRxH0j4BjJok2Ufga0j+YdQHlcznDlBNsPAa+xpP8r/rEHbxjAKPbRuyHvKFY0Ik6QUALOprPfIT1gHRbAGSdDoA77aSX5Zg4e8nhGfx6FEgWoJn8Zy1QCTplq5vjc3NwnoEC/eQ/HYD8IwC0TbwrA2i2QHUI1h4JskLGoJnUIhWwLMWiGYFkCSLMX2t5WDhlneeLm5Dw5kDntEhkmRhEVvesWNqZgiTdC6AN3W1Svn72oOFkuxF+WcVIQUrai+IKuA5BBHJ453auc1mA1AJFn7Jsf7EKj9ZsLBHw1ZDtI5neAmaBUBzCxaO2cBj5u2FZtlO0l8A3K3ZIaxHsPB8kt5vYn00c/mM0dBj5OmqzAqjOQDUfLBwJ32HbPAh84pCM5seSNJLAHzcWeFJgoVdZRui4YfIo6ucff8uyVY03LW5IawyWPgvW5u77mChV/QIABFfb/kidk0CVKbDth3Huw35dJLeniqiV2/fniDYx1f7vlWTeoUFah6wZQhrqwcqwUKbrtsaH0+6mOQpHsOpbXpCVFPstcJjBZNkmzHv0swQJultAN7iVO375TyafzjtJzcbEaK1w9McQJXBQlvvYmtsfjE5FZUFGAGiSeBpCqDKYKFtmX0qya9Utl0z5gNCNBk8BSA7CtiODNwxjf4trEew8BySNtTNOg0A0aTwtARQTbDQeh3rfawXmn0KQDQ5PC0B9EkAL3LSkAD9X6hWALIJzJ3mNoSdS9I7U3NyuX6zQO+zKOzkEEmaHqDSFdpZM97tOfkSfRvvk0LUDEAFIgseetf85DS+AYgk/bPr1NvRZ2HLg4ektwI4xzmgZCBxYohaBMjWPeenDOcvaIvZ2oez5gAqQ5mtLbb3oa4z+Bb6nTHW1UP92vFIr54vzJ8BcGplGdYKkSRbCXGHSWdh2z1ckp1taGccroxyFt9cznG4iGuDqFmASk9kZxxakNGTckHZBBA1DVCB6BMAXuwhyA4VmGL/+05l6zlsbdt7DJmXU0uXmSQ7JvD2zQ1hiwJJsotRvlVxXO87SU5+heUYDT5Gni5KVhg1D1DphWqCjOYy6RlAYzb0mHn3gWkWABWIaoKMubHwSBpGebGWZNdc2vmUO6a1BhJXFUSSff/yLuOYamvzzwEcVfFr7tWwPXqi6uN2PXWYG0C1Qca1n8RaDlewl3kPRL3gWXo/XBwo1dXWdk/a3jEOnJoVQGUoqw0yvpLkh7oUHvLvTohC8FRANBo8pT3sxLeVJ/M2M4QtiVYTZJzkNPoOiAaBxwHRqPDMFqBS8Jog4yT3YewA0aDwrIBodHhmDVApvG0mtO3PnjTJjTxbIBoFnm0gWgs8pQ06lxY3N4QtCWZBRgPDezdnHvPr+alV2EiaL0DlF2Dbn20bdB40XtHwQ5nOHqAC0SyCjEM1Wkv57AqACkRvBvB2p7hrDzI6yzU7s90EUPNBxtnR4SjwrgGo9EK1Qca8cM4ByU4mkuz++F93ZHELyZX3iW31n+S+sKWZWfNBxkCbNeUq6ekArugo1I0kH1xT8EkBKj1R80HGGkFbtZVkZ3bb2d2r0tUkn1hTh8kBKhB9DMBLnQWfJMjoLFuTZpJsO/ONAB7UUcBLSHqvX781q1YAqg0yfoDkq5psrQYLJeldAF7nKFr1x+wmACq9kAUZLazvvTV4P8kDDlE22kTSQ4uuK9dCF5HuR/I3NYI1A1CBaB+AK50VsAMj7TJeixNl2kYBSccCsB/ZMQ6Brif5GIfdYSZNAVQg8rzsLSphl/Hapby2LDZTUaBcq/56ALb1fOVxLkuinULy4loRmwOoQGQX7T7DWZnPk3y203bXmkl6AIA91isDOBGADV3e1HsJbasA1QYZvUKl3fYKPI2knXFQnZoEqPRCNUHG6oqnwyEFLiJ5Wl89mgWoQFQTZOyrwSb7WUztcSRtu0+v1DRABaKPADijV+3SaZUCNgE5geTNEZnmAFBtkDGix6b4Xld2BNvJcaHUPEClF6oNMoZE2eXOtm3q1ZFha1mfWQBUINoL4Kqurbm7vPEj1bOAqx3udW0kk62+swGoQHQ2gPOGFGAD8roJgF0t+qkx6jorgApElwE4aQwxZp6n3YNxsPyzA7yst/4iSdvEMFqaHUCjKZEZ91IgAeolWzotFEiAkoWQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnT+H0jPT81J3xWWAAAAAElFTkSuQmCC", + "type": "CustomImageTexture", + "w": 40, + }, + "type": "Icon", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Prefix", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "tags": [ + "Prefix", + ], + "type": "Row", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 40, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38077": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38079": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "q", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38082": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "w", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38085": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "e", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38088": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "r", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38091": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "t", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38094": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "y", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38097": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "u", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38100": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "i", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38103": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "o", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38106": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "p", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38109": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "#@!", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 100, + "zIndex": 0, + }, + "Element-38112": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38114": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "a", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38117": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "s", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38120": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "d", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38123": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "f", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38126": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "g", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38129": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "h", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38132": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "j", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38135": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "k", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38138": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "l", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38141": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "@", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38144": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "áöû", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 200, + "zIndex": 0, + }, + "Element-38147": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38149": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "z", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38152": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "x", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38155": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "c", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38158": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "v", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38161": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "b", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38164": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "n", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38167": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "m", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38170": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "_", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38173": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": ".", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38176": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "-", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38179": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "shift", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 300, + "zIndex": 0, + }, + "Element-38182": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38184": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Clear", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 115, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 230, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38187": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Space", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 155, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 310, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38190": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Done", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 115, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 230, + "x": 560, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 790, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 790, + "x": 0, + "y": 400, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 490, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 490, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Lowercase", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Column", + "tag": [Function], + "tags": [ + "Lowercase", + ], + "type": "Column", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Symbols": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38489": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38491": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "1", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38494": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "2", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38497": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "3", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38500": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "4", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38503": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "5", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38506": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "6", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38509": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "7", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38512": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "8", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38515": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "9", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38518": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "0", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38521": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Prefix": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-39215": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": "fff8f7fa", + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "texture": { + "h": 40, + "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAYAAADnRuK4AAAAAXNSR0IArs4c6QAACmpJREFUeF7tnVmoZUcVhv/feY4gBEVEH/KgCCZxCK2itNo4xQQH+kUN0TjEiDGKKBqnaExwBjUaR6KY+NQgiQkOMSYhYEScIopGJOqDE2hHjfP0y4p1Oqdv33v2qr32Prv2Paug6Ye7Vu2qv75TtWvtGohMqUBAAQZ80zUVQAKUEIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypfPsAJJ0NYC92XRHKPB3AAfLv18BuBLAFSR/NKZWswJI0vkA3jCmILsw75sAvIfkR8eo22wAknQSgMvGEGFD8vwxgFeQvGrI+s4CIEnHAPgugHsMWfkNzevDAM4i+Z8h6t88QJLuXOB5yBAVzjxuVeBaAM8ieXNUjzkAdAmA50Yrmv5HKPATACeQ/GNEm6YBkvRyANblZhpHAXsfekpkOGsWIEmPAHA9gDuOo13mWhS4gOSZfdVoEiBJ9wFwA4D7961Y+lUpsK/v7KxVgL4K4ElOCS4l+Uyn7a41k3Q0gMcC2ANgH4CHV1T2OyStx69OzQEk6TwAZztr8lMAx5P8s9N+Y8wk2cTjfQDu66z080h+zml7yKwpgCSdCOByZyX+BuBRJH/otN84M0kWN/s0gOc4Kv8Nko922B1m0gxAkh4I4AcVwcL9JA/UVnjT7CXdHYD9yEzfVUkAjib5uxqNmgCoBAu/CeBhzsJ/kORZTtuNN5Nk70bXAZ0Hy59G8qIawVoB6LMAnu8suE3tH0/y3077NAMg6esAuoaoC0la7M2dJgdI0ssAXOgs8W8BHEvS/s9UoYCkdwN4bYfL5STto7U7TQpQZbDQehzreawHylSpgKSTAVza4XYDyeNqsp4MoB7BwteQfH9N5dL2NgWK3l0vyAdJWhDXnSYBSNLtANh3GO/KwgMk97trlYbbKiDJPpzea5U8JKuYqDIeql0kvQPAG5352ZLMR5L8q9M+zXZQYFcAJOnJAL7sbGWLMFuk2SLOmYIKzB6gEiz8HoB7O7U4meQXnLZp1qGApD8BuOcsh7AewcL3kuyadg4OjSSbhRxH0j4BjJok2Ufga0j+YdQHlcznDlBNsPAa+xpP8r/rEHbxjAKPbRuyHvKFY0Ik6QUALOprPfIT1gHRbAGSdDoA77aSX5Zg4e8nhGfx6FEgWoJn8Zy1QCTplq5vjc3NwnoEC/eQ/HYD8IwC0TbwrA2i2QHUI1h4JskLGoJnUIhWwLMWiGYFkCSLMX2t5WDhlneeLm5Dw5kDntEhkmRhEVvesWNqZgiTdC6AN3W1Svn72oOFkuxF+WcVIQUrai+IKuA5BBHJ453auc1mA1AJFn7Jsf7EKj9ZsLBHw1ZDtI5neAmaBUBzCxaO2cBj5u2FZtlO0l8A3K3ZIaxHsPB8kt5vYn00c/mM0dBj5OmqzAqjOQDUfLBwJ32HbPAh84pCM5seSNJLAHzcWeFJgoVdZRui4YfIo6ucff8uyVY03LW5IawyWPgvW5u77mChV/QIABFfb/kidk0CVKbDth3Huw35dJLeniqiV2/fniDYx1f7vlWTeoUFah6wZQhrqwcqwUKbrtsaH0+6mOQpHsOpbXpCVFPstcJjBZNkmzHv0swQJultAN7iVO375TyafzjtJzcbEaK1w9McQJXBQlvvYmtsfjE5FZUFGAGiSeBpCqDKYKFtmX0qya9Utl0z5gNCNBk8BSA7CtiODNwxjf4trEew8BySNtTNOg0A0aTwtARQTbDQeh3rfawXmn0KQDQ5PC0B9EkAL3LSkAD9X6hWALIJzJ3mNoSdS9I7U3NyuX6zQO+zKOzkEEmaHqDSFdpZM97tOfkSfRvvk0LUDEAFIgseetf85DS+AYgk/bPr1NvRZ2HLg4ektwI4xzmgZCBxYohaBMjWPeenDOcvaIvZ2oez5gAqQ5mtLbb3oa4z+Bb6nTHW1UP92vFIr54vzJ8BcGplGdYKkSRbCXGHSWdh2z1ckp1taGccroxyFt9cznG4iGuDqFmASk9kZxxakNGTckHZBBA1DVCB6BMAXuwhyA4VmGL/+05l6zlsbdt7DJmXU0uXmSQ7JvD2zQ1hiwJJsotRvlVxXO87SU5+heUYDT5Gni5KVhg1D1DphWqCjOYy6RlAYzb0mHn3gWkWABWIaoKMubHwSBpGebGWZNdc2vmUO6a1BhJXFUSSff/yLuOYamvzzwEcVfFr7tWwPXqi6uN2PXWYG0C1Qca1n8RaDlewl3kPRL3gWXo/XBwo1dXWdk/a3jEOnJoVQGUoqw0yvpLkh7oUHvLvTohC8FRANBo8pT3sxLeVJ/M2M4QtiVYTZJzkNPoOiAaBxwHRqPDMFqBS8Jog4yT3YewA0aDwrIBodHhmDVApvG0mtO3PnjTJjTxbIBoFnm0gWgs8pQ06lxY3N4QtCWZBRgPDezdnHvPr+alV2EiaL0DlF2Dbn20bdB40XtHwQ5nOHqAC0SyCjEM1Wkv57AqACkRvBvB2p7hrDzI6yzU7s90EUPNBxtnR4SjwrgGo9EK1Qca8cM4ByU4mkuz++F93ZHELyZX3iW31n+S+sKWZWfNBxkCbNeUq6ekArugo1I0kH1xT8EkBKj1R80HGGkFbtZVkZ3bb2d2r0tUkn1hTh8kBKhB9DMBLnQWfJMjoLFuTZpJsO/ONAB7UUcBLSHqvX781q1YAqg0yfoDkq5psrQYLJeldAF7nKFr1x+wmACq9kAUZLazvvTV4P8kDDlE22kTSQ4uuK9dCF5HuR/I3NYI1A1CBaB+AK50VsAMj7TJeixNl2kYBSccCsB/ZMQ6Brif5GIfdYSZNAVQg8rzsLSphl/Hapby2LDZTUaBcq/56ALb1fOVxLkuinULy4loRmwOoQGQX7T7DWZnPk3y203bXmkl6AIA91isDOBGADV3e1HsJbasA1QYZvUKl3fYKPI2knXFQnZoEqPRCNUHG6oqnwyEFLiJ5Wl89mgWoQFQTZOyrwSb7WUztcSRtu0+v1DRABaKPADijV+3SaZUCNgE5geTNEZnmAFBtkDGix6b4Xld2BNvJcaHUPEClF6oNMoZE2eXOtm3q1ZFha1mfWQBUINoL4Kqurbm7vPEj1bOAqx3udW0kk62+swGoQHQ2gPOGFGAD8roJgF0t+qkx6jorgApElwE4aQwxZp6n3YNxsPyzA7yst/4iSdvEMFqaHUCjKZEZ91IgAeolWzotFEiAkoWQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnT+H0jPT81J3xWWAAAAAElFTkSuQmCC", + "type": "CustomImageTexture", + "w": 40, + }, + "type": "Icon", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Prefix", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "tags": [ + "Prefix", + ], + "type": "Row", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 40, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38524": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38526": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "!", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38529": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "@", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38532": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "#", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38535": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "$", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38538": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "%", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38541": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "^", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38544": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "&", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38547": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "*", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38550": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "(", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38553": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": ")", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38556": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "abc", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 100, + "zIndex": 0, + }, + "Element-38559": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38561": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "{", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38564": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "}", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38567": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "[", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38570": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "]", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38573": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": ";", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38576": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": """, + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38579": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": ",", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38582": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "|", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38585": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "\\", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38588": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "/", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + "Element-38591": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "áöû", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 200, + "zIndex": 0, + }, + "Element-38594": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38596": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "<", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38599": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": ">", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 80, + "y": 0, + "zIndex": 0, + }, + "Element-38602": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "?", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 160, + "y": 0, + "zIndex": 0, + }, + "Element-38605": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "=", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38608": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "\`", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 320, + "y": 0, + "zIndex": 0, + }, + "Element-38611": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "~", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 400, + "y": 0, + "zIndex": 0, + }, + "Element-38614": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "_", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 480, + "y": 0, + "zIndex": 0, + }, + "Element-38617": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": ":", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 560, + "y": 0, + "zIndex": 0, + }, + "Element-38620": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "-", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 640, + "y": 0, + "zIndex": 0, + }, + "Element-38623": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "+", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 35, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 70, + "x": 720, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 790, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 790, + "x": 0, + "y": 300, + "zIndex": 0, + }, + "Element-38626": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-38628": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Clear", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 115, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 230, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-38631": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Space", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 155, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 310, + "x": 240, + "y": 0, + "zIndex": 0, + }, + "Element-38634": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Done", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 115, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 230, + "x": 560, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 790, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 790, + "x": 0, + "y": 400, + "zIndex": 0, + }, }, - "visible": true, - "w": 4, - "x": 0, - "y": 0, - "zIndex": 0, - }, - "HiddenContent": { - "active": false, - "alpha": 0.001, - "attached": true, - "boundsMargin": null, "clipping": false, "color": 4294967295, "enabled": true, "flex": false, "flexItem": false, - "h": 0, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0.5, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "HiddenContent", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "", - "tag": [Function], - "tags": [ - "HiddenContent", - ], - "type": "TextBox", - "visible": true, - "w": 0, - "x": 0, - "y": [Function], - "zIndex": 0, - }, - "TextWrapper": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "clipping": true, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, + "h": 490, "isComponent": undefined, "mount": 0, "mountX": 0, @@ -11780,7 +68778,7 @@ exports[`KeyboardInput renders 1`] = ` "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, - "ref": "TextWrapper", + "ref": "Items", "renderOfScreen": undefined, "renderToTexture": false, "scale": 1, @@ -11789,10 +68787,10 @@ exports[`KeyboardInput renders 1`] = ` "state": undefined, "tag": [Function], "tags": [ - "TextWrapper", + "Items", ], "visible": true, - "w": 1, + "w": 950, "x": 0, "y": 0, "zIndex": 0, @@ -11803,80 +68801,7 @@ exports[`KeyboardInput renders 1`] = ` "enabled": true, "flex": false, "flexItem": false, - "h": 0, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0.5, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Content", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Content", - ], - "visible": true, - "w": 0, - "x": 30, - "y": 50, - "zIndex": 2, - }, - "Eyebrow": { - "active": false, - "alpha": 0.001, - "attached": true, - "boundsMargin": null, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 1, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Eyebrow", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "", - "tag": [Function], - "tags": [ - "Eyebrow", - ], - "type": "TextBox", - "visible": true, - "w": 0, - "x": 30, - "y": -30, - "zIndex": 0, - }, - "HelpText": { - "active": false, - "alpha": 0.001, - "attached": true, - "boundsMargin": null, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, + "h": 490, "hasFinalFocus": false, "hasFocus": false, "isComponent": true, @@ -11886,67 +68811,27 @@ exports[`KeyboardInput renders 1`] = ` "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, - "ref": "HelpText", + "ref": "Symbols", "renderOfScreen": undefined, "renderToTexture": false, "scale": 1, "scaleX": 1, "scaleY": 1, - "state": "", + "state": "Column", "tag": [Function], "tags": [ - "HelpText", + "Symbols", ], - "type": "TextBox", + "type": "Column", "visible": true, - "w": 0, - "x": 30, - "y": 130, + "w": 950, + "x": 0, + "y": 0, "zIndex": 0, }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 100, - "hasFinalFocus": true, - "hasFocus": true, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Input", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "", - "tag": [Function], - "tags": [ - "Input", - ], - "type": "Input", - "visible": true, - "w": 950, - "x": 0, - "y": 0, - "zIndex": 0, - }, - "Keyboard": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Lowercase": { + "Uppercase": { "active": false, - "alpha": 1, + "alpha": 0.001, "attached": true, "boundsMargin": null, "children": { @@ -11956,7 +68841,7 @@ exports[`KeyboardInput renders 1`] = ` "attached": true, "boundsMargin": null, "children": { - "Element-8840": { + "Element-37889": { "active": false, "alpha": 1, "attached": true, @@ -11968,7 +68853,7 @@ exports[`KeyboardInput renders 1`] = ` "attached": true, "boundsMargin": null, "children": { - "Element-8842": { + "Element-37891": { "active": false, "alpha": 1, "attached": true, @@ -12205,7 +69090,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8845": { + "Element-37894": { "active": false, "alpha": 1, "attached": true, @@ -12442,7 +69327,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8848": { + "Element-37897": { "active": false, "alpha": 1, "attached": true, @@ -12679,7 +69564,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8851": { + "Element-37900": { "active": false, "alpha": 1, "attached": true, @@ -12916,7 +69801,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8854": { + "Element-37903": { "active": false, "alpha": 1, "attached": true, @@ -13153,7 +70038,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8857": { + "Element-37906": { "active": false, "alpha": 1, "attached": true, @@ -13390,7 +70275,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8860": { + "Element-37909": { "active": false, "alpha": 1, "attached": true, @@ -13627,7 +70512,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8863": { + "Element-37912": { "active": false, "alpha": 1, "attached": true, @@ -13864,7 +70749,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8866": { + "Element-37915": { "active": false, "alpha": 1, "attached": true, @@ -14101,7 +70986,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8869": { + "Element-37918": { "active": false, "alpha": 1, "attached": true, @@ -14333,351 +71218,12 @@ exports[`KeyboardInput renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 70, - "x": 720, - "y": 0, - "zIndex": 0, - }, - "Element-8872": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Background": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Background", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Background", - ], - "texture": { - "type": "StaticCanvasTexture", - }, - "visible": true, - "w": 0, - "x": 0, - "y": 0, - "zIndex": 0, - }, - "Content": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Prefix": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Items": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Element-9013": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "clipping": false, - "color": "fff8f7fa", - "enabled": true, - "flex": false, - "flexItem": false, - "h": 40, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": null, - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "", - "tag": [Function], - "texture": { - "h": 40, - "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAYAAADnRuK4AAAAAXNSR0IArs4c6QAACmpJREFUeF7tnVmoZUcVhv/feY4gBEVEH/KgCCZxCK2itNo4xQQH+kUN0TjEiDGKKBqnaExwBjUaR6KY+NQgiQkOMSYhYEScIopGJOqDE2hHjfP0y4p1Oqdv33v2qr32Prv2Paug6Ye7Vu2qv75TtWvtGohMqUBAAQZ80zUVQAKUEIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypfPsAJJ0NYC92XRHKPB3AAfLv18BuBLAFSR/NKZWswJI0vkA3jCmILsw75sAvIfkR8eo22wAknQSgMvGEGFD8vwxgFeQvGrI+s4CIEnHAPgugHsMWfkNzevDAM4i+Z8h6t88QJLuXOB5yBAVzjxuVeBaAM8ieXNUjzkAdAmA50Yrmv5HKPATACeQ/GNEm6YBkvRyANblZhpHAXsfekpkOGsWIEmPAHA9gDuOo13mWhS4gOSZfdVoEiBJ9wFwA4D7961Y+lUpsK/v7KxVgL4K4ElOCS4l+Uyn7a41k3Q0gMcC2ANgH4CHV1T2OyStx69OzQEk6TwAZztr8lMAx5P8s9N+Y8wk2cTjfQDu66z080h+zml7yKwpgCSdCOByZyX+BuBRJH/otN84M0kWN/s0gOc4Kv8Nko922B1m0gxAkh4I4AcVwcL9JA/UVnjT7CXdHYD9yEzfVUkAjib5uxqNmgCoBAu/CeBhzsJ/kORZTtuNN5Nk70bXAZ0Hy59G8qIawVoB6LMAnu8suE3tH0/y3077NAMg6esAuoaoC0la7M2dJgdI0ssAXOgs8W8BHEvS/s9UoYCkdwN4bYfL5STto7U7TQpQZbDQehzreawHylSpgKSTAVza4XYDyeNqsp4MoB7BwteQfH9N5dL2NgWK3l0vyAdJWhDXnSYBSNLtANh3GO/KwgMk97trlYbbKiDJPpzea5U8JKuYqDIeql0kvQPAG5352ZLMR5L8q9M+zXZQYFcAJOnJAL7sbGWLMFuk2SLOmYIKzB6gEiz8HoB7O7U4meQXnLZp1qGApD8BuOcsh7AewcL3kuyadg4OjSSbhRxH0j4BjJok2Ufga0j+YdQHlcznDlBNsPAa+xpP8r/rEHbxjAKPbRuyHvKFY0Ik6QUALOprPfIT1gHRbAGSdDoA77aSX5Zg4e8nhGfx6FEgWoJn8Zy1QCTplq5vjc3NwnoEC/eQ/HYD8IwC0TbwrA2i2QHUI1h4JskLGoJnUIhWwLMWiGYFkCSLMX2t5WDhlneeLm5Dw5kDntEhkmRhEVvesWNqZgiTdC6AN3W1Svn72oOFkuxF+WcVIQUrai+IKuA5BBHJ453auc1mA1AJFn7Jsf7EKj9ZsLBHw1ZDtI5neAmaBUBzCxaO2cBj5u2FZtlO0l8A3K3ZIaxHsPB8kt5vYn00c/mM0dBj5OmqzAqjOQDUfLBwJ32HbPAh84pCM5seSNJLAHzcWeFJgoVdZRui4YfIo6ucff8uyVY03LW5IawyWPgvW5u77mChV/QIABFfb/kidk0CVKbDth3Huw35dJLeniqiV2/fniDYx1f7vlWTeoUFah6wZQhrqwcqwUKbrtsaH0+6mOQpHsOpbXpCVFPstcJjBZNkmzHv0swQJultAN7iVO375TyafzjtJzcbEaK1w9McQJXBQlvvYmtsfjE5FZUFGAGiSeBpCqDKYKFtmX0qya9Utl0z5gNCNBk8BSA7CtiODNwxjf4trEew8BySNtTNOg0A0aTwtARQTbDQeh3rfawXmn0KQDQ5PC0B9EkAL3LSkAD9X6hWALIJzJ3mNoSdS9I7U3NyuX6zQO+zKOzkEEmaHqDSFdpZM97tOfkSfRvvk0LUDEAFIgseetf85DS+AYgk/bPr1NvRZ2HLg4ektwI4xzmgZCBxYohaBMjWPeenDOcvaIvZ2oez5gAqQ5mtLbb3oa4z+Bb6nTHW1UP92vFIr54vzJ8BcGplGdYKkSRbCXGHSWdh2z1ckp1taGccroxyFt9cznG4iGuDqFmASk9kZxxakNGTckHZBBA1DVCB6BMAXuwhyA4VmGL/+05l6zlsbdt7DJmXU0uXmSQ7JvD2zQ1hiwJJsotRvlVxXO87SU5+heUYDT5Gni5KVhg1D1DphWqCjOYy6RlAYzb0mHn3gWkWABWIaoKMubHwSBpGebGWZNdc2vmUO6a1BhJXFUSSff/yLuOYamvzzwEcVfFr7tWwPXqi6uN2PXWYG0C1Qca1n8RaDlewl3kPRL3gWXo/XBwo1dXWdk/a3jEOnJoVQGUoqw0yvpLkh7oUHvLvTohC8FRANBo8pT3sxLeVJ/M2M4QtiVYTZJzkNPoOiAaBxwHRqPDMFqBS8Jog4yT3YewA0aDwrIBodHhmDVApvG0mtO3PnjTJjTxbIBoFnm0gWgs8pQ06lxY3N4QtCWZBRgPDezdnHvPr+alV2EiaL0DlF2Dbn20bdB40XtHwQ5nOHqAC0SyCjEM1Wkv57AqACkRvBvB2p7hrDzI6yzU7s90EUPNBxtnR4SjwrgGo9EK1Qca8cM4ByU4mkuz++F93ZHELyZX3iW31n+S+sKWZWfNBxkCbNeUq6ekArugo1I0kH1xT8EkBKj1R80HGGkFbtZVkZ3bb2d2r0tUkn1hTh8kBKhB9DMBLnQWfJMjoLFuTZpJsO/ONAB7UUcBLSHqvX781q1YAqg0yfoDkq5psrQYLJeldAF7nKFr1x+wmACq9kAUZLazvvTV4P8kDDlE22kTSQ4uuK9dCF5HuR/I3NYI1A1CBaB+AK50VsAMj7TJeixNl2kYBSccCsB/ZMQ6Brif5GIfdYSZNAVQg8rzsLSphl/Hapby2LDZTUaBcq/56ALb1fOVxLkuinULy4loRmwOoQGQX7T7DWZnPk3y203bXmkl6AIA91isDOBGADV3e1HsJbasA1QYZvUKl3fYKPI2knXFQnZoEqPRCNUHG6oqnwyEFLiJ5Wl89mgWoQFQTZOyrwSb7WUztcSRtu0+v1DRABaKPADijV+3SaZUCNgE5geTNEZnmAFBtkDGix6b4Xld2BNvJcaHUPEClF6oNMoZE2eXOtm3q1ZFha1mfWQBUINoL4Kqurbm7vPEj1bOAqx3udW0kk62+swGoQHQ2gPOGFGAD8roJgF0t+qkx6jorgApElwE4aQwxZp6n3YNxsPyzA7yst/4iSdvEMFqaHUCjKZEZ91IgAeolWzotFEiAkoWQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnT+H0jPT81J3xWWAAAAAElFTkSuQmCC", - "type": "CustomImageTexture", - "w": 40, - }, - "type": "Icon", - "visible": true, - "w": 40, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 40, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Items", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Items", - ], - "visible": true, - "w": 40, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 40, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0.5, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Prefix", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "Row", - "tag": [Function], - "tags": [ - "Prefix", - ], - "type": "Row", - "visible": true, - "w": 40, - "x": 0, - "y": 0, - "zIndex": 0, - }, - "TextWrapper": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "TextWrapper", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "TextWrapper", - ], - "visible": true, - "w": 0, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 0, - "isComponent": undefined, - "mount": 0.5, - "mountX": 0.5, - "mountY": 0.5, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Content", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Content", - ], - "visible": true, - "w": 40, - "x": 75, - "y": 45, - "zIndex": 2, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": null, - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "", - "tag": [Function], - "type": "Key", - "visible": true, - "w": 150, - "x": 800, + "w": 70, + "x": 720, "y": 0, "zIndex": 0, }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Items", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Items", - ], - "visible": true, - "w": 950, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": null, - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "Row", - "tag": [Function], - "type": "Row", - "visible": true, - "w": 950, - "x": 0, - "y": 0, - "zIndex": 0, - }, - "Element-8875": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Items": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Element-8877": { + "Element-37921": { "active": false, "alpha": 1, "attached": true, @@ -14727,64 +71273,57 @@ exports[`KeyboardInput renders 1`] = ` "attached": true, "boundsMargin": null, "children": { - "TextWrapper": { + "Prefix": { "active": false, "alpha": 1, "attached": true, "boundsMargin": null, "children": { - "Title": { + "Items": { "active": false, - "alpha": 0.001, + "alpha": 1, "attached": true, "boundsMargin": null, "children": { - "Text": { + "Element-38659": { "active": false, "alpha": 1, "attached": true, "boundsMargin": null, "clipping": false, - "color": 4294967295, + "color": "fff8f7fa", "enabled": true, "flex": false, "flexItem": false, - "h": 0, - "isComponent": undefined, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, "mount": 0, "mountX": 0, "mountY": 0, "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, - "ref": "Text", + "ref": null, "renderOfScreen": undefined, "renderToTexture": false, "scale": 1, "scaleX": 1, "scaleY": 1, - "state": undefined, + "state": "", "tag": [Function], - "tags": [ - "Text", - ], "texture": { - "fontFace": "Arial", - "fontSize": 30, - "fontStyle": "500", - "lineHeight": 40, - "maxLines": 1, - "precision": 0.6666666666666666, - "text": "q", - "textBaseline": "bottom", - "textColor": 4294506490, - "type": "TextTexture", - "verticalAlign": "middle", + "h": 40, + "src": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAYAAADnRuK4AAAAAXNSR0IArs4c6QAACmpJREFUeF7tnVmoZUcVhv/feY4gBEVEH/KgCCZxCK2itNo4xQQH+kUN0TjEiDGKKBqnaExwBjUaR6KY+NQgiQkOMSYhYEScIopGJOqDE2hHjfP0y4p1Oqdv33v2qr32Prv2Paug6Ye7Vu2qv75TtWvtGohMqUBAAQZ80zUVQAKUEIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypXMClAyEFEiAQvKlcwKUDIQUSIBC8qVzApQMhBRIgELypfPsAJJ0NYC92XRHKPB3AAfLv18BuBLAFSR/NKZWswJI0vkA3jCmILsw75sAvIfkR8eo22wAknQSgMvGEGFD8vwxgFeQvGrI+s4CIEnHAPgugHsMWfkNzevDAM4i+Z8h6t88QJLuXOB5yBAVzjxuVeBaAM8ieXNUjzkAdAmA50Yrmv5HKPATACeQ/GNEm6YBkvRyANblZhpHAXsfekpkOGsWIEmPAHA9gDuOo13mWhS4gOSZfdVoEiBJ9wFwA4D7961Y+lUpsK/v7KxVgL4K4ElOCS4l+Uyn7a41k3Q0gMcC2ANgH4CHV1T2OyStx69OzQEk6TwAZztr8lMAx5P8s9N+Y8wk2cTjfQDu66z080h+zml7yKwpgCSdCOByZyX+BuBRJH/otN84M0kWN/s0gOc4Kv8Nko922B1m0gxAkh4I4AcVwcL9JA/UVnjT7CXdHYD9yEzfVUkAjib5uxqNmgCoBAu/CeBhzsJ/kORZTtuNN5Nk70bXAZ0Hy59G8qIawVoB6LMAnu8suE3tH0/y3077NAMg6esAuoaoC0la7M2dJgdI0ssAXOgs8W8BHEvS/s9UoYCkdwN4bYfL5STto7U7TQpQZbDQehzreawHylSpgKSTAVza4XYDyeNqsp4MoB7BwteQfH9N5dL2NgWK3l0vyAdJWhDXnSYBSNLtANh3GO/KwgMk97trlYbbKiDJPpzea5U8JKuYqDIeql0kvQPAG5352ZLMR5L8q9M+zXZQYFcAJOnJAL7sbGWLMFuk2SLOmYIKzB6gEiz8HoB7O7U4meQXnLZp1qGApD8BuOcsh7AewcL3kuyadg4OjSSbhRxH0j4BjJok2Ufga0j+YdQHlcznDlBNsPAa+xpP8r/rEHbxjAKPbRuyHvKFY0Ik6QUALOprPfIT1gHRbAGSdDoA77aSX5Zg4e8nhGfx6FEgWoJn8Zy1QCTplq5vjc3NwnoEC/eQ/HYD8IwC0TbwrA2i2QHUI1h4JskLGoJnUIhWwLMWiGYFkCSLMX2t5WDhlneeLm5Dw5kDntEhkmRhEVvesWNqZgiTdC6AN3W1Svn72oOFkuxF+WcVIQUrai+IKuA5BBHJ453auc1mA1AJFn7Jsf7EKj9ZsLBHw1ZDtI5neAmaBUBzCxaO2cBj5u2FZtlO0l8A3K3ZIaxHsPB8kt5vYn00c/mM0dBj5OmqzAqjOQDUfLBwJ32HbPAh84pCM5seSNJLAHzcWeFJgoVdZRui4YfIo6ucff8uyVY03LW5IawyWPgvW5u77mChV/QIABFfb/kidk0CVKbDth3Huw35dJLeniqiV2/fniDYx1f7vlWTeoUFah6wZQhrqwcqwUKbrtsaH0+6mOQpHsOpbXpCVFPstcJjBZNkmzHv0swQJultAN7iVO375TyafzjtJzcbEaK1w9McQJXBQlvvYmtsfjE5FZUFGAGiSeBpCqDKYKFtmX0qya9Utl0z5gNCNBk8BSA7CtiODNwxjf4trEew8BySNtTNOg0A0aTwtARQTbDQeh3rfawXmn0KQDQ5PC0B9EkAL3LSkAD9X6hWALIJzJ3mNoSdS9I7U3NyuX6zQO+zKOzkEEmaHqDSFdpZM97tOfkSfRvvk0LUDEAFIgseetf85DS+AYgk/bPr1NvRZ2HLg4ektwI4xzmgZCBxYohaBMjWPeenDOcvaIvZ2oez5gAqQ5mtLbb3oa4z+Bb6nTHW1UP92vFIr54vzJ8BcGplGdYKkSRbCXGHSWdh2z1ckp1taGccroxyFt9cznG4iGuDqFmASk9kZxxakNGTckHZBBA1DVCB6BMAXuwhyA4VmGL/+05l6zlsbdt7DJmXU0uXmSQ7JvD2zQ1hiwJJsotRvlVxXO87SU5+heUYDT5Gni5KVhg1D1DphWqCjOYy6RlAYzb0mHn3gWkWABWIaoKMubHwSBpGebGWZNdc2vmUO6a1BhJXFUSSff/yLuOYamvzzwEcVfFr7tWwPXqi6uN2PXWYG0C1Qca1n8RaDlewl3kPRL3gWXo/XBwo1dXWdk/a3jEOnJoVQGUoqw0yvpLkh7oUHvLvTohC8FRANBo8pT3sxLeVJ/M2M4QtiVYTZJzkNPoOiAaBxwHRqPDMFqBS8Jog4yT3YewA0aDwrIBodHhmDVApvG0mtO3PnjTJjTxbIBoFnm0gWgs8pQ06lxY3N4QtCWZBRgPDezdnHvPr+alV2EiaL0DlF2Dbn20bdB40XtHwQ5nOHqAC0SyCjEM1Wkv57AqACkRvBvB2p7hrDzI6yzU7s90EUPNBxtnR4SjwrgGo9EK1Qca8cM4ByU4mkuz++F93ZHELyZX3iW31n+S+sKWZWfNBxkCbNeUq6ekArugo1I0kH1xT8EkBKj1R80HGGkFbtZVkZ3bb2d2r0tUkn1hTh8kBKhB9DMBLnQWfJMjoLFuTZpJsO/ONAB7UUcBLSHqvX781q1YAqg0yfoDkq5psrQYLJeldAF7nKFr1x+wmACq9kAUZLazvvTV4P8kDDlE22kTSQ4uuK9dCF5HuR/I3NYI1A1CBaB+AK50VsAMj7TJeixNl2kYBSccCsB/ZMQ6Brif5GIfdYSZNAVQg8rzsLSphl/Hapby2LDZTUaBcq/56ALb1fOVxLkuinULy4loRmwOoQGQX7T7DWZnPk3y203bXmkl6AIA91isDOBGADV3e1HsJbasA1QYZvUKl3fYKPI2knXFQnZoEqPRCNUHG6oqnwyEFLiJ5Wl89mgWoQFQTZOyrwSb7WUztcSRtu0+v1DRABaKPADijV+3SaZUCNgE5geTNEZnmAFBtkDGix6b4Xld2BNvJcaHUPEClF6oNMoZE2eXOtm3q1ZFha1mfWQBUINoL4Kqurbm7vPEj1bOAqx3udW0kk62+swGoQHQ2gPOGFGAD8roJgF0t+qkx6jorgApElwE4aQwxZp6n3YNxsPyzA7yst/4iSdvEMFqaHUCjKZEZ91IgAeolWzotFEiAkoWQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnROgJKBkAIJUEi+dE6AkoGQAglQSL50ToCSgZACCVBIvnT+H0jPT81J3xWWAAAAAElFTkSuQmCC", + "type": "CustomImageTexture", + "w": 40, }, + "type": "Icon", "visible": true, - "w": 0, + "w": 40, "x": 0, - "y": 2, + "y": 0, "zIndex": 0, }, }, @@ -14793,32 +71332,29 @@ exports[`KeyboardInput renders 1`] = ` "enabled": true, "flex": false, "flexItem": false, - "h": 0, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, + "h": 40, + "isComponent": undefined, "mount": 0, "mountX": 0, - "mountY": 0.5, + "mountY": 0, "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, - "ref": "Title", + "ref": "Items", "renderOfScreen": undefined, "renderToTexture": false, "scale": 1, "scaleX": 1, "scaleY": 1, - "state": "", + "state": undefined, "tag": [Function], "tags": [ - "Title", + "Items", ], - "type": "TextBox", "visible": true, - "w": 0, + "w": 40, "x": 0, - "y": [Function], + "y": 0, "zIndex": 0, }, }, @@ -14827,11 +71363,49 @@ exports[`KeyboardInput renders 1`] = ` "enabled": true, "flex": false, "flexItem": false, + "h": 40, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Prefix", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "tags": [ + "Prefix", + ], + "type": "Row", + "visible": true, + "w": 40, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, "h": 0, "isComponent": undefined, "mount": 0, "mountX": 0, - "mountY": 0.5, + "mountY": 0, "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, @@ -14878,8 +71452,8 @@ exports[`KeyboardInput renders 1`] = ` "Content", ], "visible": true, - "w": 0, - "x": 35, + "w": 40, + "x": 75, "y": 45, "zIndex": 2, }, @@ -14909,12 +71483,86 @@ exports[`KeyboardInput renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 70, - "x": 0, + "w": 150, + "x": 800, "y": 0, "zIndex": 0, }, - "Element-8880": { + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Element-37924": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-37926": { "active": false, "alpha": 1, "attached": true, @@ -15012,7 +71660,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "w", + "text": "Q", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -15147,11 +71795,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 80, + "x": 0, "y": 0, "zIndex": 0, }, - "Element-8883": { + "Element-37929": { "active": false, "alpha": 1, "attached": true, @@ -15249,7 +71897,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "e", + "text": "W", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -15384,11 +72032,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 160, + "x": 80, "y": 0, "zIndex": 0, }, - "Element-8886": { + "Element-37932": { "active": false, "alpha": 1, "attached": true, @@ -15486,7 +72134,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "r", + "text": "E", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -15621,11 +72269,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 240, + "x": 160, "y": 0, "zIndex": 0, }, - "Element-8889": { + "Element-37935": { "active": false, "alpha": 1, "attached": true, @@ -15723,7 +72371,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "t", + "text": "R", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -15858,11 +72506,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 320, + "x": 240, "y": 0, "zIndex": 0, }, - "Element-8892": { + "Element-37938": { "active": false, "alpha": 1, "attached": true, @@ -15960,7 +72608,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "y", + "text": "T", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -16095,11 +72743,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 400, + "x": 320, "y": 0, "zIndex": 0, }, - "Element-8895": { + "Element-37941": { "active": false, "alpha": 1, "attached": true, @@ -16197,7 +72845,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "u", + "text": "Y", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -16332,11 +72980,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 480, + "x": 400, "y": 0, "zIndex": 0, }, - "Element-8898": { + "Element-37944": { "active": false, "alpha": 1, "attached": true, @@ -16434,7 +73082,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "i", + "text": "U", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -16569,11 +73217,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 560, + "x": 480, "y": 0, "zIndex": 0, }, - "Element-8901": { + "Element-37947": { "active": false, "alpha": 1, "attached": true, @@ -16671,7 +73319,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "o", + "text": "I", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -16806,11 +73454,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 640, + "x": 560, "y": 0, "zIndex": 0, }, - "Element-8904": { + "Element-37950": { "active": false, "alpha": 1, "attached": true, @@ -16908,7 +73556,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "p", + "text": "O", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -17043,11 +73691,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 720, + "x": 640, "y": 0, "zIndex": 0, }, - "Element-8907": { + "Element-37953": { "active": false, "alpha": 1, "attached": true, @@ -17145,7 +73793,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "#@!", + "text": "P", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -17249,7 +73897,7 @@ exports[`KeyboardInput renders 1`] = ` ], "visible": true, "w": 0, - "x": 75, + "x": 35, "y": 45, "zIndex": 2, }, @@ -17279,86 +73927,12 @@ exports[`KeyboardInput renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 150, - "x": 800, + "w": 70, + "x": 720, "y": 0, "zIndex": 0, }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Items", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Items", - ], - "visible": true, - "w": 950, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": null, - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "Row", - "tag": [Function], - "type": "Row", - "visible": true, - "w": 950, - "x": 0, - "y": 100, - "zIndex": 0, - }, - "Element-8910": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Items": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Element-8912": { + "Element-37956": { "active": false, "alpha": 1, "attached": true, @@ -17456,7 +74030,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "a", + "text": "#@!", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -17560,7 +74134,7 @@ exports[`KeyboardInput renders 1`] = ` ], "visible": true, "w": 0, - "x": 35, + "x": 75, "y": 45, "zIndex": 2, }, @@ -17590,12 +74164,86 @@ exports[`KeyboardInput renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 70, - "x": 0, + "w": 150, + "x": 800, "y": 0, "zIndex": 0, }, - "Element-8915": { + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 100, + "zIndex": 0, + }, + "Element-37959": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-37961": { "active": false, "alpha": 1, "attached": true, @@ -17693,7 +74341,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "s", + "text": "A", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -17828,11 +74476,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 80, + "x": 0, "y": 0, "zIndex": 0, }, - "Element-8918": { + "Element-37964": { "active": false, "alpha": 1, "attached": true, @@ -17930,7 +74578,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "d", + "text": "S", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -18065,11 +74713,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 160, + "x": 80, "y": 0, "zIndex": 0, }, - "Element-8921": { + "Element-37967": { "active": false, "alpha": 1, "attached": true, @@ -18167,7 +74815,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "f", + "text": "D", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -18302,11 +74950,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 240, + "x": 160, "y": 0, "zIndex": 0, }, - "Element-8924": { + "Element-37970": { "active": false, "alpha": 1, "attached": true, @@ -18404,7 +75052,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "g", + "text": "F", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -18539,11 +75187,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 320, + "x": 240, "y": 0, "zIndex": 0, }, - "Element-8927": { + "Element-37973": { "active": false, "alpha": 1, "attached": true, @@ -18641,7 +75289,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "h", + "text": "G", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -18776,11 +75424,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 400, + "x": 320, "y": 0, "zIndex": 0, }, - "Element-8930": { + "Element-37976": { "active": false, "alpha": 1, "attached": true, @@ -18878,7 +75526,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "j", + "text": "H", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -19013,11 +75661,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 480, + "x": 400, "y": 0, "zIndex": 0, }, - "Element-8933": { + "Element-37979": { "active": false, "alpha": 1, "attached": true, @@ -19115,7 +75763,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "k", + "text": "J", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -19250,11 +75898,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 560, + "x": 480, "y": 0, "zIndex": 0, }, - "Element-8936": { + "Element-37982": { "active": false, "alpha": 1, "attached": true, @@ -19352,7 +76000,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "l", + "text": "K", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -19487,11 +76135,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 640, + "x": 560, "y": 0, "zIndex": 0, }, - "Element-8939": { + "Element-37985": { "active": false, "alpha": 1, "attached": true, @@ -19589,7 +76237,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "@", + "text": "L", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -19724,11 +76372,11 @@ exports[`KeyboardInput renders 1`] = ` "type": "Key", "visible": true, "w": 70, - "x": 720, + "x": 640, "y": 0, "zIndex": 0, }, - "Element-8942": { + "Element-37988": { "active": false, "alpha": 1, "attached": true, @@ -19826,7 +76474,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "áöû", + "text": "@", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -19930,7 +76578,7 @@ exports[`KeyboardInput renders 1`] = ` ], "visible": true, "w": 0, - "x": 75, + "x": 35, "y": 45, "zIndex": 2, }, @@ -19960,86 +76608,12 @@ exports[`KeyboardInput renders 1`] = ` "tag": [Function], "type": "Key", "visible": true, - "w": 150, - "x": 800, + "w": 70, + "x": 720, "y": 0, "zIndex": 0, }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "isComponent": undefined, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": "Items", - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": undefined, - "tag": [Function], - "tags": [ - "Items", - ], - "visible": true, - "w": 950, - "x": 0, - "y": 0, - "zIndex": 0, - }, - }, - "clipping": false, - "color": 4294967295, - "enabled": true, - "flex": false, - "flexItem": false, - "h": 90, - "hasFinalFocus": false, - "hasFocus": false, - "isComponent": true, - "mount": 0, - "mountX": 0, - "mountY": 0, - "pivot": 0.5, - "pivotX": 0.5, - "pivotY": 0.5, - "ref": null, - "renderOfScreen": undefined, - "renderToTexture": false, - "scale": 1, - "scaleX": 1, - "scaleY": 1, - "state": "Row", - "tag": [Function], - "type": "Row", - "visible": true, - "w": 950, - "x": 0, - "y": 200, - "zIndex": 0, - }, - "Element-8945": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Items": { - "active": false, - "alpha": 1, - "attached": true, - "boundsMargin": null, - "children": { - "Element-8947": { + "Element-37991": { "active": false, "alpha": 1, "attached": true, @@ -20137,7 +76711,318 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "z", + "text": "áöû", + "textBaseline": "bottom", + "textColor": 4294506490, + "type": "TextTexture", + "verticalAlign": "middle", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 2, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Title", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "tags": [ + "Title", + ], + "type": "TextBox", + "visible": true, + "w": 0, + "x": 0, + "y": [Function], + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "TextWrapper", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "TextWrapper", + ], + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0.5, + "mountX": 0.5, + "mountY": 0.5, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Content", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Content", + ], + "visible": true, + "w": 0, + "x": 75, + "y": 45, + "zIndex": 2, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "", + "tag": [Function], + "type": "Key", + "visible": true, + "w": 150, + "x": 800, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Items", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Items", + ], + "visible": true, + "w": 950, + "x": 0, + "y": 0, + "zIndex": 0, + }, + }, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 90, + "hasFinalFocus": false, + "hasFocus": false, + "isComponent": true, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": null, + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": "Row", + "tag": [Function], + "type": "Row", + "visible": true, + "w": 950, + "x": 0, + "y": 200, + "zIndex": 0, + }, + "Element-37994": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Items": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Element-37996": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Background": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Background", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Background", + ], + "texture": { + "type": "StaticCanvasTexture", + }, + "visible": true, + "w": 0, + "x": 0, + "y": 0, + "zIndex": 0, + }, + "Content": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "TextWrapper": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "children": { + "Title": { + "active": false, + "alpha": 0.001, + "attached": true, + "boundsMargin": null, + "children": { + "Text": { + "active": false, + "alpha": 1, + "attached": true, + "boundsMargin": null, + "clipping": false, + "color": 4294967295, + "enabled": true, + "flex": false, + "flexItem": false, + "h": 0, + "isComponent": undefined, + "mount": 0, + "mountX": 0, + "mountY": 0, + "pivot": 0.5, + "pivotX": 0.5, + "pivotY": 0.5, + "ref": "Text", + "renderOfScreen": undefined, + "renderToTexture": false, + "scale": 1, + "scaleX": 1, + "scaleY": 1, + "state": undefined, + "tag": [Function], + "tags": [ + "Text", + ], + "texture": { + "fontFace": "Arial", + "fontSize": 30, + "fontStyle": "500", + "lineHeight": 40, + "maxLines": 1, + "precision": 0.6666666666666666, + "text": "Z", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -20276,7 +77161,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8950": { + "Element-37999": { "active": false, "alpha": 1, "attached": true, @@ -20374,7 +77259,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "x", + "text": "X", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -20513,7 +77398,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8953": { + "Element-38002": { "active": false, "alpha": 1, "attached": true, @@ -20611,7 +77496,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "c", + "text": "C", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -20750,7 +77635,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8956": { + "Element-38005": { "active": false, "alpha": 1, "attached": true, @@ -20848,7 +77733,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "v", + "text": "V", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -20987,7 +77872,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8959": { + "Element-38008": { "active": false, "alpha": 1, "attached": true, @@ -21085,7 +77970,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "b", + "text": "B", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -21224,7 +78109,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8962": { + "Element-38011": { "active": false, "alpha": 1, "attached": true, @@ -21322,7 +78207,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "n", + "text": "N", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -21461,7 +78346,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8965": { + "Element-38014": { "active": false, "alpha": 1, "attached": true, @@ -21559,7 +78444,7 @@ exports[`KeyboardInput renders 1`] = ` "lineHeight": 40, "maxLines": 1, "precision": 0.6666666666666666, - "text": "m", + "text": "M", "textBaseline": "bottom", "textColor": 4294506490, "type": "TextTexture", @@ -21698,7 +78583,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8968": { + "Element-38017": { "active": false, "alpha": 1, "attached": true, @@ -21935,7 +78820,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8971": { + "Element-38020": { "active": false, "alpha": 1, "attached": true, @@ -22172,7 +79057,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8974": { + "Element-38023": { "active": false, "alpha": 1, "attached": true, @@ -22409,7 +79294,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8977": { + "Element-38026": { "active": false, "alpha": 1, "attached": true, @@ -22708,7 +79593,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 300, "zIndex": 0, }, - "Element-8980": { + "Element-38029": { "active": false, "alpha": 1, "attached": true, @@ -22720,7 +79605,7 @@ exports[`KeyboardInput renders 1`] = ` "attached": true, "boundsMargin": null, "children": { - "Element-8982": { + "Element-38031": { "active": false, "alpha": 1, "attached": true, @@ -22957,7 +79842,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8985": { + "Element-38034": { "active": false, "alpha": 1, "attached": true, @@ -23194,7 +80079,7 @@ exports[`KeyboardInput renders 1`] = ` "y": 0, "zIndex": 0, }, - "Element-8988": { + "Element-38037": { "active": false, "alpha": 1, "attached": true, @@ -23540,7 +80425,7 @@ exports[`KeyboardInput renders 1`] = ` "pivot": 0.5, "pivotX": 0.5, "pivotY": 0.5, - "ref": "Lowercase", + "ref": "Uppercase", "renderOfScreen": undefined, "renderToTexture": false, "scale": 1, @@ -23549,7 +80434,7 @@ exports[`KeyboardInput renders 1`] = ` "state": "Column", "tag": [Function], "tags": [ - "Lowercase", + "Uppercase", ], "type": "Column", "visible": true,