diff options
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativetextedit')
109 files changed, 21130 insertions, 5838 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml index c987568..17709ba 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml @@ -1,4 +1,5 @@ import QtQuick 1.0 +import "../shared" 1.0 Item { id:lineedit @@ -7,16 +8,16 @@ Item { width: 240 + 11 //Should be set manually in most cases height: textEdit.height + 11 - Rectangle{ + Rectangle { color: 'lightsteelblue' anchors.fill: parent } clip: true Component.onCompleted: textEdit.cursorPosition = 0; - TextEdit{ + TestTextEdit { id:textEdit - cursorDelegate: Item{ - Rectangle{ + cursorDelegate: Item { + Rectangle { visible: parent.parent.focus color: "#009BCE" height: 13 @@ -36,16 +37,18 @@ Item { if(cursorRectangle.y < topMargin - textEdit.y){//Cursor went off the front textEdit.y = topMargin - Math.max(0, cursorRectangle.y); }else if(cursorRectangle.y > parent.height - topMargin - bottomMargin - textEdit.y){//Cursor went off the end - textEdit.y = topMargin - Math.max(0, cursorRectangle.y - (parent.height - topMargin - bottomMargin)) - cursorRectangle.height; + textEdit.y = topMargin - Math.max(0, cursorRectangle.y - (parent.height - topMargin - bottomMargin) + cursorRectangle.height); } } + onHeightChanged: y=topMargin//reset scroll text:"" horizontalAlignment: TextInput.AlignLeft wrapMode: TextEdit.WordWrap font.pixelSize:15 + selectionColor: 'steelblue' } - MouseArea{ + MouseArea { //Implements all line edit mouse handling id: mainMouseArea anchors.fill: parent; diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml index c0eeb82..1e0f71a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml @@ -1,19 +1,20 @@ import QtQuick 1.0 - Rectangle { +import "../shared" 1.0 + +Rectangle { resources: [ Component { id: cursorA Item { id: cPage; - x: Behavior { NumberAnimation { } } - y: Behavior { NumberAnimation { } } - height: Behavior { NumberAnimation { duration: 200 } } + Behavior on x { NumberAnimation { } } + Behavior on y { NumberAnimation { } } + Behavior on height { NumberAnimation { duration: 200 } } Rectangle { id: cRectangle; color: "black"; y: 1; width: 1; height: parent.height-2; Rectangle { id:top; color: "black"; width: 3; height: 1; x: -1; y:0} Rectangle { id:bottom; color: "black"; width: 3; height: 1; x: -1; anchors.bottom: parent.bottom;} - opacity: 1 - opacity: SequentialAnimation { running: cPage.parent.focus == true; loops: Animation.Infinite; - NumberAnimation { properties: "opacity"; to: 1; duration: 500; easing.type: "InQuad"} - NumberAnimation { properties: "opacity"; to: 0; duration: 500; easing.type: "OutQuad"} - } + } + SequentialAnimation on opacity { running: true; loops: Animation.Infinite; + NumberAnimation { to: 0; duration: 500; easing.type: "OutQuad"} + NumberAnimation { to: 1; duration: 500; easing.type: "InQuad"} } width: 1; } @@ -22,7 +23,7 @@ import QtQuick 1.0 width: 400 height: 200 color: "white" - TextEdit { id: mainText + TestTextEdit { id: mainText text: "Hello World" cursorDelegate: cursorA focus: true diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.0.png Binary files differindex 464a578..adbdfa7 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.0.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.1.png Binary files differindex 9beb1ca..d3fbdc6 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.1.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.2.png Binary files differindex 001be30..9a96d46 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.2.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.3.png Binary files differindex fc3e4b3..2026aca 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.3.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.4.png Binary files differindex 24f43e6..c435029 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.4.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.5.png Binary files differindex 001223b..70f273d 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.5.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.6.png Binary files differindex 7126e07..80b960c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.6.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.6.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.7.png Binary files differindex f0bea88..7247277 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.7.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.7.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.8.png Binary files differindex 4381b8d..af5a996 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.8.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.8.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.9.png Binary files differnew file mode 100644 index 0000000..b254164 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.9.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml index 1241d14..0f3bd2c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml @@ -6,3550 +6,1494 @@ VisualTest { } Frame { msec: 16 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + image: "cursorDelegate.0.png" } Frame { msec: 32 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "b742ebe441dde1f30dab6d19954a9e8c" } Frame { msec: 48 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "d3be942cfb93c4a5d5aa906410125d02" } Frame { msec: 64 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "062574e74354b104db2ee6d3c3af5802" } Frame { msec: 80 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "575dd420067e4ebe5733eb4e35a447ab" } Frame { msec: 96 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "4213f35c4cd233a08d98ba0380b7ab0a" } Frame { msec: 112 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "505e740aacf4ca7e6ad24367ddad8678" } Frame { msec: 128 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "007e76fb247e11a442802c7cfb4e6a24" } Frame { msec: 144 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "5cf6cb0afffb791da1c4d0fe00cf6326" } Frame { msec: 160 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "aff4097bd39c87c5d1459d99f314dade" } Frame { msec: 176 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "009dc0c6ff28333ac2fdfa3d79ad2fd6" } Frame { msec: 192 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "4bf8e82220ea0d0c4298d5374e149de2" } Frame { msec: 208 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "938a6eea45c4412e847a8700172d80ac" } Frame { msec: 224 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "6502416042993d05dd514119512ed61f" } Frame { msec: 240 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "5d6702b9475e69bda2ed38f6e2d583d9" } Frame { msec: 256 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "8e5fdc8e6cc38089d1e8ff5e91a5c894" } Frame { msec: 272 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "c0249d07bcf25af69bf929b4d5ac00a3" } Frame { msec: 288 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "efe333c2b8cccea0bd7135484049db06" } Frame { msec: 304 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "57e49e9094691a204f7507b0231352b3" } Frame { msec: 320 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "d0a45bd3cfc5e4e6f9a48534c768daba" } Frame { msec: 336 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "6960ab817c67a61af31cc187efe65016" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 352 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "3b0d483ff765f36a196411967b6dfd70" } Frame { msec: 368 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "559713749d65246b185c0c91eb7ad39e" } Frame { msec: 384 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "9aea32722fd4f8b0cde3c06c61cecde6" } Frame { msec: 400 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "25dfa32ce92b6044f5ea68411ab5de5b" } Frame { msec: 416 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "dab689ed2bbe663df309548e615e8621" } Frame { msec: 432 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "26ad44cef380ff9f64c12180fb54c695" + } + Key { + type: 6 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 448 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "5e8bbcd46b5692e66963387b80971e90" } Frame { msec: 464 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "747df5357daa951fbedeadf909f9dbf3" } Frame { msec: 480 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 496 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "af99069cdddfa9d099fbe25ba586e138" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 512 - hash: "e0366dbd264ca453f5dad3a7966f17a2" + hash: "cb6ca047657a99dbbb037c1c45b40866" } Frame { msec: 528 - hash: "84cad44c4cccf8a0942865719d05c2eb" + hash: "cb6ca047657a99dbbb037c1c45b40866" } Frame { msec: 544 - hash: "60d24c160adb8e074c04d4f40bf140a8" + hash: "cb6ca047657a99dbbb037c1c45b40866" } Frame { msec: 560 - hash: "ff5fac70804eb01da28c2988aba520a4" + hash: "cb6ca047657a99dbbb037c1c45b40866" } Frame { msec: 576 - hash: "a6bdf56b4f8783969935488e1955e59c" + hash: "1684711d2c492de2093357168b8726c6" } Frame { msec: 592 - hash: "d0ad97647c5092a64426187406ec5316" + hash: "6d960ca89faec6e3d81f78911b9b5ecf" } Frame { msec: 608 - hash: "77e7a4a4a9c38cd7b5ef734d39089e3f" + hash: "1fdd91b57f5832d5c4d797d150892156" } Frame { msec: 624 - hash: "0285340a2e03568810a76d840369f5c8" + hash: "4e0f1ec936cacf3ab6fbc7899a6bc92d" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 640 - hash: "6ba6a1a05c5a9ec0d2897b3454affd09" + hash: "9e67145b58051fd7dc4a18ee0e6a72ad" } Frame { msec: 656 - hash: "3caa36cc3857803248d12ec09ea357df" + hash: "14dfb4b356ec851275ddd8e93f04e2d2" } Frame { msec: 672 - hash: "500f7b72acc877fc1662e4f4ceb090e1" + hash: "e9b8f691ad62d10877aacb94f98ea308" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 688 - hash: "aadc71923926885ccce87e6be1c742d7" + hash: "a44b5f63ec1f98b6bc34e95214c9d79e" } Frame { msec: 704 - hash: "9b7503189ecf2999934716f227469463" + hash: "6bc0e035c90b74de024d379388fd7014" } Frame { msec: 720 - hash: "874296e182abe96e58f9c0463a0f32c9" + hash: "61d8f417f7ca5cba2e98a7a7427ea635" } Frame { msec: 736 - hash: "4262c79b6844d4d62aa9fb02c335fb95" + hash: "f50adb10f55bcd4c2eb0955f6e1ff78e" } Frame { msec: 752 - hash: "a5862eaf12cc342054fd3f8d1f4c91c3" + hash: "9e160aefac79a9804f6cb8622e45ba71" } Frame { msec: 768 - hash: "0034ef8851c9810ed5d50496aea367da" + hash: "6555a0bd60dbbad66283fe37b2f0c362" } Frame { msec: 784 - hash: "24cebf60ade86469a154abaa64f3b40d" + hash: "0cacc38d86ebf497d31b01556b8a5924" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 800 - hash: "1100ef4e2db234ea77ff4c70df6bfbe7" + hash: "b2fe1d5cb5e0a5f07d84ff7a494ae07a" } Frame { msec: 816 - hash: "c40d8d42a55dde7dbbcae2dda9aaccb8" + hash: "2c6dbd777bba27b481a8a6ef34d213f9" } Frame { msec: 832 - hash: "5c1000fdc279742cbe46987045c0a92b" + hash: "989e53620edc6b9b0990545459e7f787" } Frame { msec: 848 - hash: "bcef4a0ff72330f05f2bf5042e414fde" + hash: "a89686a7802da3fd07a265a5814255f4" } Frame { msec: 864 - hash: "228551c38b567f1550b44f9dac08786b" + hash: "9f707497eb0c224c8b0a3bba1533217a" } Frame { msec: 880 - hash: "531c5ca6992c4a12927c61e22c02dd6b" + hash: "29df155c0b75de8e1bd6361372a51797" } Frame { msec: 896 - hash: "127cc30967f95cb88f4238e0b33c741d" + hash: "fb7cbeb1e3689cc38acf7a02d671a955" } Frame { msec: 912 - hash: "3c3fb1d8dbe7443f80550a30ada7f120" + hash: "9045ada282ec37b1681cef89dfcc8f67" } Frame { msec: 928 - hash: "edca065d42bf9b63a79d1e97d1a1eed0" + hash: "b3816b225eaf5ab49bb31f86ecdd52cb" } Frame { msec: 944 - hash: "1e4424f1f40bfce3205e1d1401ab0dcf" + hash: "0956fccb8e1bf2c218a9e39947846aaa" } Frame { msec: 960 - image: "cursorDelegate.0.png" + hash: "01f4ba2e0b4eb018c620efa5e92ec9fe" } Frame { msec: 976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + image: "cursorDelegate.1.png" } Frame { msec: 992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c19ec2d067d30a6d42056c9799b0c0c3" } Frame { msec: 1008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "43a9d066887a89372136619ae8eec100" } Frame { msec: 1024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "43a9d066887a89372136619ae8eec100" + } + Key { + type: 7 + key: 16777249 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c19ec2d067d30a6d42056c9799b0c0c3" } Frame { msec: 1056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8303d8b19e6e5b249aaf2ffbb6d29f91" } Frame { msec: 1072 - hash: "90ac5ad7ce23786fe838426605e737e1" + hash: "01f4ba2e0b4eb018c620efa5e92ec9fe" } Frame { msec: 1088 - hash: "1e4424f1f40bfce3205e1d1401ab0dcf" + hash: "0956fccb8e1bf2c218a9e39947846aaa" } Frame { msec: 1104 - hash: "edca065d42bf9b63a79d1e97d1a1eed0" + hash: "b3816b225eaf5ab49bb31f86ecdd52cb" } Frame { msec: 1120 - hash: "3c3fb1d8dbe7443f80550a30ada7f120" + hash: "9045ada282ec37b1681cef89dfcc8f67" } Frame { msec: 1136 - hash: "127cc30967f95cb88f4238e0b33c741d" + hash: "fb7cbeb1e3689cc38acf7a02d671a955" } Frame { msec: 1152 - hash: "531c5ca6992c4a12927c61e22c02dd6b" + hash: "29df155c0b75de8e1bd6361372a51797" } Frame { msec: 1168 - hash: "228551c38b567f1550b44f9dac08786b" + hash: "9f707497eb0c224c8b0a3bba1533217a" + } + Key { + type: 6 + key: 16777234 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 1184 - hash: "bcef4a0ff72330f05f2bf5042e414fde" + hash: "9f712a688504fff9719b38c067b32c50" } Frame { msec: 1200 - hash: "5c1000fdc279742cbe46987045c0a92b" + hash: "24f1467e3be5f4d0509800bef97f4401" } Frame { msec: 1216 - hash: "c40d8d42a55dde7dbbcae2dda9aaccb8" + hash: "d56e5fd86addad3bc53417b82ff68829" } Frame { msec: 1232 - hash: "1100ef4e2db234ea77ff4c70df6bfbe7" + hash: "f1c60934ef284840e61fd46c758dd14b" } Frame { msec: 1248 - hash: "24cebf60ade86469a154abaa64f3b40d" + hash: "7be9fc54278572116f9bd9be8f6994a4" } Frame { msec: 1264 - hash: "0034ef8851c9810ed5d50496aea367da" + hash: "0e0ea7ca1b8479d62ae81fb53a1ec264" } Frame { msec: 1280 - hash: "a5862eaf12cc342054fd3f8d1f4c91c3" + hash: "f8b19dbaeec469896a081687d80a2ac4" + } + Key { + type: 7 + key: 16777234 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 1296 - hash: "4262c79b6844d4d62aa9fb02c335fb95" + hash: "a28665925ec121a2bf01733e0a20e18b" } Frame { msec: 1312 - hash: "874296e182abe96e58f9c0463a0f32c9" + hash: "baa0c601f3d84e344847dcb7f3bd18cf" } Frame { msec: 1328 - hash: "9b7503189ecf2999934716f227469463" + hash: "a80d59a1e5af45bc799c19200a3c44ec" } Frame { msec: 1344 - hash: "aadc71923926885ccce87e6be1c742d7" + hash: "2a6f833e2fd2930c8ec49016809d8cf6" } Frame { msec: 1360 - hash: "500f7b72acc877fc1662e4f4ceb090e1" + hash: "efdc2daad00aaec2c39541261d6d1a98" } Frame { msec: 1376 - hash: "3caa36cc3857803248d12ec09ea357df" - } - Key { - type: 6 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "65b75f2a074d4ac5d84fb762d1762231" } Frame { msec: 1392 - hash: "6ba6a1a05c5a9ec0d2897b3454affd09" + hash: "2a170e51a83e902d2699501877225ee3" } Frame { msec: 1408 - hash: "0285340a2e03568810a76d840369f5c8" + hash: "1e4c78e279ff4ab7a875e4d67f68f8ca" } Frame { msec: 1424 - hash: "77e7a4a4a9c38cd7b5ef734d39089e3f" + hash: "fd515cf3ec7b987e0e36c02f1da5b8a7" } Frame { msec: 1440 - hash: "d0ad97647c5092a64426187406ec5316" + hash: "54126910ea7a303ea3e7726309d8bf39" } Frame { msec: 1456 - hash: "a6bdf56b4f8783969935488e1955e59c" - } - Key { - type: 7 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "89263867df0cfa623f80e1578532d98d" } Frame { msec: 1472 - hash: "ff5fac70804eb01da28c2988aba520a4" + hash: "1bf04aafab1177182eec9a0ff459cd7b" } Frame { msec: 1488 - hash: "60d24c160adb8e074c04d4f40bf140a8" + hash: "1bf04aafab1177182eec9a0ff459cd7b" } Frame { msec: 1504 - hash: "84cad44c4cccf8a0942865719d05c2eb" + hash: "1bf04aafab1177182eec9a0ff459cd7b" } Frame { msec: 1520 - hash: "907c6363d1e524f391d001944febe1ac" + hash: "1bf04aafab1177182eec9a0ff459cd7b" } Frame { msec: 1536 - hash: "313a06d40274e46453342e66236f09f8" + hash: "1bf04aafab1177182eec9a0ff459cd7b" } Frame { msec: 1552 - hash: "0d410f7bfa3e4c58948a8f1e7c7695c4" + hash: "1bf04aafab1177182eec9a0ff459cd7b" } Frame { msec: 1568 - hash: "a9911e076af337fe30e322f03d84a528" + hash: "c824a8bbf60514c20713b1fa583451b2" } Frame { msec: 1584 - hash: "4a8efcc341bba9ba621ce0f785a75432" + hash: "f6282cd20d7f3f64415a0a24df578964" } Frame { msec: 1600 - hash: "479f192c8cf7b8e4407655382402700f" + hash: "a4633c7dc825f20a7ada2079712f7b5e" } Frame { msec: 1616 - hash: "63dc16e66def35abba5159d5650f165d" + hash: "240c839fc986573523b30567afe05623" } Frame { msec: 1632 - hash: "26e88aae512304c28d425c311febce1b" + hash: "9e3098ea355a80e7e439f3cdecd15b77" + } + Frame { + msec: 1648 + hash: "d8ec7fd807f345509703f4ecf94b583d" } Key { type: 6 - key: 16777233 - modifiers: 0 + key: 16777249 + modifiers: 33554432 text: "" autorep: false count: 1 } Frame { - msec: 1648 - hash: "8dca7a7912ddaa853dff9c09882082b1" - } - Frame { msec: 1664 - hash: "5c3ebee155e29a0ba4a45706dd87396a" + hash: "5b6e0bedeca1784610081762850813a1" } Frame { msec: 1680 - hash: "29a517a66867f6f527c6db5bb5651f92" + hash: "13a596d7aefa3c8ce61660dd5ce27627" } Frame { msec: 1696 - hash: "a4fde31f55f866224eca2b51586b601f" + hash: "295bbee587f2fdbadab7aa4e3900b6e0" } Frame { msec: 1712 - hash: "9c9c7fb9fb8aab8c24f2eb03df791a00" + hash: "645da4001b1489b12e0bb5dd1b5c114b" } Frame { msec: 1728 - hash: "dd972e37166d1186a717a956343a7758" - } - Key { - type: 7 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "8e7e4f5b8eb437ab92e466b1d79aee01" } Frame { msec: 1744 - hash: "1af5e24651ef422ff93dab7bd2a8f832" + hash: "1a7ec33aa8a19a36a7fc99c3040e427a" } Frame { msec: 1760 - hash: "885473be4e44bb1f4b014f9b3d4d2e74" + hash: "85f6c7d9f86910e7cceeaf9efc375355" } Frame { msec: 1776 - hash: "1f6e0407392322c34567caaecae5b449" + hash: "8e54b0699d681cfbfc3b605b010c6b76" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1792 - hash: "dcae85a4b05c450b6b1619f9fd7e17b0" + hash: "5d6702b9475e69bda2ed38f6e2d583d9" } Frame { msec: 1808 - hash: "3b872e5030e34edf678ac2547df48699" + hash: "6502416042993d05dd514119512ed61f" } Frame { msec: 1824 - hash: "5d76b324496297d08cff57b4c21ce592" + hash: "938a6eea45c4412e847a8700172d80ac" } Frame { msec: 1840 - hash: "4acfe3c4cf2f4e477f1a72817af556d2" + hash: "4bf8e82220ea0d0c4298d5374e149de2" } Frame { msec: 1856 - hash: "a04671fe8d28cfb629f2090e342747fb" + hash: "009dc0c6ff28333ac2fdfa3d79ad2fd6" } Frame { msec: 1872 - hash: "2474db802c7d8e0ec8fa7f958c04bf30" + hash: "aff4097bd39c87c5d1459d99f314dade" } Frame { msec: 1888 - hash: "11a1e1f38c407de4bc069aa192319fe4" + hash: "5cf6cb0afffb791da1c4d0fe00cf6326" } Frame { msec: 1904 - hash: "ec8aacc8d2280068dd7f020e8648afea" + hash: "007e76fb247e11a442802c7cfb4e6a24" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1920 - image: "cursorDelegate.1.png" + hash: "505e740aacf4ca7e6ad24367ddad8678" } Frame { msec: 1936 - hash: "fbbe4d0fed6274968a89e02bb1ca5685" + image: "cursorDelegate.2.png" } Frame { msec: 1952 - hash: "13d478424a8f0cab8bab6a157efce318" + hash: "575dd420067e4ebe5733eb4e35a447ab" } Frame { msec: 1968 - hash: "ea6bc9ec217fb80b86276a2675c08a0f" + hash: "062574e74354b104db2ee6d3c3af5802" } Frame { msec: 1984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d3be942cfb93c4a5d5aa906410125d02" } Frame { msec: 2000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b742ebe441dde1f30dab6d19954a9e8c" } Frame { msec: 2016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "bbe3a292c59e2f7ae6b8877f6736c96e" } Frame { msec: 2032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b742ebe441dde1f30dab6d19954a9e8c" } Frame { msec: 2048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d3be942cfb93c4a5d5aa906410125d02" } Frame { msec: 2064 - hash: "ea6bc9ec217fb80b86276a2675c08a0f" + hash: "062574e74354b104db2ee6d3c3af5802" } Frame { msec: 2080 - hash: "13d478424a8f0cab8bab6a157efce318" + hash: "575dd420067e4ebe5733eb4e35a447ab" } Frame { msec: 2096 - hash: "fbbe4d0fed6274968a89e02bb1ca5685" + hash: "4213f35c4cd233a08d98ba0380b7ab0a" } Frame { msec: 2112 - hash: "00dedd48bd6861cb4bf4953162a67cc0" - } - Key { - type: 6 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "505e740aacf4ca7e6ad24367ddad8678" } Frame { msec: 2128 - hash: "ec8aacc8d2280068dd7f020e8648afea" + hash: "007e76fb247e11a442802c7cfb4e6a24" } Frame { msec: 2144 - hash: "11a1e1f38c407de4bc069aa192319fe4" + hash: "5cf6cb0afffb791da1c4d0fe00cf6326" } Frame { msec: 2160 - hash: "2474db802c7d8e0ec8fa7f958c04bf30" + hash: "aff4097bd39c87c5d1459d99f314dade" } Frame { msec: 2176 - hash: "a04671fe8d28cfb629f2090e342747fb" + hash: "009dc0c6ff28333ac2fdfa3d79ad2fd6" } Frame { msec: 2192 - hash: "4acfe3c4cf2f4e477f1a72817af556d2" + hash: "4bf8e82220ea0d0c4298d5374e149de2" } Frame { msec: 2208 - hash: "5d76b324496297d08cff57b4c21ce592" + hash: "938a6eea45c4412e847a8700172d80ac" } Frame { msec: 2224 - hash: "3b872e5030e34edf678ac2547df48699" + hash: "6502416042993d05dd514119512ed61f" + } + Key { + type: 7 + key: 16777248 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2240 - hash: "dcae85a4b05c450b6b1619f9fd7e17b0" + hash: "5d6702b9475e69bda2ed38f6e2d583d9" } Frame { msec: 2256 - hash: "1f6e0407392322c34567caaecae5b449" + hash: "8e5fdc8e6cc38089d1e8ff5e91a5c894" } Frame { msec: 2272 - hash: "885473be4e44bb1f4b014f9b3d4d2e74" + hash: "c0249d07bcf25af69bf929b4d5ac00a3" } Frame { msec: 2288 - hash: "1af5e24651ef422ff93dab7bd2a8f832" + hash: "efe333c2b8cccea0bd7135484049db06" } Frame { msec: 2304 - hash: "dd972e37166d1186a717a956343a7758" + hash: "57e49e9094691a204f7507b0231352b3" } Frame { msec: 2320 - hash: "9c9c7fb9fb8aab8c24f2eb03df791a00" - } - Key { - type: 6 - key: 16777232 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + hash: "d0a45bd3cfc5e4e6f9a48534c768daba" } Frame { msec: 2336 - hash: "aec9683f3a677dab781bdf3bbf7cce5e" + hash: "6960ab817c67a61af31cc187efe65016" } Frame { msec: 2352 - hash: "63c6a7810dec832f1b8288807f1d932a" + hash: "3b0d483ff765f36a196411967b6dfd70" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2368 - hash: "70409eeee50fbb54097a3c430e1e1f21" + hash: "559713749d65246b185c0c91eb7ad39e" } Frame { msec: 2384 - hash: "efc77b82c0ffd7f3fbe5fed06ea418bd" + hash: "9aea32722fd4f8b0cde3c06c61cecde6" } Frame { msec: 2400 - hash: "26e88aae512304c28d425c311febce1b" + hash: "25dfa32ce92b6044f5ea68411ab5de5b" } Frame { msec: 2416 - hash: "63dc16e66def35abba5159d5650f165d" + hash: "dab689ed2bbe663df309548e615e8621" } Frame { msec: 2432 - hash: "479f192c8cf7b8e4407655382402700f" - } - Key { - type: 7 - key: 16777232 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + hash: "26ad44cef380ff9f64c12180fb54c695" } Frame { msec: 2448 - hash: "4a8efcc341bba9ba621ce0f785a75432" + hash: "5e8bbcd46b5692e66963387b80971e90" } Frame { msec: 2464 - hash: "a9911e076af337fe30e322f03d84a528" + hash: "747df5357daa951fbedeadf909f9dbf3" } Frame { msec: 2480 - hash: "0d410f7bfa3e4c58948a8f1e7c7695c4" + hash: "af99069cdddfa9d099fbe25ba586e138" + } + Key { + type: 7 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2496 - hash: "313a06d40274e46453342e66236f09f8" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 2512 - hash: "907c6363d1e524f391d001944febe1ac" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 2528 - hash: "84cad44c4cccf8a0942865719d05c2eb" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 2544 - hash: "60d24c160adb8e074c04d4f40bf140a8" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 2560 - hash: "ff5fac70804eb01da28c2988aba520a4" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 2576 - hash: "a6bdf56b4f8783969935488e1955e59c" + hash: "1568d4b93d2a284c46f23a0cb17acc24" } Frame { msec: 2592 - hash: "d0ad97647c5092a64426187406ec5316" + hash: "0665a6cfc09981cd8a7ffd0d02e6fbdc" } Frame { msec: 2608 - hash: "77e7a4a4a9c38cd7b5ef734d39089e3f" + hash: "49892aa44c8e3584239d245a7ca98af3" } Frame { msec: 2624 - hash: "0285340a2e03568810a76d840369f5c8" + hash: "c9def393bb5d6c447c45b127d32b5e50" } Frame { msec: 2640 - hash: "6ba6a1a05c5a9ec0d2897b3454affd09" + hash: "679d94007b33197ce7decb4df6e8343c" } Frame { msec: 2656 - hash: "3caa36cc3857803248d12ec09ea357df" + hash: "817987bcd9f1147ba047333b42ed289d" } Frame { msec: 2672 - hash: "500f7b72acc877fc1662e4f4ceb090e1" + hash: "fdd9331015c289b8e33b094999b11dce" } Frame { msec: 2688 - hash: "aadc71923926885ccce87e6be1c742d7" + hash: "e4fa13ba2770c0d390945ee4505fea9b" } Frame { msec: 2704 - hash: "9b7503189ecf2999934716f227469463" + hash: "69965c88d2273acf680af243610efcf3" } Frame { msec: 2720 - hash: "874296e182abe96e58f9c0463a0f32c9" + hash: "6cbeb6787a0a7fb7f654f877e41eed57" } Frame { msec: 2736 - hash: "4262c79b6844d4d62aa9fb02c335fb95" + hash: "e7528c074b3c65afe3873a3cdf96f041" } Frame { msec: 2752 - hash: "a5862eaf12cc342054fd3f8d1f4c91c3" + hash: "c06c72abe46087f0db87a84fdcbcf601" } Frame { msec: 2768 - hash: "0034ef8851c9810ed5d50496aea367da" + hash: "b6840f1d7cf2caed17d763b782553071" } Frame { msec: 2784 - hash: "24cebf60ade86469a154abaa64f3b40d" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + hash: "71fdb77c4133f37180d581e4b1fe9c83" } Frame { msec: 2800 - hash: "1100ef4e2db234ea77ff4c70df6bfbe7" + hash: "f5e2075ed86f146e0162ae4f0a9c6b90" } Frame { msec: 2816 - hash: "c40d8d42a55dde7dbbcae2dda9aaccb8" + hash: "5e76b741f49bd279b9f62ae3f474e5b5" } Frame { msec: 2832 - hash: "5c1000fdc279742cbe46987045c0a92b" + hash: "28c8003699352c3c9563556939d49cd8" } Frame { msec: 2848 - hash: "bcef4a0ff72330f05f2bf5042e414fde" + hash: "15ab751c8463326c870dc9ee1af3c1d7" + } + Key { + type: 6 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2864 - hash: "228551c38b567f1550b44f9dac08786b" + hash: "6035ef1252d4f28b965b0bf4771540e4" } Frame { msec: 2880 - image: "cursorDelegate.2.png" + hash: "7c79170b07db90ca94f5642f3c0d3998" } Frame { msec: 2896 - hash: "127cc30967f95cb88f4238e0b33c741d" + image: "cursorDelegate.3.png" } Frame { msec: 2912 - hash: "3c3fb1d8dbe7443f80550a30ada7f120" + hash: "3b4d1f5e1506c851887c86883eb1a6ac" } Frame { msec: 2928 - hash: "edca065d42bf9b63a79d1e97d1a1eed0" + hash: "5aff09b0e9078ca6d4ed93694d1fa6f9" } Frame { msec: 2944 - hash: "1e4424f1f40bfce3205e1d1401ab0dcf" + hash: "16813ebf88f881a4cebf75a2325dc064" } Frame { msec: 2960 - hash: "90ac5ad7ce23786fe838426605e737e1" + hash: "5b901505bb1ab80cd4d5bc85b73ae8ad" } Frame { msec: 2976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "04c7f2e959c31bf6d3e7bea25d27eb87" + } + Key { + type: 7 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "408bb423b93cb48afb97a7744848fc5e" } Frame { msec: 3008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1a58d66b4d42736eea49a602923a0941" } Frame { msec: 3024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1a58d66b4d42736eea49a602923a0941" } Frame { msec: 3040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "408bb423b93cb48afb97a7744848fc5e" } Frame { msec: 3056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "04c7f2e959c31bf6d3e7bea25d27eb87" } Frame { msec: 3072 - hash: "90ac5ad7ce23786fe838426605e737e1" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "5b901505bb1ab80cd4d5bc85b73ae8ad" } Frame { msec: 3088 - hash: "cf467854dfde9b2111bc6e7e4442aab5" + hash: "16813ebf88f881a4cebf75a2325dc064" } Frame { msec: 3104 - hash: "df6f025130dc82f4764def81cec5fa7b" + hash: "5aff09b0e9078ca6d4ed93694d1fa6f9" } Frame { msec: 3120 - hash: "bdcafed4ae9c890eec2e3e0cb2ff5a14" + hash: "3b4d1f5e1506c851887c86883eb1a6ac" } Frame { msec: 3136 - hash: "14b328c8ec6276e022643102af80fa44" + hash: "6a0a21ed890b475ce506714cc0501381" } Frame { msec: 3152 - hash: "078d75d72bff036574b85ac0aeaaf2b6" + hash: "7c79170b07db90ca94f5642f3c0d3998" } Frame { msec: 3168 - hash: "fbefb1e0801f4578ab93dd7ff4062e68" + hash: "6035ef1252d4f28b965b0bf4771540e4" } Frame { msec: 3184 - hash: "eac8375d9b9cf0afbf232e27c6ceb037" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "9529b5b70b76541ec82be173deedadfb" } Frame { msec: 3200 - hash: "3462a3e166120515e67430600e4653f8" + hash: "174bbd347422c46923d6a5831cb5cd94" } Frame { msec: 3216 - hash: "7f2d9959323f0707e36ecb2252c89727" - } - Frame { - msec: 3232 - hash: "0a1c2eb8a7451a5e37fefb96a58a88a1" - } - Frame { - msec: 3248 - hash: "4a02aaca12e3fd86ee3b516b3a307f86" + hash: "1eb95daf505b817161f1a251cdde1b3c" } Key { type: 6 - key: 16777234 - modifiers: 0 + key: 16777236 + modifiers: 67108864 text: "" autorep: false count: 1 } Frame { + msec: 3232 + hash: "10f59fadaa27f78b7a1fb25d3a30adf7" + } + Frame { + msec: 3248 + hash: "b87417c77b43bdbfdc3d8293c9a23216" + } + Frame { msec: 3264 - hash: "0034ef8851c9810ed5d50496aea367da" + hash: "64345c713d61638bcc32f277208f2665" } Frame { msec: 3280 - hash: "a5862eaf12cc342054fd3f8d1f4c91c3" + hash: "753dbe02fa95ee2b1387b98d7d456dcf" } Frame { msec: 3296 - hash: "4262c79b6844d4d62aa9fb02c335fb95" + hash: "fce9a58aaf8d5cadbb029194317dcae3" } Frame { msec: 3312 - hash: "874296e182abe96e58f9c0463a0f32c9" + hash: "367083bd88443558002601acbc355b1a" } Frame { msec: 3328 - hash: "9b7503189ecf2999934716f227469463" - } - Frame { - msec: 3344 - hash: "aadc71923926885ccce87e6be1c742d7" - } - Frame { - msec: 3360 - hash: "500f7b72acc877fc1662e4f4ceb090e1" + hash: "8e6ffccf321fa30faec432a4b4138967" } Key { type: 7 - key: 16777234 - modifiers: 0 + key: 16777236 + modifiers: 67108864 text: "" autorep: false count: 1 } Frame { + msec: 3344 + hash: "4dd4e0dafeed0fc11790145d39f7c85f" + } + Frame { + msec: 3360 + hash: "d612765c6b43035ea4e4683f968a18d3" + } + Frame { msec: 3376 - hash: "3caa36cc3857803248d12ec09ea357df" + hash: "fa77d4d8d339b78e5a28dcf69336c116" } Frame { msec: 3392 - hash: "6ba6a1a05c5a9ec0d2897b3454affd09" + hash: "34cf572a432bdd6dcfcc4fdfa032a800" } Frame { msec: 3408 - hash: "0285340a2e03568810a76d840369f5c8" + hash: "150b5a2f2e916b7023764c481c768492" } Frame { msec: 3424 - hash: "77e7a4a4a9c38cd7b5ef734d39089e3f" + hash: "fbc93f511d6f3093c2ecf624a2c63749" } Frame { msec: 3440 - hash: "d0ad97647c5092a64426187406ec5316" + hash: "f9e0bd08b722c16493a8886a19920dda" } Frame { msec: 3456 - hash: "a6bdf56b4f8783969935488e1955e59c" + hash: "f499f4b3017c88c63f0a2035ad527a0e" } Frame { msec: 3472 - hash: "ff5fac70804eb01da28c2988aba520a4" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 3488 - hash: "60d24c160adb8e074c04d4f40bf140a8" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 3504 - hash: "84cad44c4cccf8a0942865719d05c2eb" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 3520 - hash: "907c6363d1e524f391d001944febe1ac" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 3536 - hash: "313a06d40274e46453342e66236f09f8" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 3552 - hash: "0d410f7bfa3e4c58948a8f1e7c7695c4" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 3568 - hash: "a9911e076af337fe30e322f03d84a528" + hash: "68d331f508b43e756d6e30ba9b60f9aa" } Frame { msec: 3584 - hash: "4a8efcc341bba9ba621ce0f785a75432" + hash: "c9147c159aebb7aa51d4bac28f96cb57" } Frame { msec: 3600 - hash: "479f192c8cf7b8e4407655382402700f" + hash: "0636b7c5cc215882c60b50f62133c715" } Frame { msec: 3616 - hash: "63dc16e66def35abba5159d5650f165d" + hash: "10b52296e40380a915f7538d21d321a4" } Frame { msec: 3632 - hash: "26e88aae512304c28d425c311febce1b" + hash: "9c56e2c5e04e8767b70d357558e179de" } Frame { msec: 3648 - hash: "efc77b82c0ffd7f3fbe5fed06ea418bd" + hash: "0b1538af23c78cc779174df9fd01f60b" } Frame { msec: 3664 - hash: "70409eeee50fbb54097a3c430e1e1f21" + hash: "1632c7df93f1a735236eaa2464e75ba6" } Frame { msec: 3680 - hash: "63c6a7810dec832f1b8288807f1d932a" + hash: "a08e8b921e61c79d57c0bc4fa5e79914" } Frame { msec: 3696 - hash: "aec9683f3a677dab781bdf3bbf7cce5e" + hash: "8220951034b6f1a5755bedd53b947b4a" } Frame { msec: 3712 - hash: "2e6dd79fc23acbf710e757f3d0999ab8" + hash: "f4c18c333796ff10218fa9145781ea7f" } Frame { msec: 3728 - hash: "4d9dd9e515a21478cb3364032acf8c15" + hash: "7547d3bb0f9c4a53396cfe0252436395" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 3744 - hash: "5dc2129cac6e667d39da3304a37a76f2" + hash: "efe333c2b8cccea0bd7135484049db06" } Frame { msec: 3760 - hash: "ab5eb4750139875586a346b1c3a84f42" + hash: "c0249d07bcf25af69bf929b4d5ac00a3" } Frame { msec: 3776 - hash: "96d3bd62d4a0bf39a672b97fcc050bd5" + hash: "8e5fdc8e6cc38089d1e8ff5e91a5c894" } Frame { msec: 3792 - hash: "546cec655631b5802eb4d7008093eb69" + hash: "5d6702b9475e69bda2ed38f6e2d583d9" } Frame { msec: 3808 - hash: "85f33f1bf1b1e11be450ab85bf6dab3d" + hash: "6502416042993d05dd514119512ed61f" } Frame { msec: 3824 - hash: "44b195297acd1bf59e43751df8dc1c1d" + hash: "938a6eea45c4412e847a8700172d80ac" } Frame { msec: 3840 - image: "cursorDelegate.3.png" + hash: "4bf8e82220ea0d0c4298d5374e149de2" + } + Key { + type: 7 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 3856 - hash: "47942253c07fd39894445ff5e5b9608c" + image: "cursorDelegate.4.png" } Frame { msec: 3872 - hash: "d26d71b1c03fb21550820dd1586a7a8e" + hash: "aff4097bd39c87c5d1459d99f314dade" } Frame { msec: 3888 - hash: "37ec2ed29006575e8bd41a1989b75e27" + hash: "5cf6cb0afffb791da1c4d0fe00cf6326" } Frame { msec: 3904 - hash: "5ad1ab34572f9ef339774134bc0ab407" + hash: "007e76fb247e11a442802c7cfb4e6a24" } Frame { msec: 3920 - hash: "a4f68f6ee46642e7cc5a542b9f8a2464" + hash: "505e740aacf4ca7e6ad24367ddad8678" } Frame { msec: 3936 - hash: "fce95d18a0efee74554209ca39637062" + hash: "4213f35c4cd233a08d98ba0380b7ab0a" } Frame { msec: 3952 - hash: "1587fc2668f1f44e76f252bfd75f2708" + hash: "575dd420067e4ebe5733eb4e35a447ab" } Frame { msec: 3968 - hash: "e0a6eb42de552281e297ca5c50c1df23" + hash: "062574e74354b104db2ee6d3c3af5802" } Frame { msec: 3984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d3be942cfb93c4a5d5aa906410125d02" } Frame { msec: 4000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b742ebe441dde1f30dab6d19954a9e8c" } Frame { msec: 4016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "bbe3a292c59e2f7ae6b8877f6736c96e" } Frame { msec: 4032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b742ebe441dde1f30dab6d19954a9e8c" } Frame { msec: 4048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d3be942cfb93c4a5d5aa906410125d02" } Frame { msec: 4064 - hash: "e0a6eb42de552281e297ca5c50c1df23" + hash: "062574e74354b104db2ee6d3c3af5802" + } + Key { + type: 7 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 4080 - hash: "1587fc2668f1f44e76f252bfd75f2708" + hash: "575dd420067e4ebe5733eb4e35a447ab" } Frame { msec: 4096 - hash: "fce95d18a0efee74554209ca39637062" + hash: "4213f35c4cd233a08d98ba0380b7ab0a" } Frame { msec: 4112 - hash: "a4f68f6ee46642e7cc5a542b9f8a2464" + hash: "505e740aacf4ca7e6ad24367ddad8678" } Frame { msec: 4128 - hash: "5ad1ab34572f9ef339774134bc0ab407" + hash: "007e76fb247e11a442802c7cfb4e6a24" } Frame { msec: 4144 - hash: "37ec2ed29006575e8bd41a1989b75e27" + hash: "5cf6cb0afffb791da1c4d0fe00cf6326" } Frame { msec: 4160 - hash: "d26d71b1c03fb21550820dd1586a7a8e" + hash: "aff4097bd39c87c5d1459d99f314dade" } Frame { msec: 4176 - hash: "47942253c07fd39894445ff5e5b9608c" + hash: "009dc0c6ff28333ac2fdfa3d79ad2fd6" } Frame { msec: 4192 - hash: "a62f1cbf43da0381c7c9099d47ded882" + hash: "4bf8e82220ea0d0c4298d5374e149de2" } Frame { msec: 4208 - hash: "44b195297acd1bf59e43751df8dc1c1d" + hash: "938a6eea45c4412e847a8700172d80ac" } Frame { msec: 4224 - hash: "85f33f1bf1b1e11be450ab85bf6dab3d" + hash: "6502416042993d05dd514119512ed61f" } Frame { msec: 4240 - hash: "546cec655631b5802eb4d7008093eb69" + hash: "5d6702b9475e69bda2ed38f6e2d583d9" } Frame { msec: 4256 - hash: "96d3bd62d4a0bf39a672b97fcc050bd5" + hash: "8e5fdc8e6cc38089d1e8ff5e91a5c894" } Frame { msec: 4272 - hash: "ab5eb4750139875586a346b1c3a84f42" + hash: "c0249d07bcf25af69bf929b4d5ac00a3" } Frame { msec: 4288 - hash: "5dc2129cac6e667d39da3304a37a76f2" + hash: "efe333c2b8cccea0bd7135484049db06" } Frame { msec: 4304 - hash: "4d9dd9e515a21478cb3364032acf8c15" + hash: "57e49e9094691a204f7507b0231352b3" } Frame { msec: 4320 - hash: "2e6dd79fc23acbf710e757f3d0999ab8" + hash: "d0a45bd3cfc5e4e6f9a48534c768daba" } Frame { msec: 4336 - hash: "aec9683f3a677dab781bdf3bbf7cce5e" + hash: "6960ab817c67a61af31cc187efe65016" } Frame { msec: 4352 - hash: "63c6a7810dec832f1b8288807f1d932a" + hash: "3b0d483ff765f36a196411967b6dfd70" } Frame { msec: 4368 - hash: "70409eeee50fbb54097a3c430e1e1f21" + hash: "559713749d65246b185c0c91eb7ad39e" } Frame { msec: 4384 - hash: "efc77b82c0ffd7f3fbe5fed06ea418bd" + hash: "9aea32722fd4f8b0cde3c06c61cecde6" } Frame { msec: 4400 - hash: "26e88aae512304c28d425c311febce1b" + hash: "25dfa32ce92b6044f5ea68411ab5de5b" } Frame { msec: 4416 - hash: "63dc16e66def35abba5159d5650f165d" + hash: "dab689ed2bbe663df309548e615e8621" } Frame { msec: 4432 - hash: "479f192c8cf7b8e4407655382402700f" + hash: "26ad44cef380ff9f64c12180fb54c695" } Frame { msec: 4448 - hash: "4a8efcc341bba9ba621ce0f785a75432" + hash: "5e8bbcd46b5692e66963387b80971e90" } Frame { msec: 4464 - hash: "a9911e076af337fe30e322f03d84a528" + hash: "747df5357daa951fbedeadf909f9dbf3" } Frame { msec: 4480 - hash: "0d410f7bfa3e4c58948a8f1e7c7695c4" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 4496 - hash: "313a06d40274e46453342e66236f09f8" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 4512 - hash: "907c6363d1e524f391d001944febe1ac" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 4528 - hash: "84cad44c4cccf8a0942865719d05c2eb" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 4544 - hash: "60d24c160adb8e074c04d4f40bf140a8" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 4560 - hash: "ff5fac70804eb01da28c2988aba520a4" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 4576 - hash: "a6bdf56b4f8783969935488e1955e59c" + hash: "1568d4b93d2a284c46f23a0cb17acc24" } Frame { msec: 4592 - hash: "d0ad97647c5092a64426187406ec5316" + hash: "0665a6cfc09981cd8a7ffd0d02e6fbdc" } Frame { msec: 4608 - hash: "77e7a4a4a9c38cd7b5ef734d39089e3f" + hash: "49892aa44c8e3584239d245a7ca98af3" } Frame { msec: 4624 - hash: "0285340a2e03568810a76d840369f5c8" + hash: "c9def393bb5d6c447c45b127d32b5e50" } Frame { msec: 4640 - hash: "6ba6a1a05c5a9ec0d2897b3454affd09" + hash: "679d94007b33197ce7decb4df6e8343c" } Frame { msec: 4656 - hash: "3caa36cc3857803248d12ec09ea357df" + hash: "817987bcd9f1147ba047333b42ed289d" } Frame { msec: 4672 - hash: "500f7b72acc877fc1662e4f4ceb090e1" + hash: "fdd9331015c289b8e33b094999b11dce" } Frame { msec: 4688 - hash: "aadc71923926885ccce87e6be1c742d7" + hash: "e4fa13ba2770c0d390945ee4505fea9b" } Frame { msec: 4704 - hash: "9b7503189ecf2999934716f227469463" + hash: "69965c88d2273acf680af243610efcf3" } Frame { msec: 4720 - hash: "874296e182abe96e58f9c0463a0f32c9" + hash: "6cbeb6787a0a7fb7f654f877e41eed57" } Frame { msec: 4736 - hash: "4262c79b6844d4d62aa9fb02c335fb95" + hash: "e7528c074b3c65afe3873a3cdf96f041" } Frame { msec: 4752 - hash: "a5862eaf12cc342054fd3f8d1f4c91c3" + hash: "c06c72abe46087f0db87a84fdcbcf601" } Frame { msec: 4768 - hash: "0034ef8851c9810ed5d50496aea367da" + hash: "b6840f1d7cf2caed17d763b782553071" } Frame { msec: 4784 - hash: "24cebf60ade86469a154abaa64f3b40d" + hash: "71fdb77c4133f37180d581e4b1fe9c83" } Frame { msec: 4800 - image: "cursorDelegate.4.png" + hash: "f5e2075ed86f146e0162ae4f0a9c6b90" } Frame { msec: 4816 - hash: "c40d8d42a55dde7dbbcae2dda9aaccb8" + image: "cursorDelegate.5.png" } Frame { msec: 4832 - hash: "5c1000fdc279742cbe46987045c0a92b" + hash: "28c8003699352c3c9563556939d49cd8" } Frame { msec: 4848 - hash: "bcef4a0ff72330f05f2bf5042e414fde" + hash: "15ab751c8463326c870dc9ee1af3c1d7" } Frame { msec: 4864 - hash: "228551c38b567f1550b44f9dac08786b" + hash: "b745b2aee5ec623163ea22614b8ab54b" } Frame { msec: 4880 - hash: "531c5ca6992c4a12927c61e22c02dd6b" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 130; y: 101 - modifiers: 0 - sendToViewport: true + hash: "b3f3b8e325dcd56b696eab7228c3db09" } Frame { msec: 4896 - hash: "14b328c8ec6276e022643102af80fa44" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 102 - modifiers: 0 - sendToViewport: true + hash: "12ba65e0f70a670b2832235391d3ed05" } Frame { msec: 4912 - hash: "bdcafed4ae9c890eec2e3e0cb2ff5a14" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 131; y: 102 - modifiers: 0 - sendToViewport: true + hash: "9dfac03113b662a63bddcac9c7ae8f64" } Frame { msec: 4928 - hash: "df6f025130dc82f4764def81cec5fa7b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 103 - modifiers: 0 - sendToViewport: true + hash: "085bbc44102ae0d1d62531f6b6dbda98" } Frame { msec: 4944 - hash: "cf467854dfde9b2111bc6e7e4442aab5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 133; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 134; y: 103 - modifiers: 0 - sendToViewport: true + hash: "007887862e2234f4c308778ecac5e16b" } Frame { msec: 4960 - hash: "cfcdf63ca06c2b9ab197821bc1e48c7c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 135; y: 103 - modifiers: 0 - sendToViewport: true + hash: "61e8e34755db1fb99b44830676ad95ad" } Frame { msec: 4976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 103 - modifiers: 0 - sendToViewport: true + hash: "48c8b1b0d549f7b6d85a81803b9fe31d" } Frame { msec: 4992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 137; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 102 - modifiers: 0 - sendToViewport: true + hash: "834cf51445f88394e33a3f3f0a5569f4" } Frame { msec: 5008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 139; y: 101 - modifiers: 0 - sendToViewport: true + hash: "a43224f77583bb7235895506f49daee6" } Frame { msec: 5024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 101 - modifiers: 0 - sendToViewport: true + hash: "a43224f77583bb7235895506f49daee6" } Frame { msec: 5040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 141; y: 100 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 100 - modifiers: 0 - sendToViewport: true + hash: "834cf51445f88394e33a3f3f0a5569f4" } Frame { msec: 5056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 100 - modifiers: 0 - sendToViewport: true + hash: "48c8b1b0d549f7b6d85a81803b9fe31d" } Frame { msec: 5072 - hash: "cfcdf63ca06c2b9ab197821bc1e48c7c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 99 - modifiers: 0 - sendToViewport: true + hash: "61e8e34755db1fb99b44830676ad95ad" } Frame { msec: 5088 - hash: "cf467854dfde9b2111bc6e7e4442aab5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 99 - modifiers: 0 - sendToViewport: true + hash: "007887862e2234f4c308778ecac5e16b" } Frame { msec: 5104 - hash: "7643fcfb740d33b87915300684e85a44" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 150; y: 99 - modifiers: 0 - sendToViewport: true + hash: "085bbc44102ae0d1d62531f6b6dbda98" } Frame { msec: 5120 - hash: "1bd041a5e8d2237b51720fed82250303" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 99 - modifiers: 0 - sendToViewport: true + hash: "9dfac03113b662a63bddcac9c7ae8f64" } Frame { msec: 5136 - hash: "1a00c9d3ce747e3bc7ee5878d21260b4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 98 - modifiers: 0 - sendToViewport: true + hash: "12ba65e0f70a670b2832235391d3ed05" } Frame { msec: 5152 - hash: "803896c1be68588ba2cddd7effbb8d62" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 98 - modifiers: 0 - sendToViewport: true + hash: "b3f3b8e325dcd56b696eab7228c3db09" } Frame { msec: 5168 - hash: "282ab572698088fba3aba8e6a091aa38" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 98 - modifiers: 0 - sendToViewport: true + hash: "b745b2aee5ec623163ea22614b8ab54b" } Frame { msec: 5184 - hash: "24402d9e4fabd78bc8f3921db82e554e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 98 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 98 - modifiers: 0 - sendToViewport: true + hash: "15ab751c8463326c870dc9ee1af3c1d7" } Frame { msec: 5200 - hash: "39a89e9ca7c4edd9c8503927d639df0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 98 - modifiers: 0 - sendToViewport: true + hash: "28c8003699352c3c9563556939d49cd8" } Frame { msec: 5216 - hash: "b984b7d032544acd4dab8901e0af1ef5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 98 - modifiers: 0 - sendToViewport: true + hash: "5e76b741f49bd279b9f62ae3f474e5b5" } Frame { msec: 5232 - hash: "e014414626407b0446939ad2ce38b7dd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 98 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 98 - modifiers: 0 - sendToViewport: true + hash: "f5e2075ed86f146e0162ae4f0a9c6b90" } Frame { msec: 5248 - hash: "beccb93613279e2f48507ddc9a4418e8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 97 - modifiers: 0 - sendToViewport: true + hash: "71fdb77c4133f37180d581e4b1fe9c83" } Frame { msec: 5264 - hash: "dd861f8dc89587301e860217fdf2a701" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 164; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5280 - hash: "1ae0b7a18a7d3ebe4871a0045005e2b7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 96 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5296 - hash: "071e1f8bcc0e541b23d134f32c19d20b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5312 - hash: "e8ce2716f4595bc5bf68c24c8a63bbfe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5328 - hash: "d36a35503af76b12fe5cec65e3f22eda" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: 96 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 178; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5344 - hash: "cea0f90a56fd5789b3e166f09f2bfcec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 179; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5360 - hash: "151f5357d9c1a3f1fe09380a287abab0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 180; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5376 - hash: "bdab9d7077734087cb7f9516e9c517bc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 182; y: 95 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 183; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5392 - hash: "6d6d929a7c7be1d2e7d1b2f98a6866be" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5408 - hash: "3fbe3f45afc5aa40fff7f795ced8a05d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5424 - hash: "b35b4dc480aeb76912d927b0ff8676c6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 189; y: 93 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5440 - hash: "94e82e888280f20cce3ac38b353b79f4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5456 - hash: "4674fbd35e467bed780a5ea2fe2e258b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5472 - hash: "698827bfa7ff2eae6b0e0efa99bb15bb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 92 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5488 - hash: "67c7adef5e41481d631f54d34423b93d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5504 - hash: "097512c005127fa3ebfcbc52808264a8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 91 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5520 - hash: "ad64b5913350e6c6fda199ecb34278f4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 91 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 201; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5536 - hash: "3237e88e0f40595d2fde62723c00b7fa" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 89 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5552 - hash: "18db89296849f22a7af0a1ffc9762a32" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5568 - hash: "7f6ac84baaa2c5fcd22ba45172611840" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5584 - hash: "7b887d3aa44229d9f25fdde8f5ccf471" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 85 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5600 - hash: "b0c08726d0f2a460d5862cd2d7ee6230" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 85 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5616 - hash: "d99389a3287d453b942f070d8c1e86e8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5632 - hash: "a0751fa826b03cb25e615c6a1435d92a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 213; y: 84 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 214; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5648 - hash: "f33da88ae881c846bd86ab3dc4f12efc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5664 - hash: "7049bee9a984a2c2d3101eb6d3cce31e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5680 - hash: "72757a5099748b70241a0d4279e42313" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 84 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5696 - hash: "705feb098ebb2d689526d9271098d6b5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5712 - hash: "49de92770edb0aae82cf66ae42b31caa" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5728 - hash: "70fe89f9dce556ec1859f325aa27b7db" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 85 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 86 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5744 - hash: "1ededcc625a0e9e317c5aefc238a175a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 221; y: 87 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5760 - image: "cursorDelegate.5.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 87 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5776 - hash: "f1ae53071836512830f7284c4ac884b3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5792 - hash: "f73c2b66b61bdcb080f8be6607079729" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5808 - hash: "11da14806fbca5c7cd559286fb5d70ff" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 226; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5824 - hash: "b3ad82e900925227fb020009ae619d28" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 228; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5840 - hash: "d8cea4160f0044b09e595610ead01879" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 229; y: 96 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 231; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "bdd0d1bea8590b40cdce2fb45e17901b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 232; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5872 - hash: "007a5d123eea589264e22f862f1bcac6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 233; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5888 - hash: "3a83635e8371f3e26baf83c285b7801d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 233; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5904 - hash: "6615931007ab0f9da070b6316068ad12" - } - Frame { - msec: 5920 - hash: "be695ab0dced25c1c498d977fc822cef" - } - Frame { - msec: 5936 - hash: "46dea7348473bc6ce4ea696292e5aae0" - } - Frame { - msec: 5952 - hash: "23ce0ba723ffe4253610fdc635df9ae2" - } - Frame { - msec: 5968 - hash: "9d6243396fd98b7efd14ae8a67297e79" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 233; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 232; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 232; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 231; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 230; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 229; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 228; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6064 - hash: "be488252ce6c39317c33706f7febe7b5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 225; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "16c38b5dcd8ffbadc533d4fea8a85b0d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 101 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6096 - hash: "a3ca6fa1bbc5ca3ff4cf281ae112102d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6112 - hash: "58e53a9cb886d6d90c0b5987d0693904" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6128 - hash: "a7f3e07ad0335e2852a156b5a3e1bd3d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 102 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6144 - hash: "bea9d0338212c01474b25ee637aa8fd0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "b509c0cdea6b1352ff1e146a8f243820" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 213; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6176 - hash: "9c968354773878009af2f176b1e38d42" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 102 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6192 - hash: "d8cea4160f0044b09e595610ead01879" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6208 - hash: "b3ad82e900925227fb020009ae619d28" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6224 - hash: "11da14806fbca5c7cd559286fb5d70ff" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6240 - hash: "707f51caadf24d3ed88b69c290d56971" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6256 - hash: "c23b2afed7fa0e3dbce1183cf8e8d724" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6272 - hash: "653b2e2d711c1abc1893d0068f4c531c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6288 - hash: "246a73b19421f0ea8ec444429bd6704e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6304 - hash: "3878df64c0cecb2051e04dafe16ad407" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 201; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6320 - hash: "1cf92a793a4d145acce08c61cca3ba4f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6336 - hash: "6c5f70c941a04172aae855eed1516971" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 197; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6352 - hash: "5f4b8d6ad49de0ea1a2ee057e783b363" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 101 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6368 - hash: "dc185cf4a14801d7bcc24ceadffe312b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 188; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6384 - hash: "6934c069d1b7daf1c2dd76739941c7c2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6400 - hash: "415510947b49a08459523fa2221d3609" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6416 - hash: "9586619df75f07cc1f01201abd0f1f43" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 182; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6432 - hash: "d016b14c9d5e5cd2545f1c85aa1edc4f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6448 - hash: "4100837adeaf1557534f5c243eeacc37" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6464 - hash: "a9351f624dc7de55ca8e799cf4371e75" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6480 - hash: "8f2f9ba7de4e01767dda2c6d8f09e218" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6496 - hash: "fb9b7d7e1aa140efc7e39cbca7299d34" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6512 - hash: "eb1c2399d5779cc3382f02e69e5a31f1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6528 - hash: "3bd98dc8a8cfb7af8a5f2ab11f387065" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6544 - hash: "1eea9af6e5f359b96df86d56d74f8375" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6560 - hash: "74c68b948d8e1d3c716eba5f1a186464" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6576 - hash: "7103ecc0c21208d210938b0cd86fa4e2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 95 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6592 - hash: "187b7801be7cd9643c707016166fcb38" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6608 - hash: "571fe7704d5d95e91d4bd411ab00edf0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6624 - hash: "2b6fd25a47274ffa56c3d0020babfdfc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6640 - hash: "febcd6b5fc1806ff57d1669c79aa4cb2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6656 - hash: "5c731fc4a2aeccf55a0af2b7171f25ce" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6672 - hash: "7d9df9dd9a99eabaa4b426438e44d612" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6688 - hash: "48278540489142f8a63ed120f4b956c2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6704 - hash: "d08abdfb587a7ec07872cb662526b6d8" - } - Frame { - msec: 6720 - image: "cursorDelegate.6.png" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 144; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6736 - hash: "4622738082ac75e00b6c63e846b7e98b" - } - Frame { - msec: 6752 - hash: "87a9f2facbaba462c562f09947bb7ded" - } - Frame { - msec: 6768 - hash: "77e730ece9f195c3627508d1c2a126fc" - } - Frame { - msec: 6784 - hash: "4a02aaca12e3fd86ee3b516b3a307f86" - } - Frame { - msec: 6800 - hash: "0a1c2eb8a7451a5e37fefb96a58a88a1" - } - Frame { - msec: 6816 - hash: "7f2d9959323f0707e36ecb2252c89727" - } - Frame { - msec: 6832 - hash: "3462a3e166120515e67430600e4653f8" - } - Frame { - msec: 6848 - hash: "eac8375d9b9cf0afbf232e27c6ceb037" - } - Frame { - msec: 6864 - hash: "fbefb1e0801f4578ab93dd7ff4062e68" - } - Frame { - msec: 6880 - hash: "078d75d72bff036574b85ac0aeaaf2b6" - } - Frame { - msec: 6896 - hash: "14b328c8ec6276e022643102af80fa44" - } - Frame { - msec: 6912 - hash: "bdcafed4ae9c890eec2e3e0cb2ff5a14" - } - Frame { - msec: 6928 - hash: "df6f025130dc82f4764def81cec5fa7b" - } - Frame { - msec: 6944 - hash: "cf467854dfde9b2111bc6e7e4442aab5" - } - Frame { - msec: 6960 - hash: "cfcdf63ca06c2b9ab197821bc1e48c7c" - } - Frame { - msec: 6976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 7008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 7024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 7040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 7056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 7072 - hash: "cfcdf63ca06c2b9ab197821bc1e48c7c" - } - Frame { - msec: 7088 - hash: "cf467854dfde9b2111bc6e7e4442aab5" - } - Frame { - msec: 7104 - hash: "df6f025130dc82f4764def81cec5fa7b" - } - Frame { - msec: 7120 - hash: "bdcafed4ae9c890eec2e3e0cb2ff5a14" - } - Frame { - msec: 7136 - hash: "14b328c8ec6276e022643102af80fa44" - } - Frame { - msec: 7152 - hash: "078d75d72bff036574b85ac0aeaaf2b6" - } - Frame { - msec: 7168 - hash: "fbefb1e0801f4578ab93dd7ff4062e68" - } - Frame { - msec: 7184 - hash: "eac8375d9b9cf0afbf232e27c6ceb037" - } - Frame { - msec: 7200 - hash: "3462a3e166120515e67430600e4653f8" - } - Frame { - msec: 7216 - hash: "7f2d9959323f0707e36ecb2252c89727" - } - Frame { - msec: 7232 - hash: "0a1c2eb8a7451a5e37fefb96a58a88a1" - } - Frame { - msec: 7248 - hash: "4a02aaca12e3fd86ee3b516b3a307f86" - } - Frame { - msec: 7264 - hash: "77e730ece9f195c3627508d1c2a126fc" - } - Frame { - msec: 7280 - hash: "87a9f2facbaba462c562f09947bb7ded" - } - Frame { - msec: 7296 - hash: "4622738082ac75e00b6c63e846b7e98b" - } - Frame { - msec: 7312 - hash: "9fcec7616e28cb8317709656fd94f480" - } - Frame { - msec: 7328 - hash: "d08abdfb587a7ec07872cb662526b6d8" - } - Frame { - msec: 7344 - hash: "48278540489142f8a63ed120f4b956c2" - } - Frame { - msec: 7360 - hash: "7d9df9dd9a99eabaa4b426438e44d612" - } - Frame { - msec: 7376 - hash: "5c731fc4a2aeccf55a0af2b7171f25ce" - } - Frame { - msec: 7392 - hash: "febcd6b5fc1806ff57d1669c79aa4cb2" - } - Frame { - msec: 7408 - hash: "4ad2c0877360b0e1bf2212f9455f741e" - } - Frame { - msec: 7424 - hash: "4df1951aac4ed1957925c95e112b0766" - } - Frame { - msec: 7440 - hash: "bfbb624abe63639f2a7cb826b6b47393" - } - Frame { - msec: 7456 - hash: "538cf4ee98145b3801e198b036e24a46" - } - Frame { - msec: 7472 - hash: "5602c039a304ac0b1fd99957970a825b" - } - Frame { - msec: 7488 - hash: "9ddd7709269b9a008e15d942e156e13a" - } - Frame { - msec: 7504 - hash: "91d7c43f5f985d624e77da43ba5fb90f" - } - Frame { - msec: 7520 - hash: "9153b0419d28e3c8137b58f95451cd58" - } - Frame { - msec: 7536 - hash: "c5aad5ea4db81cf72f1ff390ed1dc868" - } - Frame { - msec: 7552 - hash: "47b52ce9e5c705017e94b419b53d20d9" - } - Frame { - msec: 7568 - hash: "f968e3289a2a6343cdb64e37b83f142a" - } - Frame { - msec: 7584 - hash: "6fe898a37b17b6b6fa9a2971b518d185" - } - Frame { - msec: 7600 - hash: "90ced2e487b6e760f2ad2c7d6375a36f" - } - Frame { - msec: 7616 - hash: "b2d87713d12a54d4d7b6fd6ba2671704" - } - Frame { - msec: 7632 - hash: "edce9857bd0e93ab841ae62ffba0149f" - } - Frame { - msec: 7648 - hash: "13ce69facee6bf01c9712db1781c5ef9" - } - Frame { - msec: 7664 - hash: "64924e43e004f0d9e90c23f61813c732" - } - Frame { - msec: 7680 - image: "cursorDelegate.7.png" - } - Frame { - msec: 7696 - hash: "9c384359c664a71b5b6b9f9d62dd38bf" - } - Frame { - msec: 7712 - hash: "5998579d228bcf0efdbcee805796ec23" - } - Frame { - msec: 7728 - hash: "fe69cab70ad5b25f757bc413b895ff94" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 227; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7744 - hash: "1ededcc625a0e9e317c5aefc238a175a" - } - Frame { - msec: 7760 - hash: "460a4cbee55ccdeda1941c8dccf08cbd" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 227; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7776 - hash: "f1ae53071836512830f7284c4ac884b3" - } - Frame { - msec: 7792 - hash: "f73c2b66b61bdcb080f8be6607079729" - } - Frame { - msec: 7808 - hash: "11da14806fbca5c7cd559286fb5d70ff" - } - Frame { - msec: 7824 - hash: "b3ad82e900925227fb020009ae619d28" - } - Frame { - msec: 7840 - hash: "d8cea4160f0044b09e595610ead01879" - } - Frame { - msec: 7856 - hash: "9c968354773878009af2f176b1e38d42" - } - Frame { - msec: 7872 - hash: "b509c0cdea6b1352ff1e146a8f243820" - } - Frame { - msec: 7888 - hash: "bea9d0338212c01474b25ee637aa8fd0" - } - Frame { - msec: 7904 - hash: "a7f3e07ad0335e2852a156b5a3e1bd3d" - } - Frame { - msec: 7920 - hash: "58e53a9cb886d6d90c0b5987d0693904" - } - Frame { - msec: 7936 - hash: "a3ca6fa1bbc5ca3ff4cf281ae112102d" - } - Frame { - msec: 7952 - hash: "16c38b5dcd8ffbadc533d4fea8a85b0d" - } - Frame { - msec: 7968 - hash: "be488252ce6c39317c33706f7febe7b5" - } - Frame { - msec: 7984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 8000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 8016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 8032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 8048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 8064 - hash: "be488252ce6c39317c33706f7febe7b5" - } - Frame { - msec: 8080 - hash: "16c38b5dcd8ffbadc533d4fea8a85b0d" - } - Frame { - msec: 8096 - hash: "a3ca6fa1bbc5ca3ff4cf281ae112102d" - } - Frame { - msec: 8112 - hash: "58e53a9cb886d6d90c0b5987d0693904" - } - Frame { - msec: 8128 - hash: "a7f3e07ad0335e2852a156b5a3e1bd3d" - } - Frame { - msec: 8144 - hash: "bea9d0338212c01474b25ee637aa8fd0" - } - Frame { - msec: 8160 - hash: "b509c0cdea6b1352ff1e146a8f243820" - } - Frame { - msec: 8176 - hash: "9c968354773878009af2f176b1e38d42" - } - Frame { - msec: 8192 - hash: "d8cea4160f0044b09e595610ead01879" - } - Frame { - msec: 8208 - hash: "b3ad82e900925227fb020009ae619d28" - } - Frame { - msec: 8224 - hash: "11da14806fbca5c7cd559286fb5d70ff" - } - Frame { - msec: 8240 - hash: "f73c2b66b61bdcb080f8be6607079729" - } - Frame { - msec: 8256 - hash: "f1ae53071836512830f7284c4ac884b3" - } - Frame { - msec: 8272 - hash: "460a4cbee55ccdeda1941c8dccf08cbd" - } - Frame { - msec: 8288 - hash: "1ededcc625a0e9e317c5aefc238a175a" - } - Frame { - msec: 8304 - hash: "70fe89f9dce556ec1859f325aa27b7db" - } - Frame { - msec: 8320 - hash: "49de92770edb0aae82cf66ae42b31caa" - } - Frame { - msec: 8336 - hash: "705feb098ebb2d689526d9271098d6b5" - } - Frame { - msec: 8352 - hash: "72757a5099748b70241a0d4279e42313" - } - Frame { - msec: 8368 - hash: "7049bee9a984a2c2d3101eb6d3cce31e" - } - Frame { - msec: 8384 - hash: "f33da88ae881c846bd86ab3dc4f12efc" - } - Frame { - msec: 8400 - hash: "a0751fa826b03cb25e615c6a1435d92a" - } - Frame { - msec: 8416 - hash: "d99389a3287d453b942f070d8c1e86e8" - } - Frame { - msec: 8432 - hash: "e3219357e73a2dfd5b80dfbd6feb79e2" - } - Frame { - msec: 8448 - hash: "c0953accd856883c813d4ecf99fb632b" - } - Frame { - msec: 8464 - hash: "185743339cba9dfc1a2c2ff1efd23855" - } - Frame { - msec: 8480 - hash: "30a4419de779037fd84bd70a99c4d6de" - } - Frame { - msec: 8496 - hash: "1d9cbd0814831c518e9e8041fe8285c9" - } - Frame { - msec: 8512 - hash: "81d660df1b0eab7c382991b600f88ba3" - } - Frame { - msec: 8528 - hash: "7ee1467525b9fe3b6a32fba8c2454df1" - } - Frame { - msec: 8544 - hash: "28dd72957652cf130d28d30203b36c59" - } - Frame { - msec: 8560 - hash: "e9697d06a22958cea4f766dd3ec31ca9" - } - Frame { - msec: 8576 - hash: "81970c31a0a1e42929c83ef5140401c2" - } - Frame { - msec: 8592 - hash: "ebb5be43955725bef66bf99bd7288c04" - } - Frame { - msec: 8608 - hash: "afbf0645ea651b2c459eeb43bdc65992" - } - Frame { - msec: 8624 - hash: "42bf6ab3963652617f2feb96ee170af5" - } - Frame { - msec: 8640 - image: "cursorDelegate.8.png" - } - Frame { - msec: 8656 - hash: "4a5966f600f9b27bf7a65fcc6c1c5d17" - } - Frame { - msec: 8672 - hash: "ecdc1d89af1e76648c8298e2b9940549" - } - Frame { - msec: 8688 - hash: "0ba1e105a7ae41926e2106b60eafdec9" - } - Frame { - msec: 8704 - hash: "96e4f277d4ff76afe0c2d58b4aed3acb" - } - Frame { - msec: 8720 - hash: "f41c6fd9e22354b8f5c940c04930a591" - } - Frame { - msec: 8736 - hash: "00b522554cf6c0c09e5425f4d3c3fcf9" - } - Frame { - msec: 8752 - hash: "e8549c0c361f20d167cab128dc996274" - } - Frame { - msec: 8768 - hash: "976c61615250f9bfa3b4c02ee88bee03" - } - Frame { - msec: 8784 - hash: "06c95d2fa5e2b4751e5693b179e76eb4" - } - Frame { - msec: 8800 - hash: "a3d79197235c4717b1f9af3582118ca6" - } - Frame { - msec: 8816 - hash: "68b23db8f519aa161278074aa318eaa1" - } - Frame { - msec: 8832 - hash: "af967462be12d0b6ddd3571b00804c12" - } - Frame { - msec: 8848 - hash: "46f5c0baa2b95fd418984eebe308157e" - } - Frame { - msec: 8864 - hash: "0a7407c6c751b3f1380a99883e95f1dd" - } - Frame { - msec: 8880 - hash: "9969c206488671c45c43f3a3dd3f5994" - } - Frame { - msec: 8896 - hash: "89efa872ce2e71935b47cac101bf15c9" - } - Frame { - msec: 8912 - hash: "a4545a0c50fb071d267b06bf2d114802" - } - Frame { - msec: 8928 - hash: "f4df98459c18399e1c6b2d8a43bdd678" - } - Frame { - msec: 8944 - hash: "027eb091eea8bf51d7ad3ff44120e075" - } - Frame { - msec: 8960 - hash: "138ec35b850d20664f905a4eea6f7456" - } - Frame { - msec: 8976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 8992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 9008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 9024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 9040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 9056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 9072 - hash: "138ec35b850d20664f905a4eea6f7456" - } - Frame { - msec: 9088 - hash: "027eb091eea8bf51d7ad3ff44120e075" - } - Frame { - msec: 9104 - hash: "f4df98459c18399e1c6b2d8a43bdd678" - } - Frame { - msec: 9120 - hash: "a4545a0c50fb071d267b06bf2d114802" - } - Frame { - msec: 9136 - hash: "89efa872ce2e71935b47cac101bf15c9" + hash: "b6840f1d7cf2caed17d763b782553071" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.0.png Binary files differindex cc1774f..852fc66 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.0.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.1.png Binary files differindex 60eba16..4b283d0 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.1.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.2.png Binary files differindex d4663f7..342fe05 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.2.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.3.png Binary files differindex dc1bb52..fb4a774 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.3.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.4.png Binary files differnew file mode 100644 index 0000000..852fc66 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml index f1099c8..d7b26cb 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml @@ -6,99 +6,99 @@ VisualTest { } Frame { msec: 16 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + image: "qt-669.0.png" } Frame { msec: 32 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 48 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 64 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 80 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 96 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 112 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 128 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 144 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 160 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 176 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 192 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 208 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 224 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 240 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 256 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 272 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 288 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 304 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 320 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 336 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 352 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 368 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 384 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Key { type: 6 @@ -110,15 +110,15 @@ VisualTest { } Frame { msec: 400 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 416 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 432 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Key { type: 7 @@ -130,27 +130,27 @@ VisualTest { } Frame { msec: 448 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 464 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 480 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 496 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 512 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 528 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Key { type: 6 @@ -162,15 +162,15 @@ VisualTest { } Frame { msec: 544 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 560 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 576 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Key { type: 7 @@ -182,27 +182,27 @@ VisualTest { } Frame { msec: 592 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 608 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 624 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 640 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 656 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 672 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Key { type: 6 @@ -214,19 +214,19 @@ VisualTest { } Frame { msec: 688 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 704 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 720 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 736 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Key { type: 7 @@ -238,23 +238,23 @@ VisualTest { } Frame { msec: 752 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 768 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 784 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 800 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 816 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Key { type: 6 @@ -266,19 +266,19 @@ VisualTest { } Frame { msec: 832 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 848 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 864 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 880 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Key { type: 7 @@ -290,19 +290,19 @@ VisualTest { } Frame { msec: 896 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 912 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 928 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 944 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Key { type: 6 @@ -314,19 +314,19 @@ VisualTest { } Frame { msec: 960 - image: "qt-669.0.png" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 976 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + image: "qt-669.1.png" } Frame { msec: 992 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 1008 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Key { type: 7 @@ -338,23 +338,23 @@ VisualTest { } Frame { msec: 1024 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 1040 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 1056 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 1072 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 1088 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Key { type: 6 @@ -366,15 +366,15 @@ VisualTest { } Frame { msec: 1104 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Frame { msec: 1120 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Frame { msec: 1136 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Key { type: 7 @@ -386,23 +386,23 @@ VisualTest { } Frame { msec: 1152 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Frame { msec: 1168 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Frame { msec: 1184 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Frame { msec: 1200 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Frame { msec: 1216 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Key { type: 6 @@ -414,19 +414,19 @@ VisualTest { } Frame { msec: 1232 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 1248 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 1264 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 1280 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Key { type: 7 @@ -438,19 +438,19 @@ VisualTest { } Frame { msec: 1296 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 1312 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 1328 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 1344 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Key { type: 6 @@ -462,19 +462,19 @@ VisualTest { } Frame { msec: 1360 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1376 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1392 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1408 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Key { type: 7 @@ -486,23 +486,23 @@ VisualTest { } Frame { msec: 1424 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1440 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1456 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1472 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1488 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Key { type: 6 @@ -514,15 +514,15 @@ VisualTest { } Frame { msec: 1504 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1520 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1536 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Key { type: 7 @@ -534,79 +534,79 @@ VisualTest { } Frame { msec: 1552 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1568 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1584 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1600 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1616 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1632 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1648 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1664 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1680 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1696 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1712 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1728 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1744 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1760 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1776 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1792 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1808 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1824 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Frame { msec: 1840 - hash: "781a5a09fb6c6ca1fd38f63938f9c8d0" + hash: "389d0ac399e709482600181b4869be43" } Key { type: 6 @@ -618,39 +618,39 @@ VisualTest { } Frame { msec: 1856 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1872 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1888 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1904 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1920 - image: "qt-669.1.png" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1936 - hash: "2718ab36551a20d36664f26e408f8f24" + image: "qt-669.2.png" } Frame { msec: 1952 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1968 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 1984 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Key { type: 7 @@ -662,23 +662,23 @@ VisualTest { } Frame { msec: 2000 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 2016 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 2032 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 2048 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Frame { msec: 2064 - hash: "2718ab36551a20d36664f26e408f8f24" + hash: "9ec7c9965d3ce810553b1182b746d148" } Key { type: 6 @@ -690,23 +690,23 @@ VisualTest { } Frame { msec: 2080 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 2096 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 2112 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 2128 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 2144 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Key { type: 7 @@ -718,23 +718,23 @@ VisualTest { } Frame { msec: 2160 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 2176 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 2192 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 2208 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Frame { msec: 2224 - hash: "823ccdc677997c96e4ae16891ffffa77" + hash: "fca9d1748195f0d4388694baf901c498" } Key { type: 6 @@ -746,11 +746,11 @@ VisualTest { } Frame { msec: 2240 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Frame { msec: 2256 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Key { type: 7 @@ -762,23 +762,23 @@ VisualTest { } Frame { msec: 2272 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Frame { msec: 2288 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Frame { msec: 2304 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Frame { msec: 2320 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Frame { msec: 2336 - hash: "f90403e0b62f9579b5c5f591e75e9eb5" + hash: "f531e8dd89482e3d7c501d0b3a8b3392" } Key { type: 6 @@ -790,15 +790,15 @@ VisualTest { } Frame { msec: 2352 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2368 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2384 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Key { type: 7 @@ -810,55 +810,55 @@ VisualTest { } Frame { msec: 2400 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2416 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2432 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2448 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2464 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2480 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2496 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2512 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2528 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2544 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2560 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2576 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Frame { msec: 2592 - hash: "1295bd1d94fe518d5a871e90cab88e0c" + hash: "a719560bf7912aa6cf4e8e5bfc13cb06" } Key { type: 6 @@ -870,23 +870,23 @@ VisualTest { } Frame { msec: 2608 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 2624 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 2640 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 2656 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 2672 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Key { type: 7 @@ -898,23 +898,23 @@ VisualTest { } Frame { msec: 2688 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 2704 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 2720 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 2736 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Frame { msec: 2752 - hash: "c186352ed5d1539a45b3c9e1dfa408d6" + hash: "86e1ba72951c0c193bfd2cd2162c500e" } Key { type: 6 @@ -926,15 +926,15 @@ VisualTest { } Frame { msec: 2768 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 2784 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 2800 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Key { type: 7 @@ -946,19 +946,19 @@ VisualTest { } Frame { msec: 2816 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 2832 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 2848 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Frame { msec: 2864 - hash: "c602a6535ef86125615307d9d187eb3f" + hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" } Key { type: 6 @@ -970,19 +970,19 @@ VisualTest { } Frame { msec: 2880 - image: "qt-669.2.png" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 2896 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + image: "qt-669.3.png" } Frame { msec: 2912 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 2928 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Key { type: 7 @@ -994,23 +994,23 @@ VisualTest { } Frame { msec: 2944 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 2960 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 2976 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 2992 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Frame { msec: 3008 - hash: "fbc07fa31ab2022f3155bd1fb591fe6c" + hash: "e2a49d72741ba08c258bb70d3a13c7f6" } Key { type: 6 @@ -1022,23 +1022,23 @@ VisualTest { } Frame { msec: 3024 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3040 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3056 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3072 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3088 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Key { type: 7 @@ -1050,155 +1050,155 @@ VisualTest { } Frame { msec: 3104 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3120 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3136 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3152 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3168 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3184 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3200 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3216 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3232 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3248 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3264 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3280 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3296 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3312 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3328 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3344 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3360 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3376 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3392 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3408 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3424 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3440 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3456 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3472 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3488 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3504 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3520 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3536 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3552 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3568 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3584 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3600 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3616 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3632 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3648 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3664 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3680 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Frame { msec: 3696 - hash: "e64c3246a0f81e2df29ac276ac6d411f" + hash: "1d69ccdf88fa78b44a77147190bf1dfc" } Key { type: 6 @@ -1210,27 +1210,27 @@ VisualTest { } Frame { msec: 3712 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3728 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3744 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3760 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3776 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3792 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Key { type: 7 @@ -1242,130 +1242,130 @@ VisualTest { } Frame { msec: 3808 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3824 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3840 - image: "qt-669.3.png" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3856 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + image: "qt-669.4.png" } Frame { msec: 3872 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3888 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3904 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3920 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3936 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3952 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3968 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 3984 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4000 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4016 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4032 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4048 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4064 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4080 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4096 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4112 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4128 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4144 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4160 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4176 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4192 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4208 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4224 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4240 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4256 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4272 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4288 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } Frame { msec: 4304 - hash: "c043ae4adb31cb53bfc089e7f2ed07b2" + hash: "32c2b08a6123015ca72f283f89ee1663" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.0.png Binary files differnew file mode 100644 index 0000000..0b4ca4e --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.1.png Binary files differnew file mode 100644 index 0000000..251beb6 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.10.png Binary files differnew file mode 100644 index 0000000..5cd2d7d --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.10.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.11.png Binary files differnew file mode 100644 index 0000000..5cd2d7d --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.11.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.12.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.12.png Binary files differnew file mode 100644 index 0000000..5cd2d7d --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.12.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.2.png Binary files differnew file mode 100644 index 0000000..bf6a44e --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.3.png Binary files differnew file mode 100644 index 0000000..1089578 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.4.png Binary files differnew file mode 100644 index 0000000..c9113de --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.5.png Binary files differnew file mode 100644 index 0000000..47b4744 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.6.png Binary files differnew file mode 100644 index 0000000..c518204 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.6.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.7.png Binary files differnew file mode 100644 index 0000000..9f1c26a --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.7.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.8.png Binary files differnew file mode 100644 index 0000000..cd8d0a5 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.8.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.9.png Binary files differnew file mode 100644 index 0000000..8f5f872 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.9.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.qml new file mode 100644 index 0000000..a064bf3 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.qml @@ -0,0 +1,4687 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "usingMultilineEdit.0.png" + } + Frame { + msec: 32 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 48 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 64 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 80 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 96 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 112 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 128 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 144 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 160 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 176 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 192 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 208 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 224 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 240 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 256 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 272 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 288 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 304 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 320 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 118; y: 70 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 336 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 352 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 368 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 384 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 400 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 118; y: 70 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 416 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 432 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 448 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 464 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 480 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 496 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 512 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 528 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 544 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 560 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 576 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 592 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 608 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 624 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Frame { + msec: 640 + hash: "9d5bfe023a03fde612678d000e7d4135" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 117; y: 102 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 656 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 672 + hash: "73232e1c199b5dda158a7e765386a716" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 117; y: 102 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 688 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 704 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 720 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 736 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 752 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 768 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 784 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 800 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 816 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 832 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 848 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 864 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 880 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 896 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 912 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 928 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 944 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 960 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 976 + image: "usingMultilineEdit.1.png" + } + Frame { + msec: 992 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1008 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1024 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1040 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1056 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1072 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1088 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1104 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1120 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1136 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1152 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1168 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1184 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1200 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1216 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1232 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1248 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1264 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1280 + hash: "73232e1c199b5dda158a7e765386a716" + } + Frame { + msec: 1296 + hash: "73232e1c199b5dda158a7e765386a716" + } + Key { + type: 6 + key: 44 + modifiers: 0 + text: "2c" + autorep: false + count: 1 + } + Frame { + msec: 1312 + hash: "75aa32bf4bfdda0dfcf04768bf931da6" + } + Frame { + msec: 1328 + hash: "75aa32bf4bfdda0dfcf04768bf931da6" + } + Frame { + msec: 1344 + hash: "75aa32bf4bfdda0dfcf04768bf931da6" + } + Frame { + msec: 1360 + hash: "75aa32bf4bfdda0dfcf04768bf931da6" + } + Frame { + msec: 1376 + hash: "75aa32bf4bfdda0dfcf04768bf931da6" + } + Key { + type: 7 + key: 44 + modifiers: 0 + text: "2c" + autorep: false + count: 1 + } + Frame { + msec: 1392 + hash: "75aa32bf4bfdda0dfcf04768bf931da6" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1408 + hash: "7243b903b5b7d8c323a233ae13a2ddf3" + } + Frame { + msec: 1424 + hash: "7243b903b5b7d8c323a233ae13a2ddf3" + } + Frame { + msec: 1440 + hash: "7243b903b5b7d8c323a233ae13a2ddf3" + } + Frame { + msec: 1456 + hash: "7243b903b5b7d8c323a233ae13a2ddf3" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1472 + hash: "7243b903b5b7d8c323a233ae13a2ddf3" + } + Frame { + msec: 1488 + hash: "7243b903b5b7d8c323a233ae13a2ddf3" + } + Frame { + msec: 1504 + hash: "7243b903b5b7d8c323a233ae13a2ddf3" + } + Frame { + msec: 1520 + hash: "7243b903b5b7d8c323a233ae13a2ddf3" + } + Frame { + msec: 1536 + hash: "7243b903b5b7d8c323a233ae13a2ddf3" + } + Frame { + msec: 1552 + hash: "7243b903b5b7d8c323a233ae13a2ddf3" + } + Key { + type: 6 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1568 + hash: "676834a4ee84cb251c6ed102be89ea2e" + } + Frame { + msec: 1584 + hash: "676834a4ee84cb251c6ed102be89ea2e" + } + Frame { + msec: 1600 + hash: "676834a4ee84cb251c6ed102be89ea2e" + } + Key { + type: 7 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1616 + hash: "676834a4ee84cb251c6ed102be89ea2e" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1632 + hash: "74a81081cd0547624cc4168e824b48b8" + } + Frame { + msec: 1648 + hash: "74a81081cd0547624cc4168e824b48b8" + } + Frame { + msec: 1664 + hash: "74a81081cd0547624cc4168e824b48b8" + } + Frame { + msec: 1680 + hash: "74a81081cd0547624cc4168e824b48b8" + } + Frame { + msec: 1696 + hash: "74a81081cd0547624cc4168e824b48b8" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1712 + hash: "74a81081cd0547624cc4168e824b48b8" + } + Frame { + msec: 1728 + hash: "74a81081cd0547624cc4168e824b48b8" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1744 + hash: "4c736b2bffb38df898478e3d0ce37fb0" + } + Frame { + msec: 1760 + hash: "4c736b2bffb38df898478e3d0ce37fb0" + } + Frame { + msec: 1776 + hash: "4c736b2bffb38df898478e3d0ce37fb0" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1792 + hash: "4c736b2bffb38df898478e3d0ce37fb0" + } + Frame { + msec: 1808 + hash: "4c736b2bffb38df898478e3d0ce37fb0" + } + Frame { + msec: 1824 + hash: "4c736b2bffb38df898478e3d0ce37fb0" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 1840 + hash: "fd070c77e33e1498bacf0076903d33d7" + } + Frame { + msec: 1856 + hash: "fd070c77e33e1498bacf0076903d33d7" + } + Frame { + msec: 1872 + hash: "fd070c77e33e1498bacf0076903d33d7" + } + Frame { + msec: 1888 + hash: "fd070c77e33e1498bacf0076903d33d7" + } + Frame { + msec: 1904 + hash: "fd070c77e33e1498bacf0076903d33d7" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1920 + hash: "2ce31e62bfe5c1a62621fe4ea6bb07ab" + } + Frame { + msec: 1936 + image: "usingMultilineEdit.2.png" + } + Frame { + msec: 1952 + hash: "2ce31e62bfe5c1a62621fe4ea6bb07ab" + } + Frame { + msec: 1968 + hash: "2ce31e62bfe5c1a62621fe4ea6bb07ab" + } + Key { + type: 6 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 1984 + hash: "77f7b91dba63e20e92b47575ae2f1a85" + } + Frame { + msec: 2000 + hash: "77f7b91dba63e20e92b47575ae2f1a85" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 2016 + hash: "77f7b91dba63e20e92b47575ae2f1a85" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2032 + hash: "6c881ac1c94b6648ce1a2c39e477906c" + } + Frame { + msec: 2048 + hash: "6c881ac1c94b6648ce1a2c39e477906c" + } + Key { + type: 7 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 2064 + hash: "6c881ac1c94b6648ce1a2c39e477906c" + } + Frame { + msec: 2080 + hash: "6c881ac1c94b6648ce1a2c39e477906c" + } + Frame { + msec: 2096 + hash: "6c881ac1c94b6648ce1a2c39e477906c" + } + Frame { + msec: 2112 + hash: "6c881ac1c94b6648ce1a2c39e477906c" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2128 + hash: "6c881ac1c94b6648ce1a2c39e477906c" + } + Frame { + msec: 2144 + hash: "6c881ac1c94b6648ce1a2c39e477906c" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 2160 + hash: "8799a9ee6ae4334c0e595c75160cbb35" + } + Frame { + msec: 2176 + hash: "8799a9ee6ae4334c0e595c75160cbb35" + } + Frame { + msec: 2192 + hash: "8799a9ee6ae4334c0e595c75160cbb35" + } + Frame { + msec: 2208 + hash: "8799a9ee6ae4334c0e595c75160cbb35" + } + Frame { + msec: 2224 + hash: "8799a9ee6ae4334c0e595c75160cbb35" + } + Frame { + msec: 2240 + hash: "8799a9ee6ae4334c0e595c75160cbb35" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Key { + type: 6 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 2256 + hash: "1947b07da95b6fb20dfa0189d2e099f4" + } + Frame { + msec: 2272 + hash: "1947b07da95b6fb20dfa0189d2e099f4" + } + Frame { + msec: 2288 + hash: "1947b07da95b6fb20dfa0189d2e099f4" + } + Frame { + msec: 2304 + hash: "1947b07da95b6fb20dfa0189d2e099f4" + } + Frame { + msec: 2320 + hash: "1947b07da95b6fb20dfa0189d2e099f4" + } + Key { + type: 7 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 2336 + hash: "1947b07da95b6fb20dfa0189d2e099f4" + } + Frame { + msec: 2352 + hash: "1947b07da95b6fb20dfa0189d2e099f4" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 2368 + hash: "f4831fddbb6dccd2add6c381abe18ff5" + } + Frame { + msec: 2384 + hash: "f4831fddbb6dccd2add6c381abe18ff5" + } + Frame { + msec: 2400 + hash: "f4831fddbb6dccd2add6c381abe18ff5" + } + Frame { + msec: 2416 + hash: "f4831fddbb6dccd2add6c381abe18ff5" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 2432 + hash: "f4831fddbb6dccd2add6c381abe18ff5" + } + Key { + type: 6 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 2448 + hash: "c8e601e39d6399c3bcbe99080e10e77b" + } + Frame { + msec: 2464 + hash: "c8e601e39d6399c3bcbe99080e10e77b" + } + Frame { + msec: 2480 + hash: "c8e601e39d6399c3bcbe99080e10e77b" + } + Frame { + msec: 2496 + hash: "c8e601e39d6399c3bcbe99080e10e77b" + } + Frame { + msec: 2512 + hash: "c8e601e39d6399c3bcbe99080e10e77b" + } + Frame { + msec: 2528 + hash: "c8e601e39d6399c3bcbe99080e10e77b" + } + Key { + type: 7 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 2544 + hash: "c8e601e39d6399c3bcbe99080e10e77b" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2560 + hash: "895b6084f9cd58d0746270468d037fc3" + } + Frame { + msec: 2576 + hash: "895b6084f9cd58d0746270468d037fc3" + } + Frame { + msec: 2592 + hash: "895b6084f9cd58d0746270468d037fc3" + } + Frame { + msec: 2608 + hash: "895b6084f9cd58d0746270468d037fc3" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2624 + hash: "895b6084f9cd58d0746270468d037fc3" + } + Frame { + msec: 2640 + hash: "895b6084f9cd58d0746270468d037fc3" + } + Frame { + msec: 2656 + hash: "895b6084f9cd58d0746270468d037fc3" + } + Frame { + msec: 2672 + hash: "895b6084f9cd58d0746270468d037fc3" + } + Frame { + msec: 2688 + hash: "895b6084f9cd58d0746270468d037fc3" + } + Key { + type: 6 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 2704 + hash: "ded3a272885f24140fb8d21835ae6b3a" + } + Frame { + msec: 2720 + hash: "ded3a272885f24140fb8d21835ae6b3a" + } + Frame { + msec: 2736 + hash: "ded3a272885f24140fb8d21835ae6b3a" + } + Frame { + msec: 2752 + hash: "ded3a272885f24140fb8d21835ae6b3a" + } + Frame { + msec: 2768 + hash: "ded3a272885f24140fb8d21835ae6b3a" + } + Frame { + msec: 2784 + hash: "ded3a272885f24140fb8d21835ae6b3a" + } + Key { + type: 6 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2800 + hash: "9339ea22fd115b8ae025c0b3a588ca1c" + } + Key { + type: 7 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 2816 + hash: "9339ea22fd115b8ae025c0b3a588ca1c" + } + Frame { + msec: 2832 + hash: "9339ea22fd115b8ae025c0b3a588ca1c" + } + Frame { + msec: 2848 + hash: "9339ea22fd115b8ae025c0b3a588ca1c" + } + Frame { + msec: 2864 + hash: "9339ea22fd115b8ae025c0b3a588ca1c" + } + Key { + type: 7 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2880 + hash: "9339ea22fd115b8ae025c0b3a588ca1c" + } + Frame { + msec: 2896 + image: "usingMultilineEdit.3.png" + } + Frame { + msec: 2912 + hash: "9339ea22fd115b8ae025c0b3a588ca1c" + } + Frame { + msec: 2928 + hash: "9339ea22fd115b8ae025c0b3a588ca1c" + } + Key { + type: 6 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Frame { + msec: 2944 + hash: "1f219781fb7a7682d27cb875900d077a" + } + Frame { + msec: 2960 + hash: "1f219781fb7a7682d27cb875900d077a" + } + Frame { + msec: 2976 + hash: "1f219781fb7a7682d27cb875900d077a" + } + Key { + type: 7 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Key { + type: 6 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 2992 + hash: "20bd65f158440301e6cf14463e498368" + } + Frame { + msec: 3008 + hash: "20bd65f158440301e6cf14463e498368" + } + Frame { + msec: 3024 + hash: "20bd65f158440301e6cf14463e498368" + } + Frame { + msec: 3040 + hash: "20bd65f158440301e6cf14463e498368" + } + Key { + type: 7 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 3056 + hash: "20bd65f158440301e6cf14463e498368" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3072 + hash: "3e73d53051a3175393f4ecb486645bf9" + } + Frame { + msec: 3088 + hash: "3e73d53051a3175393f4ecb486645bf9" + } + Frame { + msec: 3104 + hash: "3e73d53051a3175393f4ecb486645bf9" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3120 + hash: "3e73d53051a3175393f4ecb486645bf9" + } + Key { + type: 7 + key: 32 + modifiers: 33554432 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3136 + hash: "3e73d53051a3175393f4ecb486645bf9" + } + Frame { + msec: 3152 + hash: "3e73d53051a3175393f4ecb486645bf9" + } + Key { + type: 6 + key: 73 + modifiers: 33554432 + text: "49" + autorep: false + count: 1 + } + Frame { + msec: 3168 + hash: "6f566097d23557bef60969852cd3515e" + } + Frame { + msec: 3184 + hash: "6f566097d23557bef60969852cd3515e" + } + Frame { + msec: 3200 + hash: "6f566097d23557bef60969852cd3515e" + } + Frame { + msec: 3216 + hash: "6f566097d23557bef60969852cd3515e" + } + Key { + type: 7 + key: 73 + modifiers: 33554432 + text: "49" + autorep: false + count: 1 + } + Frame { + msec: 3232 + hash: "6f566097d23557bef60969852cd3515e" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3248 + hash: "4767592fe68e8d32d286cf5eaf4510ff" + } + Frame { + msec: 3264 + hash: "4767592fe68e8d32d286cf5eaf4510ff" + } + Frame { + msec: 3280 + hash: "4767592fe68e8d32d286cf5eaf4510ff" + } + Frame { + msec: 3296 + hash: "4767592fe68e8d32d286cf5eaf4510ff" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3312 + hash: "4767592fe68e8d32d286cf5eaf4510ff" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3328 + hash: "d7fd1a19be4f061fc39c4accf18ba0dc" + } + Frame { + msec: 3344 + hash: "d7fd1a19be4f061fc39c4accf18ba0dc" + } + Frame { + msec: 3360 + hash: "d7fd1a19be4f061fc39c4accf18ba0dc" + } + Frame { + msec: 3376 + hash: "d7fd1a19be4f061fc39c4accf18ba0dc" + } + Frame { + msec: 3392 + hash: "d7fd1a19be4f061fc39c4accf18ba0dc" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3408 + hash: "d7fd1a19be4f061fc39c4accf18ba0dc" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 3424 + hash: "03e74ddf4c94d322c1b1b35419157948" + } + Frame { + msec: 3440 + hash: "03e74ddf4c94d322c1b1b35419157948" + } + Frame { + msec: 3456 + hash: "03e74ddf4c94d322c1b1b35419157948" + } + Frame { + msec: 3472 + hash: "03e74ddf4c94d322c1b1b35419157948" + } + Frame { + msec: 3488 + hash: "03e74ddf4c94d322c1b1b35419157948" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Key { + type: 6 + key: 78 + modifiers: 0 + text: "6e" + autorep: false + count: 1 + } + Frame { + msec: 3504 + hash: "32712a89ba577f55319fe90873668138" + } + Frame { + msec: 3520 + hash: "32712a89ba577f55319fe90873668138" + } + Frame { + msec: 3536 + hash: "32712a89ba577f55319fe90873668138" + } + Frame { + msec: 3552 + hash: "32712a89ba577f55319fe90873668138" + } + Frame { + msec: 3568 + hash: "32712a89ba577f55319fe90873668138" + } + Frame { + msec: 3584 + hash: "32712a89ba577f55319fe90873668138" + } + Key { + type: 7 + key: 78 + modifiers: 0 + text: "6e" + autorep: false + count: 1 + } + Frame { + msec: 3600 + hash: "32712a89ba577f55319fe90873668138" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 3616 + hash: "9f1cf9784c0659f4902d632542fe9d52" + } + Frame { + msec: 3632 + hash: "9f1cf9784c0659f4902d632542fe9d52" + } + Frame { + msec: 3648 + hash: "9f1cf9784c0659f4902d632542fe9d52" + } + Frame { + msec: 3664 + hash: "9f1cf9784c0659f4902d632542fe9d52" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3680 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 3696 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3712 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3728 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3744 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3760 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3776 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3792 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3808 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3824 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3840 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3856 + image: "usingMultilineEdit.4.png" + } + Frame { + msec: 3872 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3888 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3904 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3920 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3936 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3952 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Frame { + msec: 3968 + hash: "b350f3b710a0d36ba56bdce6c86f902e" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 3984 + hash: "2b44bf2548bd887f22e5689946e24de5" + } + Frame { + msec: 4000 + hash: "2b44bf2548bd887f22e5689946e24de5" + } + Frame { + msec: 4016 + hash: "2b44bf2548bd887f22e5689946e24de5" + } + Frame { + msec: 4032 + hash: "2b44bf2548bd887f22e5689946e24de5" + } + Frame { + msec: 4048 + hash: "2b44bf2548bd887f22e5689946e24de5" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4064 + hash: "925c7c96166cc75dc92bd280fd354e43" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 4080 + hash: "925c7c96166cc75dc92bd280fd354e43" + } + Frame { + msec: 4096 + hash: "925c7c96166cc75dc92bd280fd354e43" + } + Frame { + msec: 4112 + hash: "925c7c96166cc75dc92bd280fd354e43" + } + Frame { + msec: 4128 + hash: "925c7c96166cc75dc92bd280fd354e43" + } + Key { + type: 6 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 4144 + hash: "61d6f7583f143917b86adcad6a5ba909" + } + Frame { + msec: 4160 + hash: "61d6f7583f143917b86adcad6a5ba909" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4176 + hash: "61d6f7583f143917b86adcad6a5ba909" + } + Frame { + msec: 4192 + hash: "61d6f7583f143917b86adcad6a5ba909" + } + Frame { + msec: 4208 + hash: "61d6f7583f143917b86adcad6a5ba909" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 4224 + hash: "679e0940be9c40435aebb05a6e0da685" + } + Frame { + msec: 4240 + hash: "679e0940be9c40435aebb05a6e0da685" + } + Key { + type: 7 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 4256 + hash: "679e0940be9c40435aebb05a6e0da685" + } + Frame { + msec: 4272 + hash: "679e0940be9c40435aebb05a6e0da685" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 4288 + hash: "679e0940be9c40435aebb05a6e0da685" + } + Frame { + msec: 4304 + hash: "679e0940be9c40435aebb05a6e0da685" + } + Frame { + msec: 4320 + hash: "679e0940be9c40435aebb05a6e0da685" + } + Frame { + msec: 4336 + hash: "679e0940be9c40435aebb05a6e0da685" + } + Frame { + msec: 4352 + hash: "679e0940be9c40435aebb05a6e0da685" + } + Frame { + msec: 4368 + hash: "679e0940be9c40435aebb05a6e0da685" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4384 + hash: "e819d25f605ec1347e89de65682edb7d" + } + Frame { + msec: 4400 + hash: "e819d25f605ec1347e89de65682edb7d" + } + Frame { + msec: 4416 + hash: "e819d25f605ec1347e89de65682edb7d" + } + Frame { + msec: 4432 + hash: "e819d25f605ec1347e89de65682edb7d" + } + Frame { + msec: 4448 + hash: "e819d25f605ec1347e89de65682edb7d" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4464 + hash: "e819d25f605ec1347e89de65682edb7d" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4480 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4496 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4512 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4528 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4544 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4560 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4576 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4592 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 4608 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4624 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4640 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4656 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4672 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4688 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4704 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4720 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4736 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4752 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4768 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4784 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4800 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Frame { + msec: 4816 + image: "usingMultilineEdit.5.png" + } + Frame { + msec: 4832 + hash: "ef65860a90a96d521a860c4e73e833ee" + } + Key { + type: 6 + key: 63 + modifiers: 33554432 + text: "3f" + autorep: false + count: 1 + } + Frame { + msec: 4848 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 4864 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 4880 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 4896 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 4912 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 4928 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 4944 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Key { + type: 7 + key: 63 + modifiers: 33554432 + text: "3f" + autorep: false + count: 1 + } + Frame { + msec: 4960 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 4976 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 4992 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5008 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 5024 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5040 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5056 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5072 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5088 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5104 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5120 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5136 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5152 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5168 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5184 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5200 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5216 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5232 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5248 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5264 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5280 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5296 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5312 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5328 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5344 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5360 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5376 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5392 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5408 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5424 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5440 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5456 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5472 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5488 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5504 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5520 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5536 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5552 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5568 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5584 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5600 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5616 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5632 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5648 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5664 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5680 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5696 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5712 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5728 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5744 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Frame { + msec: 5760 + hash: "84497b5307b95f59693b71dc13c838ef" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 48; y: 19 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5776 + image: "usingMultilineEdit.6.png" + } + Frame { + msec: 5792 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 5808 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 5824 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: 21 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: 22 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5840 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: 23 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: 26 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5856 + hash: "ee9722d220435828b919fa4d8e314b78" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 53; y: 31 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 33 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5872 + hash: "ee9722d220435828b919fa4d8e314b78" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 36 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 56; y: 41 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5888 + hash: "8a06a84965166774ff160984ed05b5ad" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 56; y: 44 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5904 + hash: "0a9ec173aa0436b9b9edf3f20946ae5a" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 58; y: 52 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 58 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5920 + hash: "0a9ec173aa0436b9b9edf3f20946ae5a" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 64 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 69 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5936 + hash: "5511590b6b6826d8e863956220eee2e4" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 62; y: 75 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 80 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5952 + hash: "4d413c13e43c57809af8ee83a165dcb1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 86 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 90 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5968 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 97 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5984 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 101 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 105 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6000 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 108 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 111 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6016 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 114 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 116 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6032 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 119 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 122 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6048 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 124 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 128 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6064 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 130 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 132 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6080 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 134 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 137 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6096 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 138 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 140 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6112 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 141 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 144 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6128 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 145 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 148 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6144 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 149 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 151 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6160 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 153 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 154 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6176 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 155 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6192 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Frame { + msec: 6208 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Frame { + msec: 6224 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Frame { + msec: 6240 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Frame { + msec: 6256 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 154 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6272 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 152 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 149 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6288 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 145 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 139 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6304 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 126 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 117 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6320 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 108 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 63; y: 98 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6336 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 88 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 80 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6352 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 72 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 64 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6368 + hash: "cc0c5811bc845540c2c550cefe45ab1c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 58 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 51 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6384 + hash: "b35bc1db0fd5b95bb830a9be9ded1659" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 37 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6400 + hash: "b35bc1db0fd5b95bb830a9be9ded1659" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 30 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 23 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6416 + hash: "576bbe32d2b6f582cbb0102d2b0e079b" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 16 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 6 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6432 + hash: "15a7ee7f58f286ae22385c2817b9b697" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -2 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -9 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6448 + hash: "5cd516c20c91c407ca9932ea89afd100" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 48; y: -23 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6464 + hash: "40ce8b3c3588727a37e03dd83cb3d536" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -31 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -38 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6480 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -45 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6496 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6512 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6528 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6544 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6560 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6576 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6592 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Frame { + msec: 6608 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Frame { + msec: 6624 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Frame { + msec: 6640 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Frame { + msec: 6656 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Frame { + msec: 6672 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -47 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -46 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6688 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -45 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 44; y: -42 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6704 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 44; y: -39 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -36 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6720 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -33 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 46; y: -28 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6736 + image: "usingMultilineEdit.7.png" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -25 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -21 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6752 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 48; y: -18 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: -14 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6768 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: -10 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -8 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6784 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -6 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: -3 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6800 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: -1 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 0 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6816 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 2 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 3 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6832 + hash: "384cc9f557dd56079a54c1f0460bf96f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 53; y: 5 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 7 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6848 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 8 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 10 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6864 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 11 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 12 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6880 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 55; y: 12 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6896 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 6912 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 6928 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 6944 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 6960 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 6976 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 6992 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 7008 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 7024 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 7040 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 7056 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 7072 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Frame { + msec: 7088 + hash: "a3d9bdf8086303458ae5d35294551894" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 59; y: 44 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 7104 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7120 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7136 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7152 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7168 + hash: "a5755969d822cae00af992085c419a17" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 59; y: 44 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 7184 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7200 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7216 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7232 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7248 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7264 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7280 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7296 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7312 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7328 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7344 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7360 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7376 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7392 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7408 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7424 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7440 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7456 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7472 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7488 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7504 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7520 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7536 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7552 + hash: "a5755969d822cae00af992085c419a17" + } + Frame { + msec: 7568 + hash: "a5755969d822cae00af992085c419a17" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7584 + hash: "2395700fc4c3080e99b8871518113778" + } + Frame { + msec: 7600 + hash: "2395700fc4c3080e99b8871518113778" + } + Frame { + msec: 7616 + hash: "2395700fc4c3080e99b8871518113778" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7632 + hash: "2395700fc4c3080e99b8871518113778" + } + Frame { + msec: 7648 + hash: "2395700fc4c3080e99b8871518113778" + } + Frame { + msec: 7664 + hash: "2395700fc4c3080e99b8871518113778" + } + Frame { + msec: 7680 + hash: "2395700fc4c3080e99b8871518113778" + } + Frame { + msec: 7696 + image: "usingMultilineEdit.8.png" + } + Frame { + msec: 7712 + hash: "2395700fc4c3080e99b8871518113778" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7728 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7744 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7760 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7776 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7792 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7808 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7824 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7840 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7856 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7872 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7888 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7904 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7920 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7936 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Frame { + msec: 7952 + hash: "71e055a9dbd940b3445d5ad9e277b483" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 7968 + hash: "2ed8cb467e60f2fb253abb37bdc18a9a" + } + Frame { + msec: 7984 + hash: "2ed8cb467e60f2fb253abb37bdc18a9a" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8000 + hash: "5783992a07652cfc53bfa0e1f36c1415" + } + Frame { + msec: 8016 + hash: "5783992a07652cfc53bfa0e1f36c1415" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8032 + hash: "0fa5790dcbcb740d530b6333063629d6" + } + Frame { + msec: 8048 + hash: "0fa5790dcbcb740d530b6333063629d6" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8064 + hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" + } + Frame { + msec: 8080 + hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Key { + type: 7 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8096 + hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" + } + Frame { + msec: 8112 + hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" + } + Frame { + msec: 8128 + hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" + } + Frame { + msec: 8144 + hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" + } + Frame { + msec: 8160 + hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" + } + Frame { + msec: 8176 + hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" + } + Frame { + msec: 8192 + hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8208 + hash: "8f59f9f91dbcf608143925ff1f974151" + } + Frame { + msec: 8224 + hash: "8f59f9f91dbcf608143925ff1f974151" + } + Frame { + msec: 8240 + hash: "8f59f9f91dbcf608143925ff1f974151" + } + Frame { + msec: 8256 + hash: "8f59f9f91dbcf608143925ff1f974151" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8272 + hash: "8f59f9f91dbcf608143925ff1f974151" + } + Frame { + msec: 8288 + hash: "8f59f9f91dbcf608143925ff1f974151" + } + Frame { + msec: 8304 + hash: "8f59f9f91dbcf608143925ff1f974151" + } + Frame { + msec: 8320 + hash: "8f59f9f91dbcf608143925ff1f974151" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8336 + hash: "fc48aa2746eaaf31312de3c37d821ff0" + } + Frame { + msec: 8352 + hash: "fc48aa2746eaaf31312de3c37d821ff0" + } + Frame { + msec: 8368 + hash: "fc48aa2746eaaf31312de3c37d821ff0" + } + Frame { + msec: 8384 + hash: "fc48aa2746eaaf31312de3c37d821ff0" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8400 + hash: "fc48aa2746eaaf31312de3c37d821ff0" + } + Frame { + msec: 8416 + hash: "fc48aa2746eaaf31312de3c37d821ff0" + } + Frame { + msec: 8432 + hash: "fc48aa2746eaaf31312de3c37d821ff0" + } + Frame { + msec: 8448 + hash: "fc48aa2746eaaf31312de3c37d821ff0" + } + Frame { + msec: 8464 + hash: "fc48aa2746eaaf31312de3c37d821ff0" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8480 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8496 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8512 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8528 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8544 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8560 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8576 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8592 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8608 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8624 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8640 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8656 + image: "usingMultilineEdit.9.png" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8672 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8688 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8704 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8720 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8736 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8752 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8768 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8784 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8800 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8816 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8832 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8848 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8864 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8880 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8896 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8912 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8928 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8944 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8960 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8976 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 8992 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9008 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9024 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9040 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9056 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9072 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9088 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9104 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9120 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9136 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9152 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9168 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9184 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9200 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 70; y: 73 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9216 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9232 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 74 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9248 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 75 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 76 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9264 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 77 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 78 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9280 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 70; y: 78 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9296 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9312 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9328 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9344 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9360 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9376 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9392 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9408 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9424 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Frame { + msec: 9440 + hash: "61856cf1f8f2ef6d0b365ab3d7eece51" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 71; y: 94 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9456 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9472 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9488 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9504 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9520 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9536 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 71; y: 94 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9552 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9568 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9584 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9600 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9616 + image: "usingMultilineEdit.10.png" + } + Frame { + msec: 9632 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9648 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9664 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 9680 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9696 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9712 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9728 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9744 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9760 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9776 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9792 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9808 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9824 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9840 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9856 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9872 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9888 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9904 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9920 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9936 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9952 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9968 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 9984 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10000 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10016 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10032 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10048 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10064 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10080 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10096 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Key { + type: 6 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10112 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10128 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10144 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10160 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10176 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10192 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10208 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10224 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Key { + type: 7 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10240 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10256 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10272 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10288 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10304 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10320 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10336 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Frame { + msec: 10352 + hash: "2ccfdac58b836aa89d2a75d0bdca6624" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10368 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10384 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10400 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10416 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10432 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10448 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10464 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10480 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10496 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10512 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10528 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10544 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10560 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10576 + image: "usingMultilineEdit.11.png" + } + Frame { + msec: 10592 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10608 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10624 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10640 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10656 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10672 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10688 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10704 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10720 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10736 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10752 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10768 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10784 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10800 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10816 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10832 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10848 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10864 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10880 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10896 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10912 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10928 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10944 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10960 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10976 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 10992 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11008 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11024 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11040 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11056 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11072 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11088 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11104 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11120 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11136 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11152 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11168 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11184 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11200 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11216 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11232 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11248 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11264 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11280 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11296 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11312 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11328 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11344 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11360 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11376 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11392 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11408 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11424 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11440 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11456 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11472 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11488 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11504 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11520 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11536 + image: "usingMultilineEdit.12.png" + } + Frame { + msec: 11552 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11568 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11584 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11600 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } + Frame { + msec: 11616 + hash: "37a675ab007d0e0a8f3735d4d84505de" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.0.png Binary files differnew file mode 100644 index 0000000..a61ba5a --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.1.png Binary files differnew file mode 100644 index 0000000..2a28c96 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.2.png Binary files differnew file mode 100644 index 0000000..d1ddaa6 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.3.png Binary files differnew file mode 100644 index 0000000..493c5cd --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.4.png Binary files differnew file mode 100644 index 0000000..2b2ce59 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.5.png Binary files differnew file mode 100644 index 0000000..044eea4 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.6.png Binary files differnew file mode 100644 index 0000000..f0748b2 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.6.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.7.png Binary files differnew file mode 100644 index 0000000..f0748b2 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.7.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.qml new file mode 100644 index 0000000..f5af59f --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.qml @@ -0,0 +1,2467 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "wrap.0.png" + } + Key { + type: 6 + key: 84 + modifiers: 33554432 + text: "54" + autorep: false + count: 1 + } + Frame { + msec: 32 + hash: "2b7fa5ced204393f05bf68d33e0ca2ad" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 48 + hash: "2b7fa5ced204393f05bf68d33e0ca2ad" + } + Frame { + msec: 64 + hash: "2b7fa5ced204393f05bf68d33e0ca2ad" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 80 + hash: "2b7fa5ced204393f05bf68d33e0ca2ad" + } + Frame { + msec: 96 + hash: "2b7fa5ced204393f05bf68d33e0ca2ad" + } + Key { + type: 6 + key: 72 + modifiers: 0 + text: "68" + autorep: false + count: 1 + } + Frame { + msec: 112 + hash: "5fe2c4c01922f0b0d3f65152bd80f689" + } + Frame { + msec: 128 + hash: "5fe2c4c01922f0b0d3f65152bd80f689" + } + Frame { + msec: 144 + hash: "5fe2c4c01922f0b0d3f65152bd80f689" + } + Key { + type: 6 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 160 + hash: "9645f4ad60570c8a95e9ae6dda3f5060" + } + Frame { + msec: 176 + hash: "9645f4ad60570c8a95e9ae6dda3f5060" + } + Frame { + msec: 192 + hash: "9645f4ad60570c8a95e9ae6dda3f5060" + } + Key { + type: 7 + key: 72 + modifiers: 0 + text: "68" + autorep: false + count: 1 + } + Frame { + msec: 208 + hash: "9645f4ad60570c8a95e9ae6dda3f5060" + } + Frame { + msec: 224 + hash: "9645f4ad60570c8a95e9ae6dda3f5060" + } + Key { + type: 6 + key: 83 + modifiers: 0 + text: "73" + autorep: false + count: 1 + } + Frame { + msec: 240 + hash: "f28f446cb8de8af0a49ae6e728c996fc" + } + Key { + type: 7 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 256 + hash: "f28f446cb8de8af0a49ae6e728c996fc" + } + Frame { + msec: 272 + hash: "f28f446cb8de8af0a49ae6e728c996fc" + } + Frame { + msec: 288 + hash: "f28f446cb8de8af0a49ae6e728c996fc" + } + Frame { + msec: 304 + hash: "f28f446cb8de8af0a49ae6e728c996fc" + } + Key { + type: 7 + key: 83 + modifiers: 0 + text: "73" + autorep: false + count: 1 + } + Frame { + msec: 320 + hash: "f28f446cb8de8af0a49ae6e728c996fc" + } + Frame { + msec: 336 + hash: "f28f446cb8de8af0a49ae6e728c996fc" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 352 + hash: "98c390c519cd0476de17be8bb49b0f65" + } + Frame { + msec: 368 + hash: "98c390c519cd0476de17be8bb49b0f65" + } + Frame { + msec: 384 + hash: "98c390c519cd0476de17be8bb49b0f65" + } + Frame { + msec: 400 + hash: "98c390c519cd0476de17be8bb49b0f65" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 416 + hash: "98c390c519cd0476de17be8bb49b0f65" + } + Frame { + msec: 432 + hash: "98c390c519cd0476de17be8bb49b0f65" + } + Frame { + msec: 448 + hash: "98c390c519cd0476de17be8bb49b0f65" + } + Frame { + msec: 464 + hash: "98c390c519cd0476de17be8bb49b0f65" + } + Key { + type: 6 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 480 + hash: "d842a866459f3ecb4fa4fc1426a05411" + } + Frame { + msec: 496 + hash: "d842a866459f3ecb4fa4fc1426a05411" + } + Frame { + msec: 512 + hash: "d842a866459f3ecb4fa4fc1426a05411" + } + Frame { + msec: 528 + hash: "d842a866459f3ecb4fa4fc1426a05411" + } + Key { + type: 6 + key: 83 + modifiers: 0 + text: "73" + autorep: false + count: 1 + } + Key { + type: 7 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 544 + hash: "4c858bfd2e8ba7a959bbf2d1e17865e7" + } + Frame { + msec: 560 + hash: "4c858bfd2e8ba7a959bbf2d1e17865e7" + } + Frame { + msec: 576 + hash: "4c858bfd2e8ba7a959bbf2d1e17865e7" + } + Frame { + msec: 592 + hash: "4c858bfd2e8ba7a959bbf2d1e17865e7" + } + Frame { + msec: 608 + hash: "4c858bfd2e8ba7a959bbf2d1e17865e7" + } + Key { + type: 7 + key: 83 + modifiers: 0 + text: "73" + autorep: false + count: 1 + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 624 + hash: "9eed9c764b2c5b73a60df84fc0d68756" + } + Frame { + msec: 640 + hash: "9eed9c764b2c5b73a60df84fc0d68756" + } + Frame { + msec: 656 + hash: "9eed9c764b2c5b73a60df84fc0d68756" + } + Frame { + msec: 672 + hash: "9eed9c764b2c5b73a60df84fc0d68756" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 688 + hash: "9eed9c764b2c5b73a60df84fc0d68756" + } + Frame { + msec: 704 + hash: "9eed9c764b2c5b73a60df84fc0d68756" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 720 + hash: "7a1d64574a0a6b90695629fd443274e6" + } + Frame { + msec: 736 + hash: "7a1d64574a0a6b90695629fd443274e6" + } + Frame { + msec: 752 + hash: "7a1d64574a0a6b90695629fd443274e6" + } + Frame { + msec: 768 + hash: "7a1d64574a0a6b90695629fd443274e6" + } + Frame { + msec: 784 + hash: "7a1d64574a0a6b90695629fd443274e6" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 800 + hash: "7a1d64574a0a6b90695629fd443274e6" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 816 + hash: "31e9c4500448142ee2be3171a2bd5385" + } + Frame { + msec: 832 + hash: "31e9c4500448142ee2be3171a2bd5385" + } + Frame { + msec: 848 + hash: "31e9c4500448142ee2be3171a2bd5385" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 864 + hash: "31e9c4500448142ee2be3171a2bd5385" + } + Frame { + msec: 880 + hash: "31e9c4500448142ee2be3171a2bd5385" + } + Frame { + msec: 896 + hash: "31e9c4500448142ee2be3171a2bd5385" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 912 + hash: "7fcfd3706ba11c43ac0a4c2f96b1d80d" + } + Frame { + msec: 928 + hash: "7fcfd3706ba11c43ac0a4c2f96b1d80d" + } + Frame { + msec: 944 + hash: "7fcfd3706ba11c43ac0a4c2f96b1d80d" + } + Frame { + msec: 960 + hash: "7fcfd3706ba11c43ac0a4c2f96b1d80d" + } + Frame { + msec: 976 + image: "wrap.1.png" + } + Frame { + msec: 992 + hash: "7fcfd3706ba11c43ac0a4c2f96b1d80d" + } + Key { + type: 6 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 1008 + hash: "c05191599361c4171c086630f9608cd0" + } + Frame { + msec: 1024 + hash: "c05191599361c4171c086630f9608cd0" + } + Frame { + msec: 1040 + hash: "c05191599361c4171c086630f9608cd0" + } + Frame { + msec: 1056 + hash: "c05191599361c4171c086630f9608cd0" + } + Frame { + msec: 1072 + hash: "c05191599361c4171c086630f9608cd0" + } + Key { + type: 7 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 1088 + hash: "c05191599361c4171c086630f9608cd0" + } + Frame { + msec: 1104 + hash: "c05191599361c4171c086630f9608cd0" + } + Frame { + msec: 1120 + hash: "c05191599361c4171c086630f9608cd0" + } + Frame { + msec: 1136 + hash: "c05191599361c4171c086630f9608cd0" + } + Frame { + msec: 1152 + hash: "c05191599361c4171c086630f9608cd0" + } + Frame { + msec: 1168 + hash: "c05191599361c4171c086630f9608cd0" + } + Frame { + msec: 1184 + hash: "c05191599361c4171c086630f9608cd0" + } + Key { + type: 6 + key: 83 + modifiers: 0 + text: "73" + autorep: false + count: 1 + } + Frame { + msec: 1200 + hash: "088e0567dd568019ccb2114d3108a1dd" + } + Frame { + msec: 1216 + hash: "088e0567dd568019ccb2114d3108a1dd" + } + Frame { + msec: 1232 + hash: "088e0567dd568019ccb2114d3108a1dd" + } + Frame { + msec: 1248 + hash: "088e0567dd568019ccb2114d3108a1dd" + } + Frame { + msec: 1264 + hash: "088e0567dd568019ccb2114d3108a1dd" + } + Key { + type: 7 + key: 83 + modifiers: 0 + text: "73" + autorep: false + count: 1 + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 1280 + hash: "35fde81ed66c4804b2b31c0d93fb010a" + } + Frame { + msec: 1296 + hash: "35fde81ed66c4804b2b31c0d93fb010a" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1312 + hash: "0b212b2b1354e99db328c30d4c8e8b4e" + } + Frame { + msec: 1328 + hash: "0b212b2b1354e99db328c30d4c8e8b4e" + } + Frame { + msec: 1344 + hash: "0b212b2b1354e99db328c30d4c8e8b4e" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 1360 + hash: "0b212b2b1354e99db328c30d4c8e8b4e" + } + Frame { + msec: 1376 + hash: "0b212b2b1354e99db328c30d4c8e8b4e" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1392 + hash: "0b212b2b1354e99db328c30d4c8e8b4e" + } + Frame { + msec: 1408 + hash: "0b212b2b1354e99db328c30d4c8e8b4e" + } + Frame { + msec: 1424 + hash: "0b212b2b1354e99db328c30d4c8e8b4e" + } + Frame { + msec: 1440 + hash: "0b212b2b1354e99db328c30d4c8e8b4e" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 1456 + hash: "1d19bc237d8de1598a629f2aea7e8e97" + } + Frame { + msec: 1472 + hash: "1d19bc237d8de1598a629f2aea7e8e97" + } + Frame { + msec: 1488 + hash: "1d19bc237d8de1598a629f2aea7e8e97" + } + Frame { + msec: 1504 + hash: "1d19bc237d8de1598a629f2aea7e8e97" + } + Frame { + msec: 1520 + hash: "1d19bc237d8de1598a629f2aea7e8e97" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 1536 + hash: "1d19bc237d8de1598a629f2aea7e8e97" + } + Frame { + msec: 1552 + hash: "1d19bc237d8de1598a629f2aea7e8e97" + } + Key { + type: 6 + key: 72 + modifiers: 0 + text: "68" + autorep: false + count: 1 + } + Frame { + msec: 1568 + hash: "df3025b2de2cf6cee2b918c6d13834c6" + } + Frame { + msec: 1584 + hash: "df3025b2de2cf6cee2b918c6d13834c6" + } + Frame { + msec: 1600 + hash: "df3025b2de2cf6cee2b918c6d13834c6" + } + Frame { + msec: 1616 + hash: "df3025b2de2cf6cee2b918c6d13834c6" + } + Frame { + msec: 1632 + hash: "df3025b2de2cf6cee2b918c6d13834c6" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Key { + type: 7 + key: 72 + modifiers: 0 + text: "68" + autorep: false + count: 1 + } + Frame { + msec: 1648 + hash: "b19baef8a5d8efd96d5ec9e729a9d42a" + } + Frame { + msec: 1664 + hash: "b19baef8a5d8efd96d5ec9e729a9d42a" + } + Frame { + msec: 1680 + hash: "b19baef8a5d8efd96d5ec9e729a9d42a" + } + Frame { + msec: 1696 + hash: "b19baef8a5d8efd96d5ec9e729a9d42a" + } + Frame { + msec: 1712 + hash: "b19baef8a5d8efd96d5ec9e729a9d42a" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 1728 + hash: "914e61f38d7f2b5a465037d6ef1ddaba" + } + Frame { + msec: 1744 + hash: "914e61f38d7f2b5a465037d6ef1ddaba" + } + Frame { + msec: 1760 + hash: "914e61f38d7f2b5a465037d6ef1ddaba" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 1776 + hash: "914e61f38d7f2b5a465037d6ef1ddaba" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1792 + hash: "e816134a8fef0bbee8e94c0f9561750b" + } + Frame { + msec: 1808 + hash: "e816134a8fef0bbee8e94c0f9561750b" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 1824 + hash: "e816134a8fef0bbee8e94c0f9561750b" + } + Frame { + msec: 1840 + hash: "e816134a8fef0bbee8e94c0f9561750b" + } + Frame { + msec: 1856 + hash: "e816134a8fef0bbee8e94c0f9561750b" + } + Frame { + msec: 1872 + hash: "e816134a8fef0bbee8e94c0f9561750b" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1888 + hash: "e816134a8fef0bbee8e94c0f9561750b" + } + Frame { + msec: 1904 + hash: "e816134a8fef0bbee8e94c0f9561750b" + } + Frame { + msec: 1920 + hash: "e816134a8fef0bbee8e94c0f9561750b" + } + Frame { + msec: 1936 + image: "wrap.2.png" + } + Frame { + msec: 1952 + hash: "e816134a8fef0bbee8e94c0f9561750b" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 1968 + hash: "9552729028c8e129e19c06ff35bb085b" + } + Frame { + msec: 1984 + hash: "9552729028c8e129e19c06ff35bb085b" + } + Frame { + msec: 2000 + hash: "9552729028c8e129e19c06ff35bb085b" + } + Frame { + msec: 2016 + hash: "9552729028c8e129e19c06ff35bb085b" + } + Frame { + msec: 2032 + hash: "9552729028c8e129e19c06ff35bb085b" + } + Frame { + msec: 2048 + hash: "9552729028c8e129e19c06ff35bb085b" + } + Key { + type: 6 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 2064 + hash: "2dbdfe3bd309b98af7ed8980725f3ee7" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 2080 + hash: "2dbdfe3bd309b98af7ed8980725f3ee7" + } + Frame { + msec: 2096 + hash: "2dbdfe3bd309b98af7ed8980725f3ee7" + } + Frame { + msec: 2112 + hash: "2dbdfe3bd309b98af7ed8980725f3ee7" + } + Key { + type: 7 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 2128 + hash: "2dbdfe3bd309b98af7ed8980725f3ee7" + } + Frame { + msec: 2144 + hash: "2dbdfe3bd309b98af7ed8980725f3ee7" + } + Frame { + msec: 2160 + hash: "2dbdfe3bd309b98af7ed8980725f3ee7" + } + Frame { + msec: 2176 + hash: "2dbdfe3bd309b98af7ed8980725f3ee7" + } + Frame { + msec: 2192 + hash: "2dbdfe3bd309b98af7ed8980725f3ee7" + } + Frame { + msec: 2208 + hash: "2dbdfe3bd309b98af7ed8980725f3ee7" + } + Key { + type: 6 + key: 88 + modifiers: 0 + text: "78" + autorep: false + count: 1 + } + Frame { + msec: 2224 + hash: "28748f90f61954b94377768788f1634d" + } + Frame { + msec: 2240 + hash: "28748f90f61954b94377768788f1634d" + } + Frame { + msec: 2256 + hash: "28748f90f61954b94377768788f1634d" + } + Frame { + msec: 2272 + hash: "28748f90f61954b94377768788f1634d" + } + Frame { + msec: 2288 + hash: "28748f90f61954b94377768788f1634d" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 2304 + hash: "2cf8ad2ba8ddcde4dd8549f034a77005" + } + Key { + type: 7 + key: 88 + modifiers: 0 + text: "78" + autorep: false + count: 1 + } + Frame { + msec: 2320 + hash: "2cf8ad2ba8ddcde4dd8549f034a77005" + } + Frame { + msec: 2336 + hash: "2cf8ad2ba8ddcde4dd8549f034a77005" + } + Frame { + msec: 2352 + hash: "2cf8ad2ba8ddcde4dd8549f034a77005" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2368 + hash: "95b6ce7c01461847a3f7aff88aa8ad9d" + } + Frame { + msec: 2384 + hash: "95b6ce7c01461847a3f7aff88aa8ad9d" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 2400 + hash: "95b6ce7c01461847a3f7aff88aa8ad9d" + } + Frame { + msec: 2416 + hash: "95b6ce7c01461847a3f7aff88aa8ad9d" + } + Frame { + msec: 2432 + hash: "95b6ce7c01461847a3f7aff88aa8ad9d" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2448 + hash: "95b6ce7c01461847a3f7aff88aa8ad9d" + } + Frame { + msec: 2464 + hash: "95b6ce7c01461847a3f7aff88aa8ad9d" + } + Frame { + msec: 2480 + hash: "95b6ce7c01461847a3f7aff88aa8ad9d" + } + Key { + type: 6 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 2496 + hash: "81872138f3cafb1cf06009df77af1461" + } + Frame { + msec: 2512 + hash: "81872138f3cafb1cf06009df77af1461" + } + Frame { + msec: 2528 + hash: "81872138f3cafb1cf06009df77af1461" + } + Frame { + msec: 2544 + hash: "81872138f3cafb1cf06009df77af1461" + } + Key { + type: 7 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 2560 + hash: "81872138f3cafb1cf06009df77af1461" + } + Frame { + msec: 2576 + hash: "81872138f3cafb1cf06009df77af1461" + } + Frame { + msec: 2592 + hash: "81872138f3cafb1cf06009df77af1461" + } + Frame { + msec: 2608 + hash: "81872138f3cafb1cf06009df77af1461" + } + Frame { + msec: 2624 + hash: "81872138f3cafb1cf06009df77af1461" + } + Frame { + msec: 2640 + hash: "81872138f3cafb1cf06009df77af1461" + } + Key { + type: 6 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 2656 + hash: "dfa35c08894d7ed748b8846fa3ce8fac" + } + Frame { + msec: 2672 + hash: "dfa35c08894d7ed748b8846fa3ce8fac" + } + Frame { + msec: 2688 + hash: "dfa35c08894d7ed748b8846fa3ce8fac" + } + Frame { + msec: 2704 + hash: "dfa35c08894d7ed748b8846fa3ce8fac" + } + Key { + type: 7 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 2720 + hash: "dfa35c08894d7ed748b8846fa3ce8fac" + } + Frame { + msec: 2736 + hash: "dfa35c08894d7ed748b8846fa3ce8fac" + } + Frame { + msec: 2752 + hash: "dfa35c08894d7ed748b8846fa3ce8fac" + } + Key { + type: 6 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2768 + hash: "9decac3d9243bebdc7699fcb77a31f21" + } + Frame { + msec: 2784 + hash: "9decac3d9243bebdc7699fcb77a31f21" + } + Frame { + msec: 2800 + hash: "9decac3d9243bebdc7699fcb77a31f21" + } + Frame { + msec: 2816 + hash: "9decac3d9243bebdc7699fcb77a31f21" + } + Frame { + msec: 2832 + hash: "9decac3d9243bebdc7699fcb77a31f21" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Key { + type: 7 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2848 + hash: "6a1bb7dd22f3e090008ba265c30f9c2d" + } + Frame { + msec: 2864 + hash: "6a1bb7dd22f3e090008ba265c30f9c2d" + } + Frame { + msec: 2880 + hash: "6a1bb7dd22f3e090008ba265c30f9c2d" + } + Frame { + msec: 2896 + image: "wrap.3.png" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2912 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Frame { + msec: 2928 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 2944 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Frame { + msec: 2960 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2976 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Frame { + msec: 2992 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Frame { + msec: 3008 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Frame { + msec: 3024 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Frame { + msec: 3040 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Frame { + msec: 3056 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Frame { + msec: 3072 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Frame { + msec: 3088 + hash: "ee39b3014e140aff2f974f3b919f85f4" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3104 + hash: "d448179ec6bba91f3f70be821710a8c7" + } + Frame { + msec: 3120 + hash: "d448179ec6bba91f3f70be821710a8c7" + } + Frame { + msec: 3136 + hash: "d448179ec6bba91f3f70be821710a8c7" + } + Frame { + msec: 3152 + hash: "d448179ec6bba91f3f70be821710a8c7" + } + Frame { + msec: 3168 + hash: "d448179ec6bba91f3f70be821710a8c7" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3184 + hash: "d448179ec6bba91f3f70be821710a8c7" + } + Frame { + msec: 3200 + hash: "d448179ec6bba91f3f70be821710a8c7" + } + Frame { + msec: 3216 + hash: "d448179ec6bba91f3f70be821710a8c7" + } + Frame { + msec: 3232 + hash: "d448179ec6bba91f3f70be821710a8c7" + } + Frame { + msec: 3248 + hash: "d448179ec6bba91f3f70be821710a8c7" + } + Key { + type: 6 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 3264 + hash: "e30b5aa9b5d08fba758fe781812f096d" + } + Frame { + msec: 3280 + hash: "e30b5aa9b5d08fba758fe781812f096d" + } + Frame { + msec: 3296 + hash: "e30b5aa9b5d08fba758fe781812f096d" + } + Key { + type: 7 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 3312 + hash: "e30b5aa9b5d08fba758fe781812f096d" + } + Frame { + msec: 3328 + hash: "e30b5aa9b5d08fba758fe781812f096d" + } + Frame { + msec: 3344 + hash: "e30b5aa9b5d08fba758fe781812f096d" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 3360 + hash: "ba932735c5079ad6562050b6e332d2e7" + } + Frame { + msec: 3376 + hash: "ba932735c5079ad6562050b6e332d2e7" + } + Frame { + msec: 3392 + hash: "ba932735c5079ad6562050b6e332d2e7" + } + Frame { + msec: 3408 + hash: "ba932735c5079ad6562050b6e332d2e7" + } + Frame { + msec: 3424 + hash: "ba932735c5079ad6562050b6e332d2e7" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 3440 + hash: "ba932735c5079ad6562050b6e332d2e7" + } + Frame { + msec: 3456 + hash: "ba932735c5079ad6562050b6e332d2e7" + } + Frame { + msec: 3472 + hash: "ba932735c5079ad6562050b6e332d2e7" + } + Key { + type: 6 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 3488 + hash: "01dacbcc21c541e0cbf272ee01292b7c" + } + Frame { + msec: 3504 + hash: "01dacbcc21c541e0cbf272ee01292b7c" + } + Frame { + msec: 3520 + hash: "01dacbcc21c541e0cbf272ee01292b7c" + } + Frame { + msec: 3536 + hash: "01dacbcc21c541e0cbf272ee01292b7c" + } + Key { + type: 7 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 3552 + hash: "01dacbcc21c541e0cbf272ee01292b7c" + } + Frame { + msec: 3568 + hash: "01dacbcc21c541e0cbf272ee01292b7c" + } + Key { + type: 6 + key: 83 + modifiers: 0 + text: "73" + autorep: false + count: 1 + } + Frame { + msec: 3584 + hash: "7b493045fb2b7373525ce570d86542d7" + } + Frame { + msec: 3600 + hash: "7b493045fb2b7373525ce570d86542d7" + } + Frame { + msec: 3616 + hash: "7b493045fb2b7373525ce570d86542d7" + } + Frame { + msec: 3632 + hash: "7b493045fb2b7373525ce570d86542d7" + } + Frame { + msec: 3648 + hash: "7b493045fb2b7373525ce570d86542d7" + } + Frame { + msec: 3664 + hash: "7b493045fb2b7373525ce570d86542d7" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3680 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Key { + type: 7 + key: 83 + modifiers: 0 + text: "73" + autorep: false + count: 1 + } + Frame { + msec: 3696 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Frame { + msec: 3712 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Frame { + msec: 3728 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Frame { + msec: 3744 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Frame { + msec: 3760 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3776 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Frame { + msec: 3792 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Frame { + msec: 3808 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Frame { + msec: 3824 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Frame { + msec: 3840 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Frame { + msec: 3856 + image: "wrap.4.png" + } + Frame { + msec: 3872 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Frame { + msec: 3888 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Frame { + msec: 3904 + hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" + } + Key { + type: 6 + key: 67 + modifiers: 0 + text: "63" + autorep: false + count: 1 + } + Frame { + msec: 3920 + hash: "46a6db4f63965f019fc1966e2a6caf98" + } + Frame { + msec: 3936 + hash: "46a6db4f63965f019fc1966e2a6caf98" + } + Frame { + msec: 3952 + hash: "46a6db4f63965f019fc1966e2a6caf98" + } + Frame { + msec: 3968 + hash: "46a6db4f63965f019fc1966e2a6caf98" + } + Frame { + msec: 3984 + hash: "46a6db4f63965f019fc1966e2a6caf98" + } + Key { + type: 7 + key: 67 + modifiers: 0 + text: "63" + autorep: false + count: 1 + } + Frame { + msec: 4000 + hash: "46a6db4f63965f019fc1966e2a6caf98" + } + Frame { + msec: 4016 + hash: "46a6db4f63965f019fc1966e2a6caf98" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4032 + hash: "abc8cf4650aa07a9a26ad04a082bc269" + } + Frame { + msec: 4048 + hash: "abc8cf4650aa07a9a26ad04a082bc269" + } + Frame { + msec: 4064 + hash: "abc8cf4650aa07a9a26ad04a082bc269" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4080 + hash: "abc8cf4650aa07a9a26ad04a082bc269" + } + Key { + type: 6 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 4096 + hash: "23ee54c88cd70b6c66137ce32702cf01" + } + Frame { + msec: 4112 + hash: "23ee54c88cd70b6c66137ce32702cf01" + } + Frame { + msec: 4128 + hash: "23ee54c88cd70b6c66137ce32702cf01" + } + Frame { + msec: 4144 + hash: "23ee54c88cd70b6c66137ce32702cf01" + } + Key { + type: 7 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 4160 + hash: "23ee54c88cd70b6c66137ce32702cf01" + } + Frame { + msec: 4176 + hash: "23ee54c88cd70b6c66137ce32702cf01" + } + Frame { + msec: 4192 + hash: "23ee54c88cd70b6c66137ce32702cf01" + } + Key { + type: 6 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 4208 + hash: "dc0899573a995421b57a6689d300a421" + } + Frame { + msec: 4224 + hash: "dc0899573a995421b57a6689d300a421" + } + Frame { + msec: 4240 + hash: "dc0899573a995421b57a6689d300a421" + } + Frame { + msec: 4256 + hash: "dc0899573a995421b57a6689d300a421" + } + Frame { + msec: 4272 + hash: "dc0899573a995421b57a6689d300a421" + } + Key { + type: 6 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 4288 + hash: "4d42c63a0324c1573818ebb081d8927f" + } + Key { + type: 7 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 4304 + hash: "4d42c63a0324c1573818ebb081d8927f" + } + Frame { + msec: 4320 + hash: "4d42c63a0324c1573818ebb081d8927f" + } + Frame { + msec: 4336 + hash: "4d42c63a0324c1573818ebb081d8927f" + } + Key { + type: 7 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 4352 + hash: "4d42c63a0324c1573818ebb081d8927f" + } + Frame { + msec: 4368 + hash: "4d42c63a0324c1573818ebb081d8927f" + } + Frame { + msec: 4384 + hash: "4d42c63a0324c1573818ebb081d8927f" + } + Frame { + msec: 4400 + hash: "4d42c63a0324c1573818ebb081d8927f" + } + Frame { + msec: 4416 + hash: "4d42c63a0324c1573818ebb081d8927f" + } + Key { + type: 6 + key: 67 + modifiers: 0 + text: "63" + autorep: false + count: 1 + } + Frame { + msec: 4432 + hash: "9d2239e4b71da17a6f8f2ef979f4bf85" + } + Frame { + msec: 4448 + hash: "9d2239e4b71da17a6f8f2ef979f4bf85" + } + Frame { + msec: 4464 + hash: "9d2239e4b71da17a6f8f2ef979f4bf85" + } + Key { + type: 7 + key: 67 + modifiers: 0 + text: "63" + autorep: false + count: 1 + } + Frame { + msec: 4480 + hash: "9d2239e4b71da17a6f8f2ef979f4bf85" + } + Frame { + msec: 4496 + hash: "9d2239e4b71da17a6f8f2ef979f4bf85" + } + Frame { + msec: 4512 + hash: "9d2239e4b71da17a6f8f2ef979f4bf85" + } + Frame { + msec: 4528 + hash: "9d2239e4b71da17a6f8f2ef979f4bf85" + } + Frame { + msec: 4544 + hash: "9d2239e4b71da17a6f8f2ef979f4bf85" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4560 + hash: "289059d77547c9ec548b33d8bbe9fca9" + } + Frame { + msec: 4576 + hash: "289059d77547c9ec548b33d8bbe9fca9" + } + Frame { + msec: 4592 + hash: "289059d77547c9ec548b33d8bbe9fca9" + } + Frame { + msec: 4608 + hash: "289059d77547c9ec548b33d8bbe9fca9" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4624 + hash: "289059d77547c9ec548b33d8bbe9fca9" + } + Frame { + msec: 4640 + hash: "289059d77547c9ec548b33d8bbe9fca9" + } + Frame { + msec: 4656 + hash: "289059d77547c9ec548b33d8bbe9fca9" + } + Frame { + msec: 4672 + hash: "289059d77547c9ec548b33d8bbe9fca9" + } + Key { + type: 6 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 4688 + hash: "4b60bfb67c5007b4054241e581ce92ac" + } + Frame { + msec: 4704 + hash: "4b60bfb67c5007b4054241e581ce92ac" + } + Frame { + msec: 4720 + hash: "4b60bfb67c5007b4054241e581ce92ac" + } + Frame { + msec: 4736 + hash: "4b60bfb67c5007b4054241e581ce92ac" + } + Key { + type: 7 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 4752 + hash: "4b60bfb67c5007b4054241e581ce92ac" + } + Frame { + msec: 4768 + hash: "4b60bfb67c5007b4054241e581ce92ac" + } + Frame { + msec: 4784 + hash: "4b60bfb67c5007b4054241e581ce92ac" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 4800 + hash: "dbabce81e44f912d6a30ff4cc3289da8" + } + Frame { + msec: 4816 + image: "wrap.5.png" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 4832 + hash: "dbabce81e44f912d6a30ff4cc3289da8" + } + Frame { + msec: 4848 + hash: "dbabce81e44f912d6a30ff4cc3289da8" + } + Frame { + msec: 4864 + hash: "dbabce81e44f912d6a30ff4cc3289da8" + } + Frame { + msec: 4880 + hash: "dbabce81e44f912d6a30ff4cc3289da8" + } + Key { + type: 6 + key: 46 + modifiers: 0 + text: "2e" + autorep: false + count: 1 + } + Frame { + msec: 4896 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 4912 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 4928 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 4944 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Key { + type: 7 + key: 46 + modifiers: 0 + text: "2e" + autorep: false + count: 1 + } + Frame { + msec: 4960 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 4976 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 4992 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5008 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5024 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5040 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5056 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5072 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5088 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5104 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5120 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5136 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5152 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5168 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5184 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5200 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5216 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5232 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5248 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5264 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5280 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5296 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5312 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5328 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5344 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5360 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5376 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5392 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5408 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5424 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5440 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5456 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5472 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5488 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5504 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5520 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5536 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5552 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5568 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5584 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5600 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5616 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5632 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5648 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5664 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5680 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5696 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5712 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5728 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5744 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5760 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5776 + image: "wrap.6.png" + } + Frame { + msec: 5792 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5808 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5824 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5840 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5856 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5872 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5888 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5904 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5920 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5936 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5952 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5968 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 5984 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6000 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6016 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6032 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6048 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6064 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6080 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6096 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6112 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6128 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6144 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6160 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6176 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6192 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6208 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6224 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6240 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6256 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6272 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6288 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6304 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6320 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6336 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6352 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6368 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6384 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6400 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6416 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6432 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6448 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6464 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6480 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6496 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6512 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6528 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6544 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6560 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6576 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6592 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6608 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6624 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6640 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6656 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6672 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6688 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6704 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6720 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6736 + image: "wrap.7.png" + } + Frame { + msec: 6752 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6768 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6784 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6800 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6816 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6832 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6848 + hash: "e9633d239e0a9ca008ed033565322c24" + } + Frame { + msec: 6864 + hash: "e9633d239e0a9ca008ed033565322c24" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.0.png Binary files differnew file mode 100644 index 0000000..be025e5 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.1.png Binary files differnew file mode 100644 index 0000000..1b2cd04 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.2.png Binary files differnew file mode 100644 index 0000000..2e56d47 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.3.png Binary files differnew file mode 100644 index 0000000..8abdfc2 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.4.png Binary files differnew file mode 100644 index 0000000..58428ce --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.5.png Binary files differnew file mode 100644 index 0000000..3c23bd6 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.6.png Binary files differnew file mode 100644 index 0000000..80b960c --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.6.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.7.png Binary files differnew file mode 100644 index 0000000..7247277 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.7.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.8.png Binary files differnew file mode 100644 index 0000000..af5a996 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.8.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.9.png Binary files differnew file mode 100644 index 0000000..b254164 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.9.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.qml new file mode 100644 index 0000000..9630745 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.qml @@ -0,0 +1,1499 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "cursorDelegate.0.png" + } + Frame { + msec: 32 + hash: "2fd338490edda276f7ee16232bf244d1" + } + Frame { + msec: 48 + hash: "527a1c18503f580bcf926a70d9f30006" + } + Frame { + msec: 64 + hash: "8b911c3e4a0fccf1dbeca50931780a2d" + } + Frame { + msec: 80 + hash: "f631ad72bf36ccb0c5f3ff708f029b1b" + } + Frame { + msec: 96 + hash: "d4099e6a2c1ff77a71231351f5bc32ff" + } + Frame { + msec: 112 + hash: "0e531d158b1c14d6fc633e528846c336" + } + Frame { + msec: 128 + hash: "5721d3397b9e66da4ee47a7f19107566" + } + Frame { + msec: 144 + hash: "6647f5d3680f3523ec73b434d0c2f8da" + } + Frame { + msec: 160 + hash: "73fb40e680c30b1a5fe95de9913a0591" + } + Frame { + msec: 176 + hash: "c392c2599b29086a437afa292b06d63c" + } + Frame { + msec: 192 + hash: "bcedd42d52bab532831b47c6ee2a99ac" + } + Frame { + msec: 208 + hash: "089b150d5cc9315c6626edfc1bb66774" + } + Frame { + msec: 224 + hash: "f6e83fdb13e4f00ba5004b081e2379ee" + } + Frame { + msec: 240 + hash: "ca8336d47c002df3702a46be2b974ba7" + } + Frame { + msec: 256 + hash: "f0d82431f1e35f76fd718af1d742cd13" + } + Frame { + msec: 272 + hash: "78dc119673be7902ab25d508db771f04" + } + Frame { + msec: 288 + hash: "2839bc67b7ac43353b976c2c7bc3b6c3" + } + Frame { + msec: 304 + hash: "c1f9743c0505b6ca197c4bd0bbbd7bd3" + } + Frame { + msec: 320 + hash: "2d714b10ce1e3e7dd1efb58ed4b62f90" + } + Frame { + msec: 336 + hash: "c4f94bab5475eacfc757338ffd6d4a59" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 352 + hash: "c5caa8a08f09203c005e1cd6d80e8ccc" + } + Frame { + msec: 368 + hash: "c96896be1a311c0cedc1c7ec1bd9e13e" + } + Frame { + msec: 384 + hash: "d3d6dc1d8ff93e373583e3cbdca88b81" + } + Frame { + msec: 400 + hash: "2a456146359c54c52f9e7a6cebcfa454" + } + Frame { + msec: 416 + hash: "d127788c702c2ed037c709ffc331840e" + } + Frame { + msec: 432 + hash: "8a5987a736b092e12198d969544d632c" + } + Key { + type: 6 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 448 + hash: "e8471c605f6a8cc187d879510ed7ebe7" + } + Frame { + msec: 464 + hash: "6959b4f72422636ae59989c9def06d03" + } + Frame { + msec: 480 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 496 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 512 + hash: "45a1fa0c871592f872574fdcd3fb586c" + } + Frame { + msec: 528 + hash: "45a1fa0c871592f872574fdcd3fb586c" + } + Frame { + msec: 544 + hash: "45a1fa0c871592f872574fdcd3fb586c" + } + Frame { + msec: 560 + hash: "45a1fa0c871592f872574fdcd3fb586c" + } + Frame { + msec: 576 + hash: "8567bf3fb7adb990501070fac62fda31" + } + Frame { + msec: 592 + hash: "824b9fef000cfad45c86d180eb13c584" + } + Frame { + msec: 608 + hash: "cb8989a5839bf284f0e8b3eb1bf68667" + } + Frame { + msec: 624 + hash: "f23e6394ed3c2fc32c690095ccfc1a7f" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 640 + hash: "d32d30ebd0c292e66314f6b6005701b9" + } + Frame { + msec: 656 + hash: "4ebda51f84f73eb6891f9c71ffba4b92" + } + Frame { + msec: 672 + hash: "9a97e8cdb84e96f08f2af468d146fb45" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 688 + hash: "9cd5a0e60b7f679faba3dad78eac1ac3" + } + Frame { + msec: 704 + hash: "2e18ff4ebead28620901d4a9ad050ffe" + } + Frame { + msec: 720 + hash: "57a6a1bbfe4c4577e4334b63b977ca13" + } + Frame { + msec: 736 + hash: "5f5806c2b30465845ed2bc36f1c60e14" + } + Frame { + msec: 752 + hash: "10125c338dffa13dfd0bbff5fc33d757" + } + Frame { + msec: 768 + hash: "b6c83fdee9081a1773a441cffb843c11" + } + Frame { + msec: 784 + hash: "c26f3ac7cd2065b98434e3fb4bc7c4a7" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 800 + hash: "6cb47a37677280ef63b060767c669878" + } + Frame { + msec: 816 + hash: "7f27c84cd7ae3f255b0df6029e13c48d" + } + Frame { + msec: 832 + hash: "fec675b07b3f569014e9f35563761d49" + } + Frame { + msec: 848 + hash: "cfd2439d79ad66232107022317fd5a4c" + } + Frame { + msec: 864 + hash: "cec5331c1f6023335942e572992aa172" + } + Frame { + msec: 880 + hash: "549d4736558332a64c5fc3462be71500" + } + Frame { + msec: 896 + hash: "1d01fe566f850fe2297fd8ed6b1efa8d" + } + Frame { + msec: 912 + hash: "cd1b61c7acd7067f9722c1a673b9a3ea" + } + Frame { + msec: 928 + hash: "cb4fed177ff3df7212413450d4b73549" + } + Frame { + msec: 944 + hash: "720d0e5c3e377e2c53d251e02577d6f6" + } + Frame { + msec: 960 + hash: "1ab118400896a46a8d179b762343522f" + } + Frame { + msec: 976 + image: "cursorDelegate.1.png" + } + Frame { + msec: 992 + hash: "6cf8502f84b57001bf14fc4bab24911b" + } + Frame { + msec: 1008 + hash: "5aa693852436f664da87d4360da0f477" + } + Frame { + msec: 1024 + hash: "5aa693852436f664da87d4360da0f477" + } + Key { + type: 7 + key: 16777249 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1040 + hash: "6cf8502f84b57001bf14fc4bab24911b" + } + Frame { + msec: 1056 + hash: "17499b49e462181383fde57dce81aef9" + } + Frame { + msec: 1072 + hash: "1ab118400896a46a8d179b762343522f" + } + Frame { + msec: 1088 + hash: "720d0e5c3e377e2c53d251e02577d6f6" + } + Frame { + msec: 1104 + hash: "cb4fed177ff3df7212413450d4b73549" + } + Frame { + msec: 1120 + hash: "cd1b61c7acd7067f9722c1a673b9a3ea" + } + Frame { + msec: 1136 + hash: "1d01fe566f850fe2297fd8ed6b1efa8d" + } + Frame { + msec: 1152 + hash: "549d4736558332a64c5fc3462be71500" + } + Frame { + msec: 1168 + hash: "cec5331c1f6023335942e572992aa172" + } + Key { + type: 6 + key: 16777234 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1184 + hash: "a8af14ffccbd892f17c0235d62d10cd8" + } + Frame { + msec: 1200 + hash: "81fbaaf1af513b2dc978ef0e358bbc6f" + } + Frame { + msec: 1216 + hash: "204cfba6a668ba25ed37f12bfcdd97eb" + } + Frame { + msec: 1232 + hash: "fa6c8f7f8a8730d412168002511b82e6" + } + Frame { + msec: 1248 + hash: "0d491b55d03f5d5bb6cfce63bc98deae" + } + Frame { + msec: 1264 + hash: "0e4d3edabdf6e0faa366abcc3b0ef521" + } + Frame { + msec: 1280 + hash: "13f397452e74ef834662363b09b000b9" + } + Key { + type: 7 + key: 16777234 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1296 + hash: "bb064cac4cb117b4d28e26d04dd59d7c" + } + Frame { + msec: 1312 + hash: "dfab74915a3f1e82c558ba8fb26d81fc" + } + Frame { + msec: 1328 + hash: "7593cfb3073aa9d638c093e0f4c9857d" + } + Frame { + msec: 1344 + hash: "fe4a725dcc97b7f320225e02dc88d34a" + } + Frame { + msec: 1360 + hash: "67794fa0162684b2097164d6cd666f16" + } + Frame { + msec: 1376 + hash: "747cfcd428eb59ca99749de261e561d4" + } + Frame { + msec: 1392 + hash: "293fd7523f25e42d2acab401482a9af9" + } + Frame { + msec: 1408 + hash: "2644c937db0488c14f833a9e9f7d9cf6" + } + Frame { + msec: 1424 + hash: "d80500f7cce8d887d0c523060e4217af" + } + Frame { + msec: 1440 + hash: "96265a45f0f25d9c0cd1168789b50952" + } + Frame { + msec: 1456 + hash: "e862d11944ea38939faa5b24fa9183bf" + } + Frame { + msec: 1472 + hash: "946c778fcc8ee4942a30d4654e103fec" + } + Frame { + msec: 1488 + hash: "946c778fcc8ee4942a30d4654e103fec" + } + Frame { + msec: 1504 + hash: "946c778fcc8ee4942a30d4654e103fec" + } + Frame { + msec: 1520 + hash: "946c778fcc8ee4942a30d4654e103fec" + } + Frame { + msec: 1536 + hash: "946c778fcc8ee4942a30d4654e103fec" + } + Frame { + msec: 1552 + hash: "946c778fcc8ee4942a30d4654e103fec" + } + Frame { + msec: 1568 + hash: "99e0e3d965bea36001298815d12b4d4c" + } + Frame { + msec: 1584 + hash: "c552ace3096eca31d0fc256d2bd153e0" + } + Frame { + msec: 1600 + hash: "203858ff0fc145ac60942c2b8e67ca20" + } + Frame { + msec: 1616 + hash: "11ea7696ec3aa9a394cabd723bcada9e" + } + Frame { + msec: 1632 + hash: "e0e24c0527e015d0bb05206771024d04" + } + Frame { + msec: 1648 + hash: "995ccae48c4f0fc2ab40e793d074e78b" + } + Key { + type: 6 + key: 16777249 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1664 + hash: "cff7bee4ba1e8eb4c46e13f12f6059e1" + } + Frame { + msec: 1680 + hash: "e43bd84ba7bdc4ea0370c79bfa7667bd" + } + Frame { + msec: 1696 + hash: "b7dd97abf895eaea20836833f959f0c6" + } + Frame { + msec: 1712 + hash: "b724e9874f0df5ed4ad9bdedbc4c45c9" + } + Frame { + msec: 1728 + hash: "69d9d28793e65aa9a1829d07cc035e4d" + } + Frame { + msec: 1744 + hash: "689fc2cf5feb1084fceda93eab9b7aac" + } + Frame { + msec: 1760 + hash: "2bcc0f2fb8cccf7904c982cd60d3fefb" + } + Frame { + msec: 1776 + hash: "d55a868304da7e9af57cd775f2c283c1" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1792 + hash: "b2591af5120258c99e84f31311396675" + } + Frame { + msec: 1808 + hash: "4f9908bdbad583a6a956a21d6ab05505" + } + Frame { + msec: 1824 + hash: "dd1c43a94dcabae975f0dba67c2742da" + } + Frame { + msec: 1840 + hash: "f9b8c8987bad613fe23fcf9d5fe995b8" + } + Frame { + msec: 1856 + hash: "9bd4431207a85e0effefb9cf36a2651b" + } + Frame { + msec: 1872 + hash: "cd7c4c097231797649f2d24a729e3587" + } + Frame { + msec: 1888 + hash: "f2ac503f2aab55df922f90a6b9baeb0f" + } + Frame { + msec: 1904 + hash: "f356c05f9445c2fb260a29a58431269c" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1920 + hash: "5580f8c543d67378b0f54117070f69bd" + } + Frame { + msec: 1936 + image: "cursorDelegate.2.png" + } + Frame { + msec: 1952 + hash: "634c5597e64c34b039c70f614f0100e1" + } + Frame { + msec: 1968 + hash: "7f0bde32846ae8172cfd02f38d34dc48" + } + Frame { + msec: 1984 + hash: "bc9092f889ffd6a6682ed9754c6697a2" + } + Frame { + msec: 2000 + hash: "3ef935e3a4a0d409af7dd38f2433cdfe" + } + Frame { + msec: 2016 + hash: "2a044024b38499e801810a19d313e01f" + } + Frame { + msec: 2032 + hash: "3ef935e3a4a0d409af7dd38f2433cdfe" + } + Frame { + msec: 2048 + hash: "bc9092f889ffd6a6682ed9754c6697a2" + } + Frame { + msec: 2064 + hash: "7f0bde32846ae8172cfd02f38d34dc48" + } + Frame { + msec: 2080 + hash: "634c5597e64c34b039c70f614f0100e1" + } + Frame { + msec: 2096 + hash: "80f3bf6ea745da047da936578b87ee00" + } + Frame { + msec: 2112 + hash: "5580f8c543d67378b0f54117070f69bd" + } + Frame { + msec: 2128 + hash: "f356c05f9445c2fb260a29a58431269c" + } + Frame { + msec: 2144 + hash: "f2ac503f2aab55df922f90a6b9baeb0f" + } + Frame { + msec: 2160 + hash: "cd7c4c097231797649f2d24a729e3587" + } + Frame { + msec: 2176 + hash: "9bd4431207a85e0effefb9cf36a2651b" + } + Frame { + msec: 2192 + hash: "f9b8c8987bad613fe23fcf9d5fe995b8" + } + Frame { + msec: 2208 + hash: "dd1c43a94dcabae975f0dba67c2742da" + } + Frame { + msec: 2224 + hash: "4f9908bdbad583a6a956a21d6ab05505" + } + Key { + type: 7 + key: 16777248 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2240 + hash: "b2591af5120258c99e84f31311396675" + } + Frame { + msec: 2256 + hash: "5c40e466b5af2e4b67dbb4ea96b24146" + } + Frame { + msec: 2272 + hash: "899a30ca4014231c8e9f15be4e0c3ee6" + } + Frame { + msec: 2288 + hash: "a44bbb13a336fdd4aedaf4c5c6ee399a" + } + Frame { + msec: 2304 + hash: "3b1b3e228ccbd61f9dfb896391da0b5b" + } + Frame { + msec: 2320 + hash: "22f5ec3d2eda574d1976604b82307924" + } + Frame { + msec: 2336 + hash: "9e63d1a15c954d2960eecf54e5eeb172" + } + Frame { + msec: 2352 + hash: "64ce03b10500b5a98b5c826362d8140e" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2368 + hash: "c96896be1a311c0cedc1c7ec1bd9e13e" + } + Frame { + msec: 2384 + hash: "d3d6dc1d8ff93e373583e3cbdca88b81" + } + Frame { + msec: 2400 + hash: "2a456146359c54c52f9e7a6cebcfa454" + } + Frame { + msec: 2416 + hash: "d127788c702c2ed037c709ffc331840e" + } + Frame { + msec: 2432 + hash: "8a5987a736b092e12198d969544d632c" + } + Frame { + msec: 2448 + hash: "e8471c605f6a8cc187d879510ed7ebe7" + } + Frame { + msec: 2464 + hash: "6959b4f72422636ae59989c9def06d03" + } + Frame { + msec: 2480 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Key { + type: 7 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2496 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 2512 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 2528 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 2544 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 2560 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 2576 + hash: "aa52467f87fbd766baa5137ddf18e0f6" + } + Frame { + msec: 2592 + hash: "bc9549a04b9bc898feda61b7fce45b3f" + } + Frame { + msec: 2608 + hash: "606e69ad9b6e3a82e08ae4bbabb34680" + } + Frame { + msec: 2624 + hash: "257ed9eae13221c5d47103043ef4ad5c" + } + Frame { + msec: 2640 + hash: "f5b44d257447499e0268e9a8730d88e7" + } + Frame { + msec: 2656 + hash: "8f03a92b2b0b04ee0ac45e7631df78ce" + } + Frame { + msec: 2672 + hash: "054e88b3d80940006b24fdf233a70682" + } + Frame { + msec: 2688 + hash: "20896fbba7e1970957ff20d33541730c" + } + Frame { + msec: 2704 + hash: "238fca62069b7c6e1b6919afca518dbe" + } + Frame { + msec: 2720 + hash: "764e14ba052d8340d6d674d6f417643d" + } + Frame { + msec: 2736 + hash: "278fb36637ff60d1949da9e9b887726f" + } + Frame { + msec: 2752 + hash: "f51251c5ec7b0071248d3fa5db1c12fd" + } + Frame { + msec: 2768 + hash: "785d38e036e7dd809037de3885067455" + } + Frame { + msec: 2784 + hash: "4291bb6217f363aab48812359626de36" + } + Frame { + msec: 2800 + hash: "e139ad6787f1c4a1b89d4030703076e5" + } + Frame { + msec: 2816 + hash: "4c23976fb1b3b583153cbd72f2db10f4" + } + Frame { + msec: 2832 + hash: "5e0a3d848a749ecd4f9a572f10664f4b" + } + Frame { + msec: 2848 + hash: "1acc382cfe2f5872982440e8a85eb57b" + } + Key { + type: 6 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2864 + hash: "eba94c6ae3dc4eb26c8d074137c7aa0f" + } + Frame { + msec: 2880 + hash: "7c75307fbb765bd69b888d500247b595" + } + Frame { + msec: 2896 + image: "cursorDelegate.3.png" + } + Frame { + msec: 2912 + hash: "da73d23a925d93194aeb64d1522adc02" + } + Frame { + msec: 2928 + hash: "d661872854338121d867b35d9e44ae6d" + } + Frame { + msec: 2944 + hash: "969b5cf20c7c4e18723a8b8a70ea68ec" + } + Frame { + msec: 2960 + hash: "c7318ea4b4a4ac49308bef41d3bc264d" + } + Frame { + msec: 2976 + hash: "dd6bd11cc0bc877dbd70c55d4f5bab29" + } + Key { + type: 7 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2992 + hash: "21905ed4264a52c9b404149abedabe33" + } + Frame { + msec: 3008 + hash: "e952374e5967619679af711157b561cd" + } + Frame { + msec: 3024 + hash: "e952374e5967619679af711157b561cd" + } + Frame { + msec: 3040 + hash: "21905ed4264a52c9b404149abedabe33" + } + Frame { + msec: 3056 + hash: "dd6bd11cc0bc877dbd70c55d4f5bab29" + } + Frame { + msec: 3072 + hash: "c7318ea4b4a4ac49308bef41d3bc264d" + } + Frame { + msec: 3088 + hash: "969b5cf20c7c4e18723a8b8a70ea68ec" + } + Frame { + msec: 3104 + hash: "d661872854338121d867b35d9e44ae6d" + } + Frame { + msec: 3120 + hash: "da73d23a925d93194aeb64d1522adc02" + } + Frame { + msec: 3136 + hash: "2c0261e2223d7212e047dd4af6246a8f" + } + Frame { + msec: 3152 + hash: "7c75307fbb765bd69b888d500247b595" + } + Frame { + msec: 3168 + hash: "eba94c6ae3dc4eb26c8d074137c7aa0f" + } + Frame { + msec: 3184 + hash: "e6eaa9959334f24ef3cf68d44d7340f1" + } + Frame { + msec: 3200 + hash: "3adb8604d872bc8ff5498841c6da71b5" + } + Frame { + msec: 3216 + hash: "e602eeaac3ce53033154297e73802c02" + } + Key { + type: 6 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3232 + hash: "85afa80a1c333674cfbfcc38cedc798d" + } + Frame { + msec: 3248 + hash: "72679887fb26b7eb2553d6e554e26679" + } + Frame { + msec: 3264 + hash: "d25f21361d9cea41b17277f1ffecac62" + } + Frame { + msec: 3280 + hash: "24db38727e1a58d515119181ea41e209" + } + Frame { + msec: 3296 + hash: "e7ddd84f438fd2d463a3b9552dad345a" + } + Frame { + msec: 3312 + hash: "621e406f5b9204eb5d82c4f66fdf6a61" + } + Frame { + msec: 3328 + hash: "2a8befe073dda8589197cf05eeeaaf59" + } + Key { + type: 7 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3344 + hash: "104f0e21a041236f48dab6fe2c1c5aa1" + } + Frame { + msec: 3360 + hash: "0f8f74614b0b7295bb9df8fa0b1f6877" + } + Frame { + msec: 3376 + hash: "3a3cc6cfd3200e06a2816f2746edf699" + } + Frame { + msec: 3392 + hash: "83032d1da6907ebe1ab9fddf314d0bc1" + } + Frame { + msec: 3408 + hash: "b93878281f21c85c211908086f2899e7" + } + Frame { + msec: 3424 + hash: "a554a6ecd96f37f114f1fd616e0aeab2" + } + Frame { + msec: 3440 + hash: "8943d47912a4206e61836d99cca835da" + } + Frame { + msec: 3456 + hash: "4d06d264f71d75421c9a6d5a87d6a9ba" + } + Frame { + msec: 3472 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 3488 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 3504 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 3520 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 3536 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 3552 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 3568 + hash: "ca17401d638025fde8aad18b9a358029" + } + Frame { + msec: 3584 + hash: "3542537f0b0e1375d81c7f0365bbdf1d" + } + Frame { + msec: 3600 + hash: "235b68812a3cb48fc09bd8319aef40f1" + } + Frame { + msec: 3616 + hash: "3aa88f646534068d13e9c4f23af52019" + } + Frame { + msec: 3632 + hash: "8f037bdef4940fdb1936900ad5aee36e" + } + Frame { + msec: 3648 + hash: "18e8239c50ca62a5bd96d983ab5ff46d" + } + Frame { + msec: 3664 + hash: "d62f6887bdad9decb48ebaf63a6330a3" + } + Frame { + msec: 3680 + hash: "0af7997ec1a755a761fc1ab47ef30137" + } + Frame { + msec: 3696 + hash: "b3a384f93ef5f36466f0a638182b66cb" + } + Frame { + msec: 3712 + hash: "fceb3ee105028e29dca001197c63e524" + } + Frame { + msec: 3728 + hash: "5c16dc7aee02eefa95d0c6211f81ba48" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3744 + hash: "e4c3193ad0885084becbeaaaa899fff4" + } + Frame { + msec: 3760 + hash: "84afa9118845126960309537e529ea74" + } + Frame { + msec: 3776 + hash: "6e18f95c4252aff3ee5447a08153ee53" + } + Frame { + msec: 3792 + hash: "59facabe2430703113665d0153402472" + } + Frame { + msec: 3808 + hash: "316bce2e605a4df04d41a4f7620086bd" + } + Frame { + msec: 3824 + hash: "7dcba8f0dd9fd67518f0502d904624fd" + } + Frame { + msec: 3840 + hash: "cb9166d113c5c7495916f6b7f850407c" + } + Key { + type: 7 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3856 + image: "cursorDelegate.4.png" + } + Frame { + msec: 3872 + hash: "7cc78c7ab5820a698b62c452dfc0d1db" + } + Frame { + msec: 3888 + hash: "5f068715dc1244895e6e09afd6e846a9" + } + Frame { + msec: 3904 + hash: "c279e7293539593bfc8250d37f78791c" + } + Frame { + msec: 3920 + hash: "d01ff855befa456a213d4f78f22fe46c" + } + Frame { + msec: 3936 + hash: "16e20d2e663e64daa1920b165604f342" + } + Frame { + msec: 3952 + hash: "2feebd6865e71afd30c73e342fb2cab1" + } + Frame { + msec: 3968 + hash: "8c417cb9ef300c895323060ceb860bd9" + } + Frame { + msec: 3984 + hash: "05903a78cad8d331349f93a1cea75d7d" + } + Frame { + msec: 4000 + hash: "e142bb264ab7877a9b40596d497ea2c1" + } + Frame { + msec: 4016 + hash: "717e5e965b9ff188fd9200927968d359" + } + Frame { + msec: 4032 + hash: "e142bb264ab7877a9b40596d497ea2c1" + } + Frame { + msec: 4048 + hash: "05903a78cad8d331349f93a1cea75d7d" + } + Frame { + msec: 4064 + hash: "8c417cb9ef300c895323060ceb860bd9" + } + Key { + type: 7 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 4080 + hash: "2feebd6865e71afd30c73e342fb2cab1" + } + Frame { + msec: 4096 + hash: "16e20d2e663e64daa1920b165604f342" + } + Frame { + msec: 4112 + hash: "d01ff855befa456a213d4f78f22fe46c" + } + Frame { + msec: 4128 + hash: "c279e7293539593bfc8250d37f78791c" + } + Frame { + msec: 4144 + hash: "5f068715dc1244895e6e09afd6e846a9" + } + Frame { + msec: 4160 + hash: "7cc78c7ab5820a698b62c452dfc0d1db" + } + Frame { + msec: 4176 + hash: "194b8b8843cf8a7d90ec910ee4021d9c" + } + Frame { + msec: 4192 + hash: "cb9166d113c5c7495916f6b7f850407c" + } + Frame { + msec: 4208 + hash: "7dcba8f0dd9fd67518f0502d904624fd" + } + Frame { + msec: 4224 + hash: "316bce2e605a4df04d41a4f7620086bd" + } + Frame { + msec: 4240 + hash: "59facabe2430703113665d0153402472" + } + Frame { + msec: 4256 + hash: "6e18f95c4252aff3ee5447a08153ee53" + } + Frame { + msec: 4272 + hash: "84afa9118845126960309537e529ea74" + } + Frame { + msec: 4288 + hash: "e4c3193ad0885084becbeaaaa899fff4" + } + Frame { + msec: 4304 + hash: "6a7b8f8ae1959681afc7e76c242ddf63" + } + Frame { + msec: 4320 + hash: "94457c4fd09b63fe9df738af422a3716" + } + Frame { + msec: 4336 + hash: "29189dea05961b2ed7d525b17bc99513" + } + Frame { + msec: 4352 + hash: "11fc3e52587bbedf0016c829d2d849d1" + } + Frame { + msec: 4368 + hash: "57178e2a3d404d4301ee89a6202ad7cc" + } + Frame { + msec: 4384 + hash: "151778e9dd76fbf6d9e98b86469ec01e" + } + Frame { + msec: 4400 + hash: "bfab5d3f368c06f2ef5e22b7e16090ad" + } + Frame { + msec: 4416 + hash: "ef29b8ff8fcf221368056aa249f706a1" + } + Frame { + msec: 4432 + hash: "cd14458426f94efbbc729112e6a481c5" + } + Frame { + msec: 4448 + hash: "cbafbb1c359a0c0e7182c4449d04b052" + } + Frame { + msec: 4464 + hash: "b56e3f531bb6b3f2c62a6972910038b3" + } + Frame { + msec: 4480 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 4496 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 4512 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 4528 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 4544 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 4560 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 4576 + hash: "3d6db6e3ee77ee75341ce16dc4a56c59" + } + Frame { + msec: 4592 + hash: "ff43ccdb14ae4d12ffead2eb261a5056" + } + Frame { + msec: 4608 + hash: "fb73ac1e61834f2f0263e53a3c00a857" + } + Frame { + msec: 4624 + hash: "6bd66d118ff27b0cea7944ea22c727c9" + } + Frame { + msec: 4640 + hash: "0b474aa5492386c319bf72280dae7896" + } + Frame { + msec: 4656 + hash: "81952cf37f0965a603bf06a05ef610fa" + } + Frame { + msec: 4672 + hash: "ad7606f147498c755284d111a1af7710" + } + Frame { + msec: 4688 + hash: "144abb4208f9cc4f823e0d4abb3207d8" + } + Frame { + msec: 4704 + hash: "0b4f3fafaf262f16e887938eda9624a3" + } + Frame { + msec: 4720 + hash: "e729d3fde3db0f72b1080c7dc2eded1a" + } + Frame { + msec: 4736 + hash: "36ffc8e16ebcb9c4499c4ff037b8b293" + } + Frame { + msec: 4752 + hash: "c49853a23d2e8b966836888acce19ecc" + } + Frame { + msec: 4768 + hash: "3873af5aa871bdb1d4f538333b11cf33" + } + Frame { + msec: 4784 + hash: "6d02efe848b27b3e221a8332099fb83f" + } + Frame { + msec: 4800 + hash: "2f08f365916d892f0789e93b674cb41b" + } + Frame { + msec: 4816 + image: "cursorDelegate.5.png" + } + Frame { + msec: 4832 + hash: "3adb8604d872bc8ff5498841c6da71b5" + } + Frame { + msec: 4848 + hash: "e6eaa9959334f24ef3cf68d44d7340f1" + } + Frame { + msec: 4864 + hash: "eba94c6ae3dc4eb26c8d074137c7aa0f" + } + Frame { + msec: 4880 + hash: "7c75307fbb765bd69b888d500247b595" + } + Frame { + msec: 4896 + hash: "2c0261e2223d7212e047dd4af6246a8f" + } + Frame { + msec: 4912 + hash: "da73d23a925d93194aeb64d1522adc02" + } + Frame { + msec: 4928 + hash: "d661872854338121d867b35d9e44ae6d" + } + Frame { + msec: 4944 + hash: "969b5cf20c7c4e18723a8b8a70ea68ec" + } + Frame { + msec: 4960 + hash: "c7318ea4b4a4ac49308bef41d3bc264d" + } + Frame { + msec: 4976 + hash: "dd6bd11cc0bc877dbd70c55d4f5bab29" + } + Frame { + msec: 4992 + hash: "21905ed4264a52c9b404149abedabe33" + } + Frame { + msec: 5008 + hash: "e952374e5967619679af711157b561cd" + } + Frame { + msec: 5024 + hash: "e952374e5967619679af711157b561cd" + } + Frame { + msec: 5040 + hash: "21905ed4264a52c9b404149abedabe33" + } + Frame { + msec: 5056 + hash: "dd6bd11cc0bc877dbd70c55d4f5bab29" + } + Frame { + msec: 5072 + hash: "c7318ea4b4a4ac49308bef41d3bc264d" + } + Frame { + msec: 5088 + hash: "969b5cf20c7c4e18723a8b8a70ea68ec" + } + Frame { + msec: 5104 + hash: "d661872854338121d867b35d9e44ae6d" + } + Frame { + msec: 5120 + hash: "da73d23a925d93194aeb64d1522adc02" + } + Frame { + msec: 5136 + hash: "2c0261e2223d7212e047dd4af6246a8f" + } + Frame { + msec: 5152 + hash: "7c75307fbb765bd69b888d500247b595" + } + Frame { + msec: 5168 + hash: "eba94c6ae3dc4eb26c8d074137c7aa0f" + } + Frame { + msec: 5184 + hash: "e6eaa9959334f24ef3cf68d44d7340f1" + } + Frame { + msec: 5200 + hash: "3adb8604d872bc8ff5498841c6da71b5" + } + Frame { + msec: 5216 + hash: "e602eeaac3ce53033154297e73802c02" + } + Frame { + msec: 5232 + hash: "2f08f365916d892f0789e93b674cb41b" + } + Frame { + msec: 5248 + hash: "6d02efe848b27b3e221a8332099fb83f" + } + Frame { + msec: 5264 + hash: "3873af5aa871bdb1d4f538333b11cf33" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.0.png Binary files differnew file mode 100644 index 0000000..59fc0fc --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.1.png Binary files differnew file mode 100644 index 0000000..2747b50 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.2.png Binary files differnew file mode 100644 index 0000000..74efe73 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.3.png Binary files differnew file mode 100644 index 0000000..02f6e17 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.4.png Binary files differnew file mode 100644 index 0000000..59fc0fc --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.qml new file mode 100644 index 0000000..760a831 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.qml @@ -0,0 +1,1371 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "qt-669.0.png" + } + Frame { + msec: 32 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 48 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 64 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 80 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 96 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 112 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 128 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 144 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 160 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 176 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 192 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 208 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 224 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 240 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 256 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 272 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 288 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 304 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 320 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 336 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 352 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 368 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 384 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 400 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 416 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 432 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 448 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 464 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 480 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 496 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 512 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 528 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 544 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 560 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 576 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 592 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 608 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 624 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 640 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 656 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 672 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 688 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 704 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 720 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 736 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 752 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 768 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 784 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 800 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 816 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 832 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 848 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 864 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 880 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 896 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 912 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 928 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 944 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 960 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 976 + image: "qt-669.1.png" + } + Frame { + msec: 992 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 1008 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1024 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 1040 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 1056 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 1072 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 1088 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1104 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Frame { + msec: 1120 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Frame { + msec: 1136 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1152 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Frame { + msec: 1168 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Frame { + msec: 1184 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Frame { + msec: 1200 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Frame { + msec: 1216 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1232 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 1248 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 1264 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 1280 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1296 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 1312 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 1328 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 1344 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1360 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1376 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1392 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1408 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1424 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1440 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1456 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1472 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1488 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1504 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1520 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1536 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1552 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1568 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1584 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1600 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1616 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1632 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1648 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1664 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1680 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1696 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1712 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1728 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1744 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1760 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1776 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1792 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1808 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1824 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Frame { + msec: 1840 + hash: "64f5712c1f96345f2a2ad103e6fbd734" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1856 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1872 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1888 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1904 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1920 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1936 + image: "qt-669.2.png" + } + Frame { + msec: 1952 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1968 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 1984 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2000 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 2016 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 2032 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 2048 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Frame { + msec: 2064 + hash: "7f895d1255301397298cd6b92282e4f7" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2080 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 2096 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 2112 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 2128 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 2144 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2160 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 2176 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 2192 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 2208 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Frame { + msec: 2224 + hash: "6ec9e863238467c249f62bdd38b68490" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2240 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Frame { + msec: 2256 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2272 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Frame { + msec: 2288 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Frame { + msec: 2304 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Frame { + msec: 2320 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Frame { + msec: 2336 + hash: "fe998f3c7c780fddfa6a595936d2e78e" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2352 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2368 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2384 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2400 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2416 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2432 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2448 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2464 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2480 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2496 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2512 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2528 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2544 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2560 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2576 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Frame { + msec: 2592 + hash: "a7415d0abcc670ba02c2a00b3b5fc647" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2608 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 2624 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 2640 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 2656 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 2672 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2688 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 2704 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 2720 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 2736 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Frame { + msec: 2752 + hash: "9eda76efdd179847e89b9e96ead51e4a" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2768 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 2784 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 2800 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2816 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 2832 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 2848 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Frame { + msec: 2864 + hash: "1bcb9bc9d6606329ad5376ea6f608bf8" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2880 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 2896 + image: "qt-669.3.png" + } + Frame { + msec: 2912 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 2928 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2944 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 2960 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 2976 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 2992 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Frame { + msec: 3008 + hash: "1465f1f32ba4a6180ab3460298febe26" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3024 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3040 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3056 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3072 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3088 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3104 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3120 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3136 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3152 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3168 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3184 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3200 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3216 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3232 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3248 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3264 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3280 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3296 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3312 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3328 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3344 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3360 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3376 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3392 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3408 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3424 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3440 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3456 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3472 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3488 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3504 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3520 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3536 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3552 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3568 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3584 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3600 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3616 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3632 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3648 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3664 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3680 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Frame { + msec: 3696 + hash: "89f3a1c5080d5d742e4455a8818a715c" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3712 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3728 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3744 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3760 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3776 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3792 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3808 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3824 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3840 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3856 + image: "qt-669.4.png" + } + Frame { + msec: 3872 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3888 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3904 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3920 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3936 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3952 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3968 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 3984 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4000 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4016 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4032 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4048 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4064 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4080 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4096 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4112 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4128 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4144 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4160 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4176 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4192 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4208 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4224 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4240 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4256 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4272 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4288 + hash: "0051b27d72a917e2af72c4b953877d42" + } + Frame { + msec: 4304 + hash: "0051b27d72a917e2af72c4b953877d42" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.0.png Binary files differnew file mode 100644 index 0000000..a1c3c39 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.1.png Binary files differnew file mode 100644 index 0000000..bfc91f5 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.10.png Binary files differnew file mode 100644 index 0000000..8effaef --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.10.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.11.png Binary files differnew file mode 100644 index 0000000..8effaef --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.11.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.12.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.12.png Binary files differnew file mode 100644 index 0000000..8effaef --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.12.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.2.png Binary files differnew file mode 100644 index 0000000..f1829fa --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.3.png Binary files differnew file mode 100644 index 0000000..b7f41db --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.4.png Binary files differnew file mode 100644 index 0000000..9e58c3a --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.5.png Binary files differnew file mode 100644 index 0000000..8dbcc41 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.6.png Binary files differnew file mode 100644 index 0000000..302974b --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.6.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.7.png Binary files differnew file mode 100644 index 0000000..b79af19 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.7.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.8.png Binary files differnew file mode 100644 index 0000000..b435da6 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.8.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.9.png Binary files differnew file mode 100644 index 0000000..ef15fdf --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.9.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.qml new file mode 100644 index 0000000..a03948c --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.qml @@ -0,0 +1,4687 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "usingMultilineEdit.0.png" + } + Frame { + msec: 32 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 48 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 64 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 80 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 96 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 112 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 128 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 144 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 160 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 176 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 192 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 208 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 224 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 240 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 256 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 272 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 288 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 304 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 320 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 118; y: 70 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 336 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 352 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 368 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 384 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 400 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 118; y: 70 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 416 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 432 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 448 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 464 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 480 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 496 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 512 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 528 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 544 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 560 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 576 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 592 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 608 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 624 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Frame { + msec: 640 + hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 117; y: 102 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 656 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 672 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 117; y: 102 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 688 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 704 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 720 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 736 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 752 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 768 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 784 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 800 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 816 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 832 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 848 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 864 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 880 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 896 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 912 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 928 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 944 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 960 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 976 + image: "usingMultilineEdit.1.png" + } + Frame { + msec: 992 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1008 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1024 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1040 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1056 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1072 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1088 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1104 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1120 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1136 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1152 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1168 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1184 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1200 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1216 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1232 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1248 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1264 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1280 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Frame { + msec: 1296 + hash: "2414ab7436ed58a29eaf3ef15b5ced79" + } + Key { + type: 6 + key: 44 + modifiers: 0 + text: "2c" + autorep: false + count: 1 + } + Frame { + msec: 1312 + hash: "91757521cdb0617645a2a6cb831f51f3" + } + Frame { + msec: 1328 + hash: "91757521cdb0617645a2a6cb831f51f3" + } + Frame { + msec: 1344 + hash: "91757521cdb0617645a2a6cb831f51f3" + } + Frame { + msec: 1360 + hash: "91757521cdb0617645a2a6cb831f51f3" + } + Frame { + msec: 1376 + hash: "91757521cdb0617645a2a6cb831f51f3" + } + Key { + type: 7 + key: 44 + modifiers: 0 + text: "2c" + autorep: false + count: 1 + } + Frame { + msec: 1392 + hash: "91757521cdb0617645a2a6cb831f51f3" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1408 + hash: "a7e2d2f2668dcb902d3ab0e413d9b639" + } + Frame { + msec: 1424 + hash: "a7e2d2f2668dcb902d3ab0e413d9b639" + } + Frame { + msec: 1440 + hash: "a7e2d2f2668dcb902d3ab0e413d9b639" + } + Frame { + msec: 1456 + hash: "a7e2d2f2668dcb902d3ab0e413d9b639" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1472 + hash: "a7e2d2f2668dcb902d3ab0e413d9b639" + } + Frame { + msec: 1488 + hash: "a7e2d2f2668dcb902d3ab0e413d9b639" + } + Frame { + msec: 1504 + hash: "a7e2d2f2668dcb902d3ab0e413d9b639" + } + Frame { + msec: 1520 + hash: "a7e2d2f2668dcb902d3ab0e413d9b639" + } + Frame { + msec: 1536 + hash: "a7e2d2f2668dcb902d3ab0e413d9b639" + } + Frame { + msec: 1552 + hash: "a7e2d2f2668dcb902d3ab0e413d9b639" + } + Key { + type: 6 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1568 + hash: "1602f7c814daec9612795d1e109b8f14" + } + Frame { + msec: 1584 + hash: "1602f7c814daec9612795d1e109b8f14" + } + Frame { + msec: 1600 + hash: "1602f7c814daec9612795d1e109b8f14" + } + Key { + type: 7 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1616 + hash: "1602f7c814daec9612795d1e109b8f14" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1632 + hash: "84e1e7c90b2134d037146d8a7cd4c413" + } + Frame { + msec: 1648 + hash: "84e1e7c90b2134d037146d8a7cd4c413" + } + Frame { + msec: 1664 + hash: "84e1e7c90b2134d037146d8a7cd4c413" + } + Frame { + msec: 1680 + hash: "84e1e7c90b2134d037146d8a7cd4c413" + } + Frame { + msec: 1696 + hash: "84e1e7c90b2134d037146d8a7cd4c413" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1712 + hash: "84e1e7c90b2134d037146d8a7cd4c413" + } + Frame { + msec: 1728 + hash: "84e1e7c90b2134d037146d8a7cd4c413" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1744 + hash: "87109c5f296e5b56aaecc09a2decae4d" + } + Frame { + msec: 1760 + hash: "87109c5f296e5b56aaecc09a2decae4d" + } + Frame { + msec: 1776 + hash: "87109c5f296e5b56aaecc09a2decae4d" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1792 + hash: "87109c5f296e5b56aaecc09a2decae4d" + } + Frame { + msec: 1808 + hash: "87109c5f296e5b56aaecc09a2decae4d" + } + Frame { + msec: 1824 + hash: "87109c5f296e5b56aaecc09a2decae4d" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 1840 + hash: "29f766ca17ac45522ca2079cce9a1015" + } + Frame { + msec: 1856 + hash: "29f766ca17ac45522ca2079cce9a1015" + } + Frame { + msec: 1872 + hash: "29f766ca17ac45522ca2079cce9a1015" + } + Frame { + msec: 1888 + hash: "29f766ca17ac45522ca2079cce9a1015" + } + Frame { + msec: 1904 + hash: "29f766ca17ac45522ca2079cce9a1015" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1920 + hash: "be6de699f29278ee3a39c3d8ed90f808" + } + Frame { + msec: 1936 + image: "usingMultilineEdit.2.png" + } + Frame { + msec: 1952 + hash: "be6de699f29278ee3a39c3d8ed90f808" + } + Frame { + msec: 1968 + hash: "be6de699f29278ee3a39c3d8ed90f808" + } + Key { + type: 6 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 1984 + hash: "ef413406c3e7aa03ced4e06661dfafcc" + } + Frame { + msec: 2000 + hash: "ef413406c3e7aa03ced4e06661dfafcc" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 2016 + hash: "ef413406c3e7aa03ced4e06661dfafcc" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2032 + hash: "d29b729a45533ef77af530ab2f125bd1" + } + Frame { + msec: 2048 + hash: "d29b729a45533ef77af530ab2f125bd1" + } + Key { + type: 7 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 2064 + hash: "d29b729a45533ef77af530ab2f125bd1" + } + Frame { + msec: 2080 + hash: "d29b729a45533ef77af530ab2f125bd1" + } + Frame { + msec: 2096 + hash: "d29b729a45533ef77af530ab2f125bd1" + } + Frame { + msec: 2112 + hash: "d29b729a45533ef77af530ab2f125bd1" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2128 + hash: "d29b729a45533ef77af530ab2f125bd1" + } + Frame { + msec: 2144 + hash: "d29b729a45533ef77af530ab2f125bd1" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 2160 + hash: "3b2069cbaa6640664dbe1b80f3cf0670" + } + Frame { + msec: 2176 + hash: "3b2069cbaa6640664dbe1b80f3cf0670" + } + Frame { + msec: 2192 + hash: "3b2069cbaa6640664dbe1b80f3cf0670" + } + Frame { + msec: 2208 + hash: "3b2069cbaa6640664dbe1b80f3cf0670" + } + Frame { + msec: 2224 + hash: "3b2069cbaa6640664dbe1b80f3cf0670" + } + Frame { + msec: 2240 + hash: "3b2069cbaa6640664dbe1b80f3cf0670" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Key { + type: 6 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 2256 + hash: "6ef4fd1a5d53c16670163384ef4c8f06" + } + Frame { + msec: 2272 + hash: "6ef4fd1a5d53c16670163384ef4c8f06" + } + Frame { + msec: 2288 + hash: "6ef4fd1a5d53c16670163384ef4c8f06" + } + Frame { + msec: 2304 + hash: "6ef4fd1a5d53c16670163384ef4c8f06" + } + Frame { + msec: 2320 + hash: "6ef4fd1a5d53c16670163384ef4c8f06" + } + Key { + type: 7 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 2336 + hash: "6ef4fd1a5d53c16670163384ef4c8f06" + } + Frame { + msec: 2352 + hash: "6ef4fd1a5d53c16670163384ef4c8f06" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 2368 + hash: "c656f82ce3471c70d5f8050c5bd904e6" + } + Frame { + msec: 2384 + hash: "c656f82ce3471c70d5f8050c5bd904e6" + } + Frame { + msec: 2400 + hash: "c656f82ce3471c70d5f8050c5bd904e6" + } + Frame { + msec: 2416 + hash: "c656f82ce3471c70d5f8050c5bd904e6" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 2432 + hash: "c656f82ce3471c70d5f8050c5bd904e6" + } + Key { + type: 6 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 2448 + hash: "991d345c4a62087543afa032e8d4bd2f" + } + Frame { + msec: 2464 + hash: "991d345c4a62087543afa032e8d4bd2f" + } + Frame { + msec: 2480 + hash: "991d345c4a62087543afa032e8d4bd2f" + } + Frame { + msec: 2496 + hash: "991d345c4a62087543afa032e8d4bd2f" + } + Frame { + msec: 2512 + hash: "991d345c4a62087543afa032e8d4bd2f" + } + Frame { + msec: 2528 + hash: "991d345c4a62087543afa032e8d4bd2f" + } + Key { + type: 7 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 2544 + hash: "991d345c4a62087543afa032e8d4bd2f" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2560 + hash: "9b55130d7cb0922aaeed3a5aad103f98" + } + Frame { + msec: 2576 + hash: "9b55130d7cb0922aaeed3a5aad103f98" + } + Frame { + msec: 2592 + hash: "9b55130d7cb0922aaeed3a5aad103f98" + } + Frame { + msec: 2608 + hash: "9b55130d7cb0922aaeed3a5aad103f98" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2624 + hash: "9b55130d7cb0922aaeed3a5aad103f98" + } + Frame { + msec: 2640 + hash: "9b55130d7cb0922aaeed3a5aad103f98" + } + Frame { + msec: 2656 + hash: "9b55130d7cb0922aaeed3a5aad103f98" + } + Frame { + msec: 2672 + hash: "9b55130d7cb0922aaeed3a5aad103f98" + } + Frame { + msec: 2688 + hash: "9b55130d7cb0922aaeed3a5aad103f98" + } + Key { + type: 6 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 2704 + hash: "9b323c8f49dc890af8849a0de8a7db4d" + } + Frame { + msec: 2720 + hash: "9b323c8f49dc890af8849a0de8a7db4d" + } + Frame { + msec: 2736 + hash: "9b323c8f49dc890af8849a0de8a7db4d" + } + Frame { + msec: 2752 + hash: "9b323c8f49dc890af8849a0de8a7db4d" + } + Frame { + msec: 2768 + hash: "9b323c8f49dc890af8849a0de8a7db4d" + } + Frame { + msec: 2784 + hash: "9b323c8f49dc890af8849a0de8a7db4d" + } + Key { + type: 6 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2800 + hash: "c3c761352c46bd89c400c6638180fa9a" + } + Key { + type: 7 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 2816 + hash: "c3c761352c46bd89c400c6638180fa9a" + } + Frame { + msec: 2832 + hash: "c3c761352c46bd89c400c6638180fa9a" + } + Frame { + msec: 2848 + hash: "c3c761352c46bd89c400c6638180fa9a" + } + Frame { + msec: 2864 + hash: "c3c761352c46bd89c400c6638180fa9a" + } + Key { + type: 7 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2880 + hash: "c3c761352c46bd89c400c6638180fa9a" + } + Frame { + msec: 2896 + image: "usingMultilineEdit.3.png" + } + Frame { + msec: 2912 + hash: "c3c761352c46bd89c400c6638180fa9a" + } + Frame { + msec: 2928 + hash: "c3c761352c46bd89c400c6638180fa9a" + } + Key { + type: 6 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Frame { + msec: 2944 + hash: "93af025fc4cf949167efac7ed3bc5258" + } + Frame { + msec: 2960 + hash: "93af025fc4cf949167efac7ed3bc5258" + } + Frame { + msec: 2976 + hash: "93af025fc4cf949167efac7ed3bc5258" + } + Key { + type: 7 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Key { + type: 6 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 2992 + hash: "41fe34c5246a438886e85fdc30513a08" + } + Frame { + msec: 3008 + hash: "41fe34c5246a438886e85fdc30513a08" + } + Frame { + msec: 3024 + hash: "41fe34c5246a438886e85fdc30513a08" + } + Frame { + msec: 3040 + hash: "41fe34c5246a438886e85fdc30513a08" + } + Key { + type: 7 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 3056 + hash: "41fe34c5246a438886e85fdc30513a08" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3072 + hash: "db7bd05984a1ca713382f109780b8e5d" + } + Frame { + msec: 3088 + hash: "db7bd05984a1ca713382f109780b8e5d" + } + Frame { + msec: 3104 + hash: "db7bd05984a1ca713382f109780b8e5d" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3120 + hash: "db7bd05984a1ca713382f109780b8e5d" + } + Key { + type: 7 + key: 32 + modifiers: 33554432 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3136 + hash: "db7bd05984a1ca713382f109780b8e5d" + } + Frame { + msec: 3152 + hash: "db7bd05984a1ca713382f109780b8e5d" + } + Key { + type: 6 + key: 73 + modifiers: 33554432 + text: "49" + autorep: false + count: 1 + } + Frame { + msec: 3168 + hash: "85bed6c44d017fb45591ee821a6e8c82" + } + Frame { + msec: 3184 + hash: "85bed6c44d017fb45591ee821a6e8c82" + } + Frame { + msec: 3200 + hash: "85bed6c44d017fb45591ee821a6e8c82" + } + Frame { + msec: 3216 + hash: "85bed6c44d017fb45591ee821a6e8c82" + } + Key { + type: 7 + key: 73 + modifiers: 33554432 + text: "49" + autorep: false + count: 1 + } + Frame { + msec: 3232 + hash: "85bed6c44d017fb45591ee821a6e8c82" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3248 + hash: "70e09c15e0db15327b278c20508cd77e" + } + Frame { + msec: 3264 + hash: "70e09c15e0db15327b278c20508cd77e" + } + Frame { + msec: 3280 + hash: "70e09c15e0db15327b278c20508cd77e" + } + Frame { + msec: 3296 + hash: "70e09c15e0db15327b278c20508cd77e" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3312 + hash: "70e09c15e0db15327b278c20508cd77e" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3328 + hash: "7bdf47aad57a3e53683819927a9ba6f7" + } + Frame { + msec: 3344 + hash: "7bdf47aad57a3e53683819927a9ba6f7" + } + Frame { + msec: 3360 + hash: "7bdf47aad57a3e53683819927a9ba6f7" + } + Frame { + msec: 3376 + hash: "7bdf47aad57a3e53683819927a9ba6f7" + } + Frame { + msec: 3392 + hash: "7bdf47aad57a3e53683819927a9ba6f7" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3408 + hash: "7bdf47aad57a3e53683819927a9ba6f7" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 3424 + hash: "cd302294ea4a6015f4093e3ce0640a15" + } + Frame { + msec: 3440 + hash: "cd302294ea4a6015f4093e3ce0640a15" + } + Frame { + msec: 3456 + hash: "cd302294ea4a6015f4093e3ce0640a15" + } + Frame { + msec: 3472 + hash: "cd302294ea4a6015f4093e3ce0640a15" + } + Frame { + msec: 3488 + hash: "cd302294ea4a6015f4093e3ce0640a15" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Key { + type: 6 + key: 78 + modifiers: 0 + text: "6e" + autorep: false + count: 1 + } + Frame { + msec: 3504 + hash: "6679b8bffbcf389e1a56e9e494c9041c" + } + Frame { + msec: 3520 + hash: "6679b8bffbcf389e1a56e9e494c9041c" + } + Frame { + msec: 3536 + hash: "6679b8bffbcf389e1a56e9e494c9041c" + } + Frame { + msec: 3552 + hash: "6679b8bffbcf389e1a56e9e494c9041c" + } + Frame { + msec: 3568 + hash: "6679b8bffbcf389e1a56e9e494c9041c" + } + Frame { + msec: 3584 + hash: "6679b8bffbcf389e1a56e9e494c9041c" + } + Key { + type: 7 + key: 78 + modifiers: 0 + text: "6e" + autorep: false + count: 1 + } + Frame { + msec: 3600 + hash: "6679b8bffbcf389e1a56e9e494c9041c" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 3616 + hash: "6cf8306437867645e5459cd4c9733ef7" + } + Frame { + msec: 3632 + hash: "6cf8306437867645e5459cd4c9733ef7" + } + Frame { + msec: 3648 + hash: "6cf8306437867645e5459cd4c9733ef7" + } + Frame { + msec: 3664 + hash: "6cf8306437867645e5459cd4c9733ef7" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3680 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 3696 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3712 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3728 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3744 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3760 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3776 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3792 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3808 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3824 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3840 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3856 + image: "usingMultilineEdit.4.png" + } + Frame { + msec: 3872 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3888 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3904 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3920 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3936 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3952 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Frame { + msec: 3968 + hash: "31c0880fb6b8995881f0983685c51c81" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 3984 + hash: "34c2a53d8852e17ab2b7990eb6156343" + } + Frame { + msec: 4000 + hash: "34c2a53d8852e17ab2b7990eb6156343" + } + Frame { + msec: 4016 + hash: "34c2a53d8852e17ab2b7990eb6156343" + } + Frame { + msec: 4032 + hash: "34c2a53d8852e17ab2b7990eb6156343" + } + Frame { + msec: 4048 + hash: "34c2a53d8852e17ab2b7990eb6156343" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4064 + hash: "75a0e73d34f90ca26b4c7e94a7a6ecd2" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 4080 + hash: "75a0e73d34f90ca26b4c7e94a7a6ecd2" + } + Frame { + msec: 4096 + hash: "75a0e73d34f90ca26b4c7e94a7a6ecd2" + } + Frame { + msec: 4112 + hash: "75a0e73d34f90ca26b4c7e94a7a6ecd2" + } + Frame { + msec: 4128 + hash: "75a0e73d34f90ca26b4c7e94a7a6ecd2" + } + Key { + type: 6 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 4144 + hash: "296a65279cec34eb93083f3938bf9b16" + } + Frame { + msec: 4160 + hash: "296a65279cec34eb93083f3938bf9b16" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4176 + hash: "296a65279cec34eb93083f3938bf9b16" + } + Frame { + msec: 4192 + hash: "296a65279cec34eb93083f3938bf9b16" + } + Frame { + msec: 4208 + hash: "296a65279cec34eb93083f3938bf9b16" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 4224 + hash: "902a4133742f9a99195a059f7f6b91df" + } + Frame { + msec: 4240 + hash: "902a4133742f9a99195a059f7f6b91df" + } + Key { + type: 7 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 4256 + hash: "902a4133742f9a99195a059f7f6b91df" + } + Frame { + msec: 4272 + hash: "902a4133742f9a99195a059f7f6b91df" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 4288 + hash: "902a4133742f9a99195a059f7f6b91df" + } + Frame { + msec: 4304 + hash: "902a4133742f9a99195a059f7f6b91df" + } + Frame { + msec: 4320 + hash: "902a4133742f9a99195a059f7f6b91df" + } + Frame { + msec: 4336 + hash: "902a4133742f9a99195a059f7f6b91df" + } + Frame { + msec: 4352 + hash: "902a4133742f9a99195a059f7f6b91df" + } + Frame { + msec: 4368 + hash: "902a4133742f9a99195a059f7f6b91df" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4384 + hash: "7e92966a300a81511c5fcb9e447b9029" + } + Frame { + msec: 4400 + hash: "7e92966a300a81511c5fcb9e447b9029" + } + Frame { + msec: 4416 + hash: "7e92966a300a81511c5fcb9e447b9029" + } + Frame { + msec: 4432 + hash: "7e92966a300a81511c5fcb9e447b9029" + } + Frame { + msec: 4448 + hash: "7e92966a300a81511c5fcb9e447b9029" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4464 + hash: "7e92966a300a81511c5fcb9e447b9029" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4480 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4496 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4512 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4528 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4544 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4560 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4576 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4592 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 4608 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4624 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4640 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4656 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4672 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4688 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4704 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4720 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4736 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4752 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4768 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4784 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4800 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Frame { + msec: 4816 + image: "usingMultilineEdit.5.png" + } + Frame { + msec: 4832 + hash: "d22869235a5e4689db64d97f0b5af6c0" + } + Key { + type: 6 + key: 63 + modifiers: 33554432 + text: "3f" + autorep: false + count: 1 + } + Frame { + msec: 4848 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 4864 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 4880 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 4896 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 4912 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 4928 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 4944 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Key { + type: 7 + key: 63 + modifiers: 33554432 + text: "3f" + autorep: false + count: 1 + } + Frame { + msec: 4960 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 4976 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 4992 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5008 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 5024 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5040 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5056 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5072 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5088 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5104 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5120 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5136 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5152 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5168 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5184 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5200 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5216 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5232 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5248 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5264 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5280 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5296 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5312 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5328 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5344 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5360 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5376 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5392 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5408 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5424 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5440 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5456 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5472 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5488 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5504 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5520 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5536 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5552 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5568 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5584 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5600 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5616 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5632 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5648 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5664 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5680 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5696 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5712 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5728 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5744 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Frame { + msec: 5760 + hash: "8153431eabfb3a6916aa37319d9fd379" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 48; y: 19 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5776 + image: "usingMultilineEdit.6.png" + } + Frame { + msec: 5792 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 5808 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 5824 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: 21 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: 22 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5840 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: 23 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: 26 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5856 + hash: "4b0c9ae119bd6c9f6331cbefc53afa3d" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 53; y: 31 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 33 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5872 + hash: "4b0c9ae119bd6c9f6331cbefc53afa3d" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 36 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 56; y: 41 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5888 + hash: "e6b3b80f052fec9f67b02a7f36676b5d" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 56; y: 44 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5904 + hash: "37d1ee8e1c914d499dd7920576dadcae" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 58; y: 52 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 58 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5920 + hash: "37d1ee8e1c914d499dd7920576dadcae" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 64 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 69 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5936 + hash: "34f7bd61afb22009181d79841bc59fa1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 62; y: 75 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 80 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5952 + hash: "23ea9471d132daab6193b0809c8bd98e" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 86 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 90 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5968 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 97 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5984 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 101 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 105 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6000 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 108 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 111 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6016 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 114 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 116 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6032 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 119 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 122 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6048 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 124 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 128 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6064 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 130 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 132 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6080 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 134 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 137 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6096 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 138 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 140 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6112 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 141 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 144 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6128 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 145 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 148 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6144 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 149 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 151 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6160 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 153 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 154 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6176 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 155 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6192 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Frame { + msec: 6208 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Frame { + msec: 6224 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Frame { + msec: 6240 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Frame { + msec: 6256 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 154 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6272 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 152 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 149 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6288 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 145 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 139 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6304 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 126 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 117 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6320 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 108 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 63; y: 98 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6336 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 88 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 80 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6352 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 72 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 64 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6368 + hash: "e35d1c5a15474388727942b41fdcec0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 58 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 51 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6384 + hash: "1b24d0c17446cfadc351127f842ac5fd" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 37 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6400 + hash: "1b24d0c17446cfadc351127f842ac5fd" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 30 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 23 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6416 + hash: "f0b06fefc9e18b836ffe081215efe584" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 16 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 6 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6432 + hash: "9ed30cb00df82cce04e8c8b76d056013" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -2 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -9 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6448 + hash: "4d37a34962e019f47201da6baddebca8" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 48; y: -23 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6464 + hash: "cd83055403901b1a7a99dfda3798ca7e" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -31 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -38 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6480 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -45 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6496 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6512 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6528 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6544 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6560 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6576 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6592 + hash: "71cdc5a9144234556630430361779ff7" + } + Frame { + msec: 6608 + hash: "71cdc5a9144234556630430361779ff7" + } + Frame { + msec: 6624 + hash: "71cdc5a9144234556630430361779ff7" + } + Frame { + msec: 6640 + hash: "71cdc5a9144234556630430361779ff7" + } + Frame { + msec: 6656 + hash: "71cdc5a9144234556630430361779ff7" + } + Frame { + msec: 6672 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -47 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -46 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6688 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -45 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 44; y: -42 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6704 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 44; y: -39 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -36 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6720 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -33 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 46; y: -28 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6736 + image: "usingMultilineEdit.7.png" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -25 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -21 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6752 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 48; y: -18 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: -14 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6768 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: -10 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -8 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6784 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -6 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: -3 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6800 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: -1 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 0 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6816 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 2 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 3 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6832 + hash: "71cdc5a9144234556630430361779ff7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 53; y: 5 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 7 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6848 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 8 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 10 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6864 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 11 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 12 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6880 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 55; y: 12 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6896 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 6912 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 6928 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 6944 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 6960 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 6976 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 6992 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 7008 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 7024 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 7040 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 7056 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 7072 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Frame { + msec: 7088 + hash: "0fba30df8b6cac2f911fbd2b7c48fca6" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 59; y: 44 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 7104 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7120 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7136 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7152 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7168 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 59; y: 44 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 7184 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7200 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7216 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7232 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7248 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7264 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7280 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7296 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7312 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7328 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7344 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7360 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7376 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7392 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7408 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7424 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7440 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7456 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7472 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7488 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7504 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7520 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7536 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7552 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Frame { + msec: 7568 + hash: "df53c57d83cf38d96893f379d8a0c1a7" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7584 + hash: "bdc721eb51436b121826d4163cbf596f" + } + Frame { + msec: 7600 + hash: "bdc721eb51436b121826d4163cbf596f" + } + Frame { + msec: 7616 + hash: "bdc721eb51436b121826d4163cbf596f" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7632 + hash: "bdc721eb51436b121826d4163cbf596f" + } + Frame { + msec: 7648 + hash: "bdc721eb51436b121826d4163cbf596f" + } + Frame { + msec: 7664 + hash: "bdc721eb51436b121826d4163cbf596f" + } + Frame { + msec: 7680 + hash: "bdc721eb51436b121826d4163cbf596f" + } + Frame { + msec: 7696 + image: "usingMultilineEdit.8.png" + } + Frame { + msec: 7712 + hash: "bdc721eb51436b121826d4163cbf596f" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7728 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7744 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7760 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7776 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7792 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7808 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7824 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7840 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7856 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7872 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7888 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7904 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7920 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7936 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Frame { + msec: 7952 + hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 7968 + hash: "bc028efd0fc3d999269d047fe4d64e27" + } + Frame { + msec: 7984 + hash: "bc028efd0fc3d999269d047fe4d64e27" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8000 + hash: "b18fe0d9cfed62d53e152e3f294dc8b3" + } + Frame { + msec: 8016 + hash: "b18fe0d9cfed62d53e152e3f294dc8b3" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8032 + hash: "eca1a9d5eed543b913d1d2b19cef3286" + } + Frame { + msec: 8048 + hash: "eca1a9d5eed543b913d1d2b19cef3286" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8064 + hash: "01f1ac2c199086a701a784a3a47fdb71" + } + Frame { + msec: 8080 + hash: "01f1ac2c199086a701a784a3a47fdb71" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Key { + type: 7 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8096 + hash: "01f1ac2c199086a701a784a3a47fdb71" + } + Frame { + msec: 8112 + hash: "01f1ac2c199086a701a784a3a47fdb71" + } + Frame { + msec: 8128 + hash: "01f1ac2c199086a701a784a3a47fdb71" + } + Frame { + msec: 8144 + hash: "01f1ac2c199086a701a784a3a47fdb71" + } + Frame { + msec: 8160 + hash: "01f1ac2c199086a701a784a3a47fdb71" + } + Frame { + msec: 8176 + hash: "01f1ac2c199086a701a784a3a47fdb71" + } + Frame { + msec: 8192 + hash: "01f1ac2c199086a701a784a3a47fdb71" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8208 + hash: "c8254066bc7b4bae0934425226d59a2b" + } + Frame { + msec: 8224 + hash: "c8254066bc7b4bae0934425226d59a2b" + } + Frame { + msec: 8240 + hash: "c8254066bc7b4bae0934425226d59a2b" + } + Frame { + msec: 8256 + hash: "c8254066bc7b4bae0934425226d59a2b" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8272 + hash: "c8254066bc7b4bae0934425226d59a2b" + } + Frame { + msec: 8288 + hash: "c8254066bc7b4bae0934425226d59a2b" + } + Frame { + msec: 8304 + hash: "c8254066bc7b4bae0934425226d59a2b" + } + Frame { + msec: 8320 + hash: "c8254066bc7b4bae0934425226d59a2b" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8336 + hash: "7bd48f4441ba1971bf49cb5b9e174935" + } + Frame { + msec: 8352 + hash: "7bd48f4441ba1971bf49cb5b9e174935" + } + Frame { + msec: 8368 + hash: "7bd48f4441ba1971bf49cb5b9e174935" + } + Frame { + msec: 8384 + hash: "7bd48f4441ba1971bf49cb5b9e174935" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8400 + hash: "7bd48f4441ba1971bf49cb5b9e174935" + } + Frame { + msec: 8416 + hash: "7bd48f4441ba1971bf49cb5b9e174935" + } + Frame { + msec: 8432 + hash: "7bd48f4441ba1971bf49cb5b9e174935" + } + Frame { + msec: 8448 + hash: "7bd48f4441ba1971bf49cb5b9e174935" + } + Frame { + msec: 8464 + hash: "7bd48f4441ba1971bf49cb5b9e174935" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8480 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8496 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8512 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8528 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8544 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8560 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8576 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8592 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8608 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8624 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8640 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8656 + image: "usingMultilineEdit.9.png" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8672 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8688 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8704 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8720 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8736 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8752 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8768 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8784 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8800 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8816 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8832 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8848 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8864 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8880 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8896 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8912 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8928 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8944 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8960 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8976 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 8992 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9008 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9024 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9040 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9056 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9072 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9088 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9104 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9120 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9136 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9152 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9168 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9184 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9200 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 70; y: 73 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9216 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9232 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 74 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9248 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 75 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 76 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9264 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 77 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 78 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9280 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 70; y: 78 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9296 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9312 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9328 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9344 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9360 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9376 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9392 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9408 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9424 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Frame { + msec: 9440 + hash: "edf44121a60ee9d975954863c2ed848c" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 71; y: 94 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9456 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9472 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9488 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9504 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9520 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9536 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 71; y: 94 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9552 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9568 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9584 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9600 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9616 + image: "usingMultilineEdit.10.png" + } + Frame { + msec: 9632 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9648 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9664 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 9680 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9696 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9712 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9728 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9744 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9760 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9776 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9792 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9808 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9824 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9840 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9856 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9872 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9888 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9904 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9920 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9936 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9952 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9968 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 9984 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10000 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10016 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10032 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10048 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10064 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10080 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10096 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Key { + type: 6 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10112 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10128 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10144 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10160 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10176 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10192 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10208 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10224 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Key { + type: 7 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10240 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10256 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10272 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10288 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10304 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10320 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10336 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Frame { + msec: 10352 + hash: "956f4f8cfca76cfee9babea29b0715ea" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10368 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10384 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10400 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10416 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10432 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10448 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10464 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10480 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10496 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10512 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10528 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10544 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10560 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10576 + image: "usingMultilineEdit.11.png" + } + Frame { + msec: 10592 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10608 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10624 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10640 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10656 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10672 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10688 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10704 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10720 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10736 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10752 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10768 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10784 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10800 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10816 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10832 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10848 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10864 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10880 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10896 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10912 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10928 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10944 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10960 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10976 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 10992 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11008 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11024 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11040 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11056 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11072 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11088 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11104 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11120 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11136 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11152 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11168 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11184 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11200 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11216 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11232 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11248 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11264 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11280 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11296 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11312 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11328 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11344 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11360 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11376 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11392 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11408 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11424 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11440 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11456 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11472 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11488 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11504 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11520 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11536 + image: "usingMultilineEdit.12.png" + } + Frame { + msec: 11552 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11568 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11584 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11600 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } + Frame { + msec: 11616 + hash: "b58ab2c31823e7b0be144fba3e77368a" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.0.png Binary files differindex ec65f49..d63f753 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.0.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.1.png Binary files differindex ec65f49..bb7daa3 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.1.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.2.png Binary files differindex ec65f49..bcad242 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.2.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.3.png Binary files differindex ec65f49..7be45e7 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.3.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.4.png Binary files differindex ec65f49..42f7f51 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.4.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.5.png Binary files differindex ec65f49..147632a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.5.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.6.png Binary files differindex ec65f49..d624a71 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.6.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.6.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.7.png Binary files differnew file mode 100644 index 0000000..d624a71 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.7.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml index 1f5b365..72f68e7 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml @@ -6,7 +6,7 @@ VisualTest { } Frame { msec: 16 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + image: "wrap.0.png" } Key { type: 6 @@ -18,7 +18,7 @@ VisualTest { } Frame { msec: 32 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3e34b9a8c5df08caa18f37289c25138f" } Key { type: 7 @@ -30,11 +30,11 @@ VisualTest { } Frame { msec: 48 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3e34b9a8c5df08caa18f37289c25138f" } Frame { msec: 64 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3e34b9a8c5df08caa18f37289c25138f" } Key { type: 7 @@ -46,11 +46,11 @@ VisualTest { } Frame { msec: 80 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3e34b9a8c5df08caa18f37289c25138f" } Frame { msec: 96 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3e34b9a8c5df08caa18f37289c25138f" } Key { type: 6 @@ -62,15 +62,15 @@ VisualTest { } Frame { msec: 112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4242081446f2a3122bbd4f8c03a67e5c" } Frame { msec: 128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4242081446f2a3122bbd4f8c03a67e5c" } Frame { msec: 144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4242081446f2a3122bbd4f8c03a67e5c" } Key { type: 6 @@ -82,15 +82,15 @@ VisualTest { } Frame { msec: 160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "79c4a9defe89f99b3f6b3c25bd81fc7e" } Frame { msec: 176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "79c4a9defe89f99b3f6b3c25bd81fc7e" } Frame { msec: 192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "79c4a9defe89f99b3f6b3c25bd81fc7e" } Key { type: 7 @@ -102,11 +102,11 @@ VisualTest { } Frame { msec: 208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "79c4a9defe89f99b3f6b3c25bd81fc7e" } Frame { msec: 224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "79c4a9defe89f99b3f6b3c25bd81fc7e" } Key { type: 6 @@ -118,7 +118,7 @@ VisualTest { } Frame { msec: 240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0bee22de7793974cadec12dfb5df16aa" } Key { type: 7 @@ -130,19 +130,19 @@ VisualTest { } Frame { msec: 256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0bee22de7793974cadec12dfb5df16aa" } Frame { msec: 272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0bee22de7793974cadec12dfb5df16aa" } Frame { msec: 288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0bee22de7793974cadec12dfb5df16aa" } Frame { msec: 304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0bee22de7793974cadec12dfb5df16aa" } Key { type: 7 @@ -154,11 +154,11 @@ VisualTest { } Frame { msec: 320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0bee22de7793974cadec12dfb5df16aa" } Frame { msec: 336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0bee22de7793974cadec12dfb5df16aa" } Key { type: 6 @@ -170,19 +170,19 @@ VisualTest { } Frame { msec: 352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "07393d1c1bb6da436700881ebcd38195" } Frame { msec: 368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "07393d1c1bb6da436700881ebcd38195" } Frame { msec: 384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "07393d1c1bb6da436700881ebcd38195" } Frame { msec: 400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "07393d1c1bb6da436700881ebcd38195" } Key { type: 7 @@ -194,19 +194,19 @@ VisualTest { } Frame { msec: 416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "07393d1c1bb6da436700881ebcd38195" } Frame { msec: 432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "07393d1c1bb6da436700881ebcd38195" } Frame { msec: 448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "07393d1c1bb6da436700881ebcd38195" } Frame { msec: 464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "07393d1c1bb6da436700881ebcd38195" } Key { type: 6 @@ -218,19 +218,19 @@ VisualTest { } Frame { msec: 480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b12a4550ae068d157d340c008047d6f1" } Frame { msec: 496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b12a4550ae068d157d340c008047d6f1" } Frame { msec: 512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b12a4550ae068d157d340c008047d6f1" } Frame { msec: 528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b12a4550ae068d157d340c008047d6f1" } Key { type: 6 @@ -250,23 +250,23 @@ VisualTest { } Frame { msec: 544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "f291de0963549b92d607f38d2d08c551" } Frame { msec: 560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "f291de0963549b92d607f38d2d08c551" } Frame { msec: 576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "f291de0963549b92d607f38d2d08c551" } Frame { msec: 592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "f291de0963549b92d607f38d2d08c551" } Frame { msec: 608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "f291de0963549b92d607f38d2d08c551" } Key { type: 7 @@ -286,19 +286,19 @@ VisualTest { } Frame { msec: 624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b7eedae59cc521aa8222596cd97bf129" } Frame { msec: 640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b7eedae59cc521aa8222596cd97bf129" } Frame { msec: 656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b7eedae59cc521aa8222596cd97bf129" } Frame { msec: 672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b7eedae59cc521aa8222596cd97bf129" } Key { type: 7 @@ -310,11 +310,11 @@ VisualTest { } Frame { msec: 688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b7eedae59cc521aa8222596cd97bf129" } Frame { msec: 704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b7eedae59cc521aa8222596cd97bf129" } Key { type: 6 @@ -326,23 +326,23 @@ VisualTest { } Frame { msec: 720 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "98ef281d984841075f2fc82cebcba3a9" } Frame { msec: 736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "98ef281d984841075f2fc82cebcba3a9" } Frame { msec: 752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "98ef281d984841075f2fc82cebcba3a9" } Frame { msec: 768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "98ef281d984841075f2fc82cebcba3a9" } Frame { msec: 784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "98ef281d984841075f2fc82cebcba3a9" } Key { type: 7 @@ -354,7 +354,7 @@ VisualTest { } Frame { msec: 800 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "98ef281d984841075f2fc82cebcba3a9" } Key { type: 6 @@ -366,15 +366,15 @@ VisualTest { } Frame { msec: 816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e7b8f24ba55765e2fc1f386d510b402f" } Frame { msec: 832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e7b8f24ba55765e2fc1f386d510b402f" } Frame { msec: 848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e7b8f24ba55765e2fc1f386d510b402f" } Key { type: 7 @@ -386,15 +386,15 @@ VisualTest { } Frame { msec: 864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e7b8f24ba55765e2fc1f386d510b402f" } Frame { msec: 880 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e7b8f24ba55765e2fc1f386d510b402f" } Frame { msec: 896 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e7b8f24ba55765e2fc1f386d510b402f" } Key { type: 6 @@ -406,27 +406,27 @@ VisualTest { } Frame { msec: 912 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "38a3062cb4f23993416f83ff6acbe189" } Frame { msec: 928 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "38a3062cb4f23993416f83ff6acbe189" } Frame { msec: 944 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "38a3062cb4f23993416f83ff6acbe189" } Frame { msec: 960 - image: "wrap.0.png" + hash: "38a3062cb4f23993416f83ff6acbe189" } Frame { msec: 976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + image: "wrap.1.png" } Frame { msec: 992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "38a3062cb4f23993416f83ff6acbe189" } Key { type: 6 @@ -446,23 +446,23 @@ VisualTest { } Frame { msec: 1008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Frame { msec: 1024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Frame { msec: 1040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Frame { msec: 1056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Frame { msec: 1072 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Key { type: 7 @@ -474,31 +474,31 @@ VisualTest { } Frame { msec: 1088 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Frame { msec: 1104 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Frame { msec: 1120 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Frame { msec: 1136 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Frame { msec: 1152 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Frame { msec: 1168 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Frame { msec: 1184 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "daef9995a008f0ca672adc98315a6b9f" } Key { type: 6 @@ -510,23 +510,23 @@ VisualTest { } Frame { msec: 1200 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "da27d35f241ccc7c1ee2832e491fa726" } Frame { msec: 1216 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "da27d35f241ccc7c1ee2832e491fa726" } Frame { msec: 1232 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "da27d35f241ccc7c1ee2832e491fa726" } Frame { msec: 1248 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "da27d35f241ccc7c1ee2832e491fa726" } Frame { msec: 1264 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "da27d35f241ccc7c1ee2832e491fa726" } Key { type: 7 @@ -546,11 +546,11 @@ VisualTest { } Frame { msec: 1280 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "7136f5cfcca4a86b8764667895efa813" } Frame { msec: 1296 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "7136f5cfcca4a86b8764667895efa813" } Key { type: 6 @@ -562,15 +562,15 @@ VisualTest { } Frame { msec: 1312 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b99aec3d97f4442378a18ac88d50b97d" } Frame { msec: 1328 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b99aec3d97f4442378a18ac88d50b97d" } Frame { msec: 1344 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b99aec3d97f4442378a18ac88d50b97d" } Key { type: 7 @@ -582,11 +582,11 @@ VisualTest { } Frame { msec: 1360 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b99aec3d97f4442378a18ac88d50b97d" } Frame { msec: 1376 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b99aec3d97f4442378a18ac88d50b97d" } Key { type: 7 @@ -598,19 +598,19 @@ VisualTest { } Frame { msec: 1392 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b99aec3d97f4442378a18ac88d50b97d" } Frame { msec: 1408 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b99aec3d97f4442378a18ac88d50b97d" } Frame { msec: 1424 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b99aec3d97f4442378a18ac88d50b97d" } Frame { msec: 1440 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b99aec3d97f4442378a18ac88d50b97d" } Key { type: 6 @@ -622,23 +622,23 @@ VisualTest { } Frame { msec: 1456 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c32293903502fd1964cfbc10515b2ef7" } Frame { msec: 1472 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c32293903502fd1964cfbc10515b2ef7" } Frame { msec: 1488 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c32293903502fd1964cfbc10515b2ef7" } Frame { msec: 1504 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c32293903502fd1964cfbc10515b2ef7" } Frame { msec: 1520 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c32293903502fd1964cfbc10515b2ef7" } Key { type: 7 @@ -650,11 +650,11 @@ VisualTest { } Frame { msec: 1536 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c32293903502fd1964cfbc10515b2ef7" } Frame { msec: 1552 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c32293903502fd1964cfbc10515b2ef7" } Key { type: 6 @@ -666,23 +666,23 @@ VisualTest { } Frame { msec: 1568 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "47371eb93a2a8fac7afb53990fac9130" } Frame { msec: 1584 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "47371eb93a2a8fac7afb53990fac9130" } Frame { msec: 1600 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "47371eb93a2a8fac7afb53990fac9130" } Frame { msec: 1616 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "47371eb93a2a8fac7afb53990fac9130" } Frame { msec: 1632 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "47371eb93a2a8fac7afb53990fac9130" } Key { type: 6 @@ -702,23 +702,23 @@ VisualTest { } Frame { msec: 1648 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5c22c2566b437497dd6fd908135ec39e" } Frame { msec: 1664 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5c22c2566b437497dd6fd908135ec39e" } Frame { msec: 1680 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5c22c2566b437497dd6fd908135ec39e" } Frame { msec: 1696 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5c22c2566b437497dd6fd908135ec39e" } Frame { msec: 1712 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5c22c2566b437497dd6fd908135ec39e" } Key { type: 6 @@ -730,15 +730,15 @@ VisualTest { } Frame { msec: 1728 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "29b4e69de4c83ccdee6ef116ab3785ee" } Frame { msec: 1744 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "29b4e69de4c83ccdee6ef116ab3785ee" } Frame { msec: 1760 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "29b4e69de4c83ccdee6ef116ab3785ee" } Key { type: 7 @@ -750,7 +750,7 @@ VisualTest { } Frame { msec: 1776 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "29b4e69de4c83ccdee6ef116ab3785ee" } Key { type: 6 @@ -762,11 +762,11 @@ VisualTest { } Frame { msec: 1792 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5ab8ecb0ca9fed70f1d8add6b7b3972d" } Frame { msec: 1808 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5ab8ecb0ca9fed70f1d8add6b7b3972d" } Key { type: 7 @@ -778,19 +778,19 @@ VisualTest { } Frame { msec: 1824 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5ab8ecb0ca9fed70f1d8add6b7b3972d" } Frame { msec: 1840 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5ab8ecb0ca9fed70f1d8add6b7b3972d" } Frame { msec: 1856 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5ab8ecb0ca9fed70f1d8add6b7b3972d" } Frame { msec: 1872 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5ab8ecb0ca9fed70f1d8add6b7b3972d" } Key { type: 7 @@ -802,23 +802,23 @@ VisualTest { } Frame { msec: 1888 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5ab8ecb0ca9fed70f1d8add6b7b3972d" } Frame { msec: 1904 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5ab8ecb0ca9fed70f1d8add6b7b3972d" } Frame { msec: 1920 - image: "wrap.1.png" + hash: "5ab8ecb0ca9fed70f1d8add6b7b3972d" } Frame { msec: 1936 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + image: "wrap.2.png" } Frame { msec: 1952 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "5ab8ecb0ca9fed70f1d8add6b7b3972d" } Key { type: 6 @@ -830,27 +830,27 @@ VisualTest { } Frame { msec: 1968 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2a43f5ac0c7bdf38e367b0cdb0bccea9" } Frame { msec: 1984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2a43f5ac0c7bdf38e367b0cdb0bccea9" } Frame { msec: 2000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2a43f5ac0c7bdf38e367b0cdb0bccea9" } Frame { msec: 2016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2a43f5ac0c7bdf38e367b0cdb0bccea9" } Frame { msec: 2032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2a43f5ac0c7bdf38e367b0cdb0bccea9" } Frame { msec: 2048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2a43f5ac0c7bdf38e367b0cdb0bccea9" } Key { type: 6 @@ -862,7 +862,7 @@ VisualTest { } Frame { msec: 2064 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0f28c7855c7fde3390d16a2638e23bd0" } Key { type: 7 @@ -874,15 +874,15 @@ VisualTest { } Frame { msec: 2080 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0f28c7855c7fde3390d16a2638e23bd0" } Frame { msec: 2096 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0f28c7855c7fde3390d16a2638e23bd0" } Frame { msec: 2112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0f28c7855c7fde3390d16a2638e23bd0" } Key { type: 7 @@ -894,27 +894,27 @@ VisualTest { } Frame { msec: 2128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0f28c7855c7fde3390d16a2638e23bd0" } Frame { msec: 2144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0f28c7855c7fde3390d16a2638e23bd0" } Frame { msec: 2160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0f28c7855c7fde3390d16a2638e23bd0" } Frame { msec: 2176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0f28c7855c7fde3390d16a2638e23bd0" } Frame { msec: 2192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0f28c7855c7fde3390d16a2638e23bd0" } Frame { msec: 2208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0f28c7855c7fde3390d16a2638e23bd0" } Key { type: 6 @@ -926,23 +926,23 @@ VisualTest { } Frame { msec: 2224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b56e002e5eddde0245f7ad4c75339968" } Frame { msec: 2240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b56e002e5eddde0245f7ad4c75339968" } Frame { msec: 2256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b56e002e5eddde0245f7ad4c75339968" } Frame { msec: 2272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b56e002e5eddde0245f7ad4c75339968" } Frame { msec: 2288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b56e002e5eddde0245f7ad4c75339968" } Key { type: 6 @@ -954,7 +954,7 @@ VisualTest { } Frame { msec: 2304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0bdd50e3c8b382b464c82d791ae6c1e5" } Key { type: 7 @@ -966,15 +966,15 @@ VisualTest { } Frame { msec: 2320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0bdd50e3c8b382b464c82d791ae6c1e5" } Frame { msec: 2336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0bdd50e3c8b382b464c82d791ae6c1e5" } Frame { msec: 2352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0bdd50e3c8b382b464c82d791ae6c1e5" } Key { type: 6 @@ -986,11 +986,11 @@ VisualTest { } Frame { msec: 2368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b61b475b84c6e6a149f6262fc560b741" } Frame { msec: 2384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b61b475b84c6e6a149f6262fc560b741" } Key { type: 7 @@ -1002,15 +1002,15 @@ VisualTest { } Frame { msec: 2400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b61b475b84c6e6a149f6262fc560b741" } Frame { msec: 2416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b61b475b84c6e6a149f6262fc560b741" } Frame { msec: 2432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b61b475b84c6e6a149f6262fc560b741" } Key { type: 7 @@ -1022,15 +1022,15 @@ VisualTest { } Frame { msec: 2448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b61b475b84c6e6a149f6262fc560b741" } Frame { msec: 2464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b61b475b84c6e6a149f6262fc560b741" } Frame { msec: 2480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b61b475b84c6e6a149f6262fc560b741" } Key { type: 6 @@ -1042,19 +1042,19 @@ VisualTest { } Frame { msec: 2496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1acd6152f317a6c8f6aca52ccf62a8c6" } Frame { msec: 2512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1acd6152f317a6c8f6aca52ccf62a8c6" } Frame { msec: 2528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1acd6152f317a6c8f6aca52ccf62a8c6" } Frame { msec: 2544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1acd6152f317a6c8f6aca52ccf62a8c6" } Key { type: 7 @@ -1066,27 +1066,27 @@ VisualTest { } Frame { msec: 2560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1acd6152f317a6c8f6aca52ccf62a8c6" } Frame { msec: 2576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1acd6152f317a6c8f6aca52ccf62a8c6" } Frame { msec: 2592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1acd6152f317a6c8f6aca52ccf62a8c6" } Frame { msec: 2608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1acd6152f317a6c8f6aca52ccf62a8c6" } Frame { msec: 2624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1acd6152f317a6c8f6aca52ccf62a8c6" } Frame { msec: 2640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1acd6152f317a6c8f6aca52ccf62a8c6" } Key { type: 6 @@ -1098,19 +1098,19 @@ VisualTest { } Frame { msec: 2656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "90ab887de5fbf34f4d45e13c4b211490" } Frame { msec: 2672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "90ab887de5fbf34f4d45e13c4b211490" } Frame { msec: 2688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "90ab887de5fbf34f4d45e13c4b211490" } Frame { msec: 2704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "90ab887de5fbf34f4d45e13c4b211490" } Key { type: 7 @@ -1122,15 +1122,15 @@ VisualTest { } Frame { msec: 2720 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "90ab887de5fbf34f4d45e13c4b211490" } Frame { msec: 2736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "90ab887de5fbf34f4d45e13c4b211490" } Frame { msec: 2752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "90ab887de5fbf34f4d45e13c4b211490" } Key { type: 6 @@ -1142,23 +1142,23 @@ VisualTest { } Frame { msec: 2768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "fc91281749bf1a844a19f20d87a17126" } Frame { msec: 2784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "fc91281749bf1a844a19f20d87a17126" } Frame { msec: 2800 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "fc91281749bf1a844a19f20d87a17126" } Frame { msec: 2816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "fc91281749bf1a844a19f20d87a17126" } Frame { msec: 2832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "fc91281749bf1a844a19f20d87a17126" } Key { type: 6 @@ -1178,19 +1178,19 @@ VisualTest { } Frame { msec: 2848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "dcf6e510866fa20e54255c2c980d7b4b" } Frame { msec: 2864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "dcf6e510866fa20e54255c2c980d7b4b" } Frame { msec: 2880 - image: "wrap.2.png" + hash: "dcf6e510866fa20e54255c2c980d7b4b" } Frame { msec: 2896 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + image: "wrap.3.png" } Key { type: 6 @@ -1202,11 +1202,11 @@ VisualTest { } Frame { msec: 2912 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Frame { msec: 2928 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Key { type: 7 @@ -1218,11 +1218,11 @@ VisualTest { } Frame { msec: 2944 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Frame { msec: 2960 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Key { type: 7 @@ -1234,35 +1234,35 @@ VisualTest { } Frame { msec: 2976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Frame { msec: 2992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Frame { msec: 3008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Frame { msec: 3024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Frame { msec: 3040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Frame { msec: 3056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Frame { msec: 3072 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Frame { msec: 3088 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a26b06714f951084f2ee5ee4b4e67e43" } Key { type: 6 @@ -1274,23 +1274,23 @@ VisualTest { } Frame { msec: 3104 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "832c43553cea6d22b7664ef6f145d1c6" } Frame { msec: 3120 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "832c43553cea6d22b7664ef6f145d1c6" } Frame { msec: 3136 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "832c43553cea6d22b7664ef6f145d1c6" } Frame { msec: 3152 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "832c43553cea6d22b7664ef6f145d1c6" } Frame { msec: 3168 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "832c43553cea6d22b7664ef6f145d1c6" } Key { type: 7 @@ -1302,23 +1302,23 @@ VisualTest { } Frame { msec: 3184 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "832c43553cea6d22b7664ef6f145d1c6" } Frame { msec: 3200 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "832c43553cea6d22b7664ef6f145d1c6" } Frame { msec: 3216 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "832c43553cea6d22b7664ef6f145d1c6" } Frame { msec: 3232 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "832c43553cea6d22b7664ef6f145d1c6" } Frame { msec: 3248 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "832c43553cea6d22b7664ef6f145d1c6" } Key { type: 6 @@ -1330,15 +1330,15 @@ VisualTest { } Frame { msec: 3264 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "081c183901aadcc6406f4ad9f41efa7e" } Frame { msec: 3280 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "081c183901aadcc6406f4ad9f41efa7e" } Frame { msec: 3296 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "081c183901aadcc6406f4ad9f41efa7e" } Key { type: 7 @@ -1350,15 +1350,15 @@ VisualTest { } Frame { msec: 3312 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "081c183901aadcc6406f4ad9f41efa7e" } Frame { msec: 3328 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "081c183901aadcc6406f4ad9f41efa7e" } Frame { msec: 3344 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "081c183901aadcc6406f4ad9f41efa7e" } Key { type: 6 @@ -1370,23 +1370,23 @@ VisualTest { } Frame { msec: 3360 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9bd3c76a58f942880f40566cfbaa2e99" } Frame { msec: 3376 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9bd3c76a58f942880f40566cfbaa2e99" } Frame { msec: 3392 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9bd3c76a58f942880f40566cfbaa2e99" } Frame { msec: 3408 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9bd3c76a58f942880f40566cfbaa2e99" } Frame { msec: 3424 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9bd3c76a58f942880f40566cfbaa2e99" } Key { type: 7 @@ -1398,15 +1398,15 @@ VisualTest { } Frame { msec: 3440 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9bd3c76a58f942880f40566cfbaa2e99" } Frame { msec: 3456 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9bd3c76a58f942880f40566cfbaa2e99" } Frame { msec: 3472 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9bd3c76a58f942880f40566cfbaa2e99" } Key { type: 6 @@ -1418,19 +1418,19 @@ VisualTest { } Frame { msec: 3488 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "204a2ee8a33e5452d47d95ad4142d417" } Frame { msec: 3504 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "204a2ee8a33e5452d47d95ad4142d417" } Frame { msec: 3520 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "204a2ee8a33e5452d47d95ad4142d417" } Frame { msec: 3536 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "204a2ee8a33e5452d47d95ad4142d417" } Key { type: 7 @@ -1442,11 +1442,11 @@ VisualTest { } Frame { msec: 3552 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "204a2ee8a33e5452d47d95ad4142d417" } Frame { msec: 3568 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "204a2ee8a33e5452d47d95ad4142d417" } Key { type: 6 @@ -1458,27 +1458,27 @@ VisualTest { } Frame { msec: 3584 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4729d1f555fe604d4660f02673f9c5f3" } Frame { msec: 3600 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4729d1f555fe604d4660f02673f9c5f3" } Frame { msec: 3616 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4729d1f555fe604d4660f02673f9c5f3" } Frame { msec: 3632 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4729d1f555fe604d4660f02673f9c5f3" } Frame { msec: 3648 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4729d1f555fe604d4660f02673f9c5f3" } Frame { msec: 3664 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4729d1f555fe604d4660f02673f9c5f3" } Key { type: 6 @@ -1490,7 +1490,7 @@ VisualTest { } Frame { msec: 3680 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Key { type: 7 @@ -1502,23 +1502,23 @@ VisualTest { } Frame { msec: 3696 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Frame { msec: 3712 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Frame { msec: 3728 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Frame { msec: 3744 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Frame { msec: 3760 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Key { type: 7 @@ -1530,39 +1530,39 @@ VisualTest { } Frame { msec: 3776 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Frame { msec: 3792 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Frame { msec: 3808 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Frame { msec: 3824 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Frame { msec: 3840 - image: "wrap.3.png" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Frame { msec: 3856 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + image: "wrap.4.png" } Frame { msec: 3872 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Frame { msec: 3888 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Frame { msec: 3904 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2c0e0951ce4839b302a6e2735adc6c09" } Key { type: 6 @@ -1574,23 +1574,23 @@ VisualTest { } Frame { msec: 3920 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "28c2ffe2ad35010dc077625cde7d21b6" } Frame { msec: 3936 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "28c2ffe2ad35010dc077625cde7d21b6" } Frame { msec: 3952 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "28c2ffe2ad35010dc077625cde7d21b6" } Frame { msec: 3968 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "28c2ffe2ad35010dc077625cde7d21b6" } Frame { msec: 3984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "28c2ffe2ad35010dc077625cde7d21b6" } Key { type: 7 @@ -1602,11 +1602,11 @@ VisualTest { } Frame { msec: 4000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "28c2ffe2ad35010dc077625cde7d21b6" } Frame { msec: 4016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "28c2ffe2ad35010dc077625cde7d21b6" } Key { type: 6 @@ -1618,15 +1618,15 @@ VisualTest { } Frame { msec: 4032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6f206482adcd45a2b0d8d3c8b85f53c6" } Frame { msec: 4048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6f206482adcd45a2b0d8d3c8b85f53c6" } Frame { msec: 4064 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6f206482adcd45a2b0d8d3c8b85f53c6" } Key { type: 7 @@ -1638,7 +1638,7 @@ VisualTest { } Frame { msec: 4080 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6f206482adcd45a2b0d8d3c8b85f53c6" } Key { type: 6 @@ -1650,19 +1650,19 @@ VisualTest { } Frame { msec: 4096 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4685a786f36cb821a69b0ac059145a5f" } Frame { msec: 4112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4685a786f36cb821a69b0ac059145a5f" } Frame { msec: 4128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4685a786f36cb821a69b0ac059145a5f" } Frame { msec: 4144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4685a786f36cb821a69b0ac059145a5f" } Key { type: 7 @@ -1674,15 +1674,15 @@ VisualTest { } Frame { msec: 4160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4685a786f36cb821a69b0ac059145a5f" } Frame { msec: 4176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4685a786f36cb821a69b0ac059145a5f" } Frame { msec: 4192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4685a786f36cb821a69b0ac059145a5f" } Key { type: 6 @@ -1694,23 +1694,23 @@ VisualTest { } Frame { msec: 4208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d0efb89ee3e2d2b18429b57dcfe13f33" } Frame { msec: 4224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d0efb89ee3e2d2b18429b57dcfe13f33" } Frame { msec: 4240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d0efb89ee3e2d2b18429b57dcfe13f33" } Frame { msec: 4256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d0efb89ee3e2d2b18429b57dcfe13f33" } Frame { msec: 4272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d0efb89ee3e2d2b18429b57dcfe13f33" } Key { type: 6 @@ -1722,7 +1722,7 @@ VisualTest { } Frame { msec: 4288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cbe0bb714b2e9b63af978f666292d8f0" } Key { type: 7 @@ -1734,15 +1734,15 @@ VisualTest { } Frame { msec: 4304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cbe0bb714b2e9b63af978f666292d8f0" } Frame { msec: 4320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cbe0bb714b2e9b63af978f666292d8f0" } Frame { msec: 4336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cbe0bb714b2e9b63af978f666292d8f0" } Key { type: 7 @@ -1754,23 +1754,23 @@ VisualTest { } Frame { msec: 4352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cbe0bb714b2e9b63af978f666292d8f0" } Frame { msec: 4368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cbe0bb714b2e9b63af978f666292d8f0" } Frame { msec: 4384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cbe0bb714b2e9b63af978f666292d8f0" } Frame { msec: 4400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cbe0bb714b2e9b63af978f666292d8f0" } Frame { msec: 4416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cbe0bb714b2e9b63af978f666292d8f0" } Key { type: 6 @@ -1782,15 +1782,15 @@ VisualTest { } Frame { msec: 4432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d15a45a86874daaff5f2e6afae43b2f4" } Frame { msec: 4448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d15a45a86874daaff5f2e6afae43b2f4" } Frame { msec: 4464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d15a45a86874daaff5f2e6afae43b2f4" } Key { type: 7 @@ -1802,23 +1802,23 @@ VisualTest { } Frame { msec: 4480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d15a45a86874daaff5f2e6afae43b2f4" } Frame { msec: 4496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d15a45a86874daaff5f2e6afae43b2f4" } Frame { msec: 4512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d15a45a86874daaff5f2e6afae43b2f4" } Frame { msec: 4528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d15a45a86874daaff5f2e6afae43b2f4" } Frame { msec: 4544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d15a45a86874daaff5f2e6afae43b2f4" } Key { type: 6 @@ -1830,19 +1830,19 @@ VisualTest { } Frame { msec: 4560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b0c3ef9c5331af8768b23537d1d38311" } Frame { msec: 4576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b0c3ef9c5331af8768b23537d1d38311" } Frame { msec: 4592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b0c3ef9c5331af8768b23537d1d38311" } Frame { msec: 4608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b0c3ef9c5331af8768b23537d1d38311" } Key { type: 7 @@ -1854,19 +1854,19 @@ VisualTest { } Frame { msec: 4624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b0c3ef9c5331af8768b23537d1d38311" } Frame { msec: 4640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b0c3ef9c5331af8768b23537d1d38311" } Frame { msec: 4656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b0c3ef9c5331af8768b23537d1d38311" } Frame { msec: 4672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "b0c3ef9c5331af8768b23537d1d38311" } Key { type: 6 @@ -1878,19 +1878,19 @@ VisualTest { } Frame { msec: 4688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3be1d2faec1ab5d3d1ab72c25db95059" } Frame { msec: 4704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3be1d2faec1ab5d3d1ab72c25db95059" } Frame { msec: 4720 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3be1d2faec1ab5d3d1ab72c25db95059" } Frame { msec: 4736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3be1d2faec1ab5d3d1ab72c25db95059" } Key { type: 7 @@ -1902,15 +1902,15 @@ VisualTest { } Frame { msec: 4752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3be1d2faec1ab5d3d1ab72c25db95059" } Frame { msec: 4768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3be1d2faec1ab5d3d1ab72c25db95059" } Frame { msec: 4784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3be1d2faec1ab5d3d1ab72c25db95059" } Key { type: 6 @@ -1922,11 +1922,11 @@ VisualTest { } Frame { msec: 4800 - image: "wrap.4.png" + hash: "db999862fcf827930098b3f129ff567f" } Frame { msec: 4816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + image: "wrap.5.png" } Key { type: 7 @@ -1938,19 +1938,19 @@ VisualTest { } Frame { msec: 4832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "db999862fcf827930098b3f129ff567f" } Frame { msec: 4848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "db999862fcf827930098b3f129ff567f" } Frame { msec: 4864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "db999862fcf827930098b3f129ff567f" } Frame { msec: 4880 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "db999862fcf827930098b3f129ff567f" } Key { type: 6 @@ -1962,19 +1962,19 @@ VisualTest { } Frame { msec: 4896 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 4912 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 4928 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 4944 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Key { type: 7 @@ -1986,482 +1986,482 @@ VisualTest { } Frame { msec: 4960 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 4976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 4992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5072 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5088 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5104 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5120 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5136 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5152 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5168 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5184 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5200 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5216 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5232 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5248 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5264 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5280 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5296 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5312 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5328 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5344 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5360 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5376 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5392 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5408 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5424 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5440 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5456 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5472 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5488 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5504 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5520 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5536 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5552 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5568 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5584 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5600 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5616 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5632 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5648 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5664 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5680 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5696 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5712 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5728 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5744 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5760 - image: "wrap.5.png" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5776 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + image: "wrap.6.png" } Frame { msec: 5792 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5808 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5824 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5840 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5856 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5872 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5888 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5904 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5920 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5936 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5952 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5968 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 5984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6064 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6080 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6096 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6720 - image: "wrap.6.png" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + image: "wrap.7.png" } Frame { msec: 6752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6800 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } Frame { msec: 6864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6557c4982e2c23d0ef5ec8a594df7277" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.0.png Binary files differindex 555996a..b24344c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.0.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.1.png Binary files differindex b705bad..5e29359 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.1.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.2.png Binary files differindex 094cd2a..0ffee64 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.2.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.3.png Binary files differindex 9c519c7..6c56e9c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.3.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.4.png Binary files differindex 3ec77b5..276170d 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.4.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.5.png Binary files differindex 579a66e..3d8709f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.5.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.6.png Binary files differindex 9e5ac90..80b960c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.6.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.6.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.7.png Binary files differindex 9f3acfc..7247277 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.7.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.7.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.8.png Binary files differindex f27518a..af5a996 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.8.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.8.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.9.png Binary files differnew file mode 100644 index 0000000..b254164 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.9.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml index ef9ba33..3819043 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml @@ -6,239 +6,287 @@ VisualTest { } Frame { msec: 16 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "6e8324bf913d9df21a59ab4337257c15" } Frame { msec: 32 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "4e068995d68e8939e6560e35b685e839" } Frame { msec: 48 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "761b09bce25b3b240093d16ad02268d7" } Frame { msec: 64 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "1ecb6d7d08d4e4e14db28e24a60eccc4" } Frame { msec: 80 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "642417a56b3d6b8b35f5aec1bf0a9d2c" } Frame { msec: 96 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "2e24870a44d3fc6c6d5c920bab29d417" } Frame { msec: 112 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "9a59d0672f2a752943561af89fd71d7f" } Frame { msec: 128 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "c359dd36910678a30f935a13c8680ee4" } Frame { msec: 144 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "245f1e127549e9b28c7574ffb143fcde" } Frame { msec: 160 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "8df3d3dbce673311d88c055e8dffaeb5" } Frame { msec: 176 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "590fdeaddb3df033a1908a8a95fcd17a" } Frame { msec: 192 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "a158891c8d2ee3899463412a3363e48c" } Frame { msec: 208 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "e9ec2c82f46b36fbd0285ce6795c7cf9" } Frame { msec: 224 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "0a02598af770dfe1d332f10c9482e770" } Frame { msec: 240 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "8765475468bccbd0df897a533241f3c5" } Frame { msec: 256 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "4cd9deed66bfdfadde8f8bf34f0e5513" } Frame { msec: 272 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "139bf5a1811beb2438df4ecfa3bbaac7" } Frame { msec: 288 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "9d51555afd71a7035e67a543846dcf7f" } Frame { msec: 304 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "de187b58fc8dfaad2d62e9463691b0c0" } Frame { msec: 320 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "9f88ac6d71246b06ca7ce9d8d983c91b" } Frame { msec: 336 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "a43c12a7d6597d171112dc43085a439e" + } + Key { + type: 6 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 352 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "ad38f32755f669837ec2243e355ebc85" } Frame { msec: 368 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "d87bd14345c785cc7e78a5c5462b90ec" } Frame { msec: 384 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "77850031e012246dd967ac689e353eb3" } Frame { msec: 400 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "f1bd048cd9167a8f162d1c39aca4f7c1" } Frame { msec: 416 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "0fa030c5da23f23a0665a535e23b84a2" } Frame { msec: 432 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "af3a5f1982459164dfec26746172b0eb" + } + Key { + type: 6 + key: 16777248 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 448 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "0de90659472b63dd41a5602197ff502e" } Frame { msec: 464 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "81e40abf91017614a52e03bb2474549f" } Frame { msec: 480 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 496 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "7bae45481596788afde8866a3c97edd7" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 512 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "0416581d32ab84680dfc26b6f546d2c5" } Frame { msec: 528 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "0416581d32ab84680dfc26b6f546d2c5" } Frame { msec: 544 - hash: "2aec32493055ad17f4aac9b3c9b84c5f" + hash: "0416581d32ab84680dfc26b6f546d2c5" } Frame { msec: 560 - hash: "e0826ff09b628a5e3ddf6d9e5593f937" + hash: "0416581d32ab84680dfc26b6f546d2c5" } Frame { msec: 576 - hash: "eacfa8db605b9e386a55508e8943e7d1" + hash: "ac98b973e6d12193829139661d3e5847" } Frame { msec: 592 - hash: "2dbe9b5bbb5baf12cd2cbfb4190be316" + hash: "366907376adae4d88d42d1b9e7533ec0" } Frame { msec: 608 - hash: "60a60e06237318bf005f87bbba386fef" + hash: "5f486d0a21c74f2ba50afcafa8c15453" } Frame { msec: 624 - hash: "97549f388c02adb8884c2e79510adc7e" + hash: "a3bf6dde525e528745272a8e43fc895c" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 640 - hash: "d882fe91d9df9862d620cf984e27d0bd" + hash: "4ffb297d2a98a3d13b848af569b1b5b5" } Frame { msec: 656 - hash: "6310b65572e39256122c7620f7e87442" + hash: "3679a17658e417bf08fc86d4bef0d4e9" } Frame { msec: 672 - hash: "4e7374a683050ff440056b6e7c971d2b" + hash: "5c6a25284ffd13350425e792fd143421" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 688 - hash: "35c0d55cda3a02eb4c441a5832bcbbf4" + hash: "09a2c1032d0206e20340ae4267525f98" } Frame { msec: 704 - hash: "8d71c418593eb3e4834d5e608ffd3f29" + hash: "0036070d9a7ee854b3612858af46ab59" } Frame { msec: 720 - hash: "0da2c1cd0138172698a3bee5d19168c5" + hash: "8774509eaa5fc29385da89214ef77589" } Frame { msec: 736 - hash: "8ca757a4fd1987329488f63251b0f6b4" + hash: "6d4f8ebf046148e5079f498396c119b4" } Frame { msec: 752 - hash: "70c827f1b34b44cbd775b666913556d6" + hash: "4c7d5d2f77116c96357b0791348af058" } Frame { msec: 768 - hash: "2b91dcef1b3ca66059dd9db4c8e335f3" + hash: "398c927a3525d5b90a5dd7a05ba9467b" } Frame { msec: 784 - hash: "38abc77b2361ce257d39c0cf268ba42b" + hash: "d84b45f6acb8cbd399d4ed6bf80ce132" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 800 - hash: "59865194eb63465dd0f3925c7a500340" + hash: "40c597d9e04e8e0daf62f58b9e7973b3" } Frame { msec: 816 - hash: "7bed5747d6b771db0fe5802153e54f2f" + hash: "2c7fdd47e29d924e3e008a6840e0e6be" } Frame { msec: 832 - hash: "9ac1bf268749bc8e58bc4d04b55ef849" + hash: "2b3229bb1aa220499114f274cf643ce9" } Frame { msec: 848 - hash: "64ea5cb46782d250c46a7a2c8cceea20" + hash: "e55446874c1a343ce3607d679d69d1d4" } Frame { msec: 864 - hash: "d81037eb21bfcb434b6c7f3bbd21ad12" + hash: "6824708eb176a9cf92f241d4054800dd" } Frame { msec: 880 - hash: "1079ea3a1a62e2cca9a8e907bc5aa4e1" + hash: "d386230dd416740625eb4f677ef4531b" } Frame { msec: 896 - hash: "96422f9bfbc11775cd7d1fae2ba357bd" + hash: "9b2fbddab890dbe43e84e85bf320e6c1" } Frame { msec: 912 - hash: "0d247385059a6f68b37bc34f6b2214b1" + hash: "1d1065aca7eb47f0096bc2c8c4320880" } Frame { msec: 928 - hash: "7c513361e13a90eef229b42e68ffaa18" + hash: "d97ba6e2bfc021fe993afdb5b28316ba" } Frame { msec: 944 - hash: "510b8441c613f0637dfc46e03c278112" + hash: "3a3a2f340bf1ccb14eab0562d7ecfe87" } Frame { msec: 960 @@ -246,271 +294,287 @@ VisualTest { } Frame { msec: 976 - hash: "8d90112e2e1c6f226a1a5f4f75785939" + hash: "ea4f4c1de5bfb1be43ab0188afb7189c" } Frame { msec: 992 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "399ca2d4411d3fb226c94bd32a17d0cd" } Frame { msec: 1008 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "ca78503396613536c8e4076884354cb1" } Frame { msec: 1024 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "ca78503396613536c8e4076884354cb1" + } + Key { + type: 7 + key: 16777249 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 1040 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "399ca2d4411d3fb226c94bd32a17d0cd" } Frame { msec: 1056 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "ea4f4c1de5bfb1be43ab0188afb7189c" } Frame { msec: 1072 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "d23d7492b85e4f30994ecd64e8273ff6" } Frame { msec: 1088 - hash: "8d90112e2e1c6f226a1a5f4f75785939" + hash: "3a3a2f340bf1ccb14eab0562d7ecfe87" } Frame { msec: 1104 - hash: "85e6af1f5fd15338a15f984e24d5ec9d" + hash: "d97ba6e2bfc021fe993afdb5b28316ba" } Frame { msec: 1120 - hash: "510b8441c613f0637dfc46e03c278112" + hash: "1d1065aca7eb47f0096bc2c8c4320880" } Frame { msec: 1136 - hash: "7c513361e13a90eef229b42e68ffaa18" + hash: "9b2fbddab890dbe43e84e85bf320e6c1" } Frame { msec: 1152 - hash: "0d247385059a6f68b37bc34f6b2214b1" + hash: "d386230dd416740625eb4f677ef4531b" } Frame { msec: 1168 - hash: "96422f9bfbc11775cd7d1fae2ba357bd" + hash: "6824708eb176a9cf92f241d4054800dd" + } + Key { + type: 6 + key: 16777234 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 1184 - hash: "1079ea3a1a62e2cca9a8e907bc5aa4e1" + hash: "e8e14dbba33578a36d9c69214333c537" } Frame { msec: 1200 - hash: "d81037eb21bfcb434b6c7f3bbd21ad12" + hash: "95c6e967f6f445748945c51943cf532f" } Frame { msec: 1216 - hash: "64ea5cb46782d250c46a7a2c8cceea20" + hash: "d145d4cbd0e3a98686b3bac1c5c17093" } Frame { msec: 1232 - hash: "9ac1bf268749bc8e58bc4d04b55ef849" + hash: "09348a4108a585dd23c3a252a5c596f6" } Frame { msec: 1248 - hash: "7bed5747d6b771db0fe5802153e54f2f" + hash: "55126f2c879771e1aa5ced51b54c827a" } Frame { msec: 1264 - hash: "59865194eb63465dd0f3925c7a500340" + hash: "ebb36a4c2fcb85107033ec2731fc5743" } Frame { msec: 1280 - hash: "38abc77b2361ce257d39c0cf268ba42b" + hash: "0581a4432d4b3d0c1555a31e772c2575" + } + Key { + type: 7 + key: 16777234 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 1296 - hash: "2b91dcef1b3ca66059dd9db4c8e335f3" + hash: "b4030774f06935f1b43fc8f1a69e53a5" } Frame { msec: 1312 - hash: "70c827f1b34b44cbd775b666913556d6" + hash: "655e1739c130888ff83a3b69bb0ab7e3" } Frame { msec: 1328 - hash: "8ca757a4fd1987329488f63251b0f6b4" + hash: "99fc97c572e7c8949693b32910e6eefb" } Frame { msec: 1344 - hash: "0da2c1cd0138172698a3bee5d19168c5" + hash: "e9c8bb13c2549047c05d671daa378496" } Frame { msec: 1360 - hash: "8d71c418593eb3e4834d5e608ffd3f29" + hash: "cb344e0d39b5b07ca7d094bf30ce9f53" } Frame { msec: 1376 - hash: "35c0d55cda3a02eb4c441a5832bcbbf4" - } - Key { - type: 6 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "15ba6e62c693f2bf74bdf86668139985" } Frame { msec: 1392 - hash: "4e7374a683050ff440056b6e7c971d2b" + hash: "48133ec73eb9723059eb6e6af3139f2b" } Frame { msec: 1408 - hash: "6310b65572e39256122c7620f7e87442" + hash: "0b19e777a04f03774f2d5f5398bdb10f" } Frame { msec: 1424 - hash: "d882fe91d9df9862d620cf984e27d0bd" + hash: "fc41d9a9aedf9274a68b33603ed6ccd0" } Frame { msec: 1440 - hash: "97549f388c02adb8884c2e79510adc7e" + hash: "fa6e65f0c835b12dc10463711bd73350" } Frame { msec: 1456 - hash: "60a60e06237318bf005f87bbba386fef" - } - Key { - type: 7 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "25a02c3388e52df550a0332efde90fcd" } Frame { msec: 1472 - hash: "2dbe9b5bbb5baf12cd2cbfb4190be316" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1488 - hash: "eacfa8db605b9e386a55508e8943e7d1" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1504 - hash: "e0826ff09b628a5e3ddf6d9e5593f937" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1520 - hash: "2aec32493055ad17f4aac9b3c9b84c5f" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1536 - hash: "c0e72cdf776b0c62742aa9c3683cd523" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1552 - hash: "ea3f512181b3ee94d8cdd4d9f59ed962" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1568 - hash: "de924155855e76d0591217448f79bdb6" + hash: "284cd356d551a048d4a000b90217ac72" } Frame { msec: 1584 - hash: "51da770a75102de9ad1920f1f6c44146" + hash: "94fb20c3767e09d1b4254ee6122cf24e" } Frame { msec: 1600 - hash: "e3c0e8f6385ef2ab9b671be3243774c4" + hash: "bfac920384425ce9f34505b44eceb523" } Frame { msec: 1616 - hash: "eac6de65ea6726f0cc50b6d30c1b7ba5" + hash: "4a2d434efcb9a57f2013dc6b366e0e4e" } Frame { msec: 1632 - hash: "2ee111386bd646c4ee577405e490a2f7" + hash: "d0fbe98dc34c4bb0d1ceb7e4678cc1d5" + } + Frame { + msec: 1648 + hash: "28ab147983a71e93e5610f53e14bd113" } Key { type: 6 - key: 16777233 - modifiers: 0 + key: 16777249 + modifiers: 100663296 text: "" autorep: false count: 1 } Frame { - msec: 1648 - hash: "24c376d5a2b3555126b156c8bc7a7a0c" - } - Frame { msec: 1664 - hash: "d9c35de8b02f11db321d9bdcdcd65403" + hash: "2e6ee60fe9ff07fa4558134e6b1d6da8" } Frame { msec: 1680 - hash: "0b32a66497ec3cdd05dc27c0ef9c5718" + hash: "f181e578e865981d7a2073080b381ec1" } Frame { msec: 1696 - hash: "9626f80ef170af2db135792337203265" + hash: "d7c0558ea16829b52ea6d09814c301b9" } Frame { msec: 1712 - hash: "6e4ce7599da579f764ff10e982888889" + hash: "c9304cb66c04566cf4374b46ab85e6e7" } Frame { msec: 1728 - hash: "5ad4dd681be780c0068734ca5c722507" - } - Key { - type: 7 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "024dde64822afc9eea63974851fe57e1" } Frame { msec: 1744 - hash: "7d620ef53049f9195cc832d6f9dfd52b" + hash: "8e4520e95a8acc8f1d4b710c4a14898f" } Frame { msec: 1760 - hash: "0f54144c574af01958505eedd69162f6" + hash: "6b271c3f1d9d49bbd80a8ee33f3fc09c" } Frame { msec: 1776 - hash: "50f168354e3901283708a4ae9088783d" + hash: "eb76a46632856bf07b005cad2ba2f6ab" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1792 - hash: "c55fdf2fd0a4eeb9ca0e3072aa3e60c4" + hash: "a29bd83f6b4e877f3c7b89c82dfcab54" } Frame { msec: 1808 - hash: "d351de13e7bb5b273ec3aebb88dffbd5" + hash: "dca39b6b6fff5e4a6309e4c0e42811c0" } Frame { msec: 1824 - hash: "977d44194d1ef05801167157714891af" + hash: "88ad3f9f638a97bed98f00ec7d78dfe4" } Frame { msec: 1840 - hash: "ef3694ca78764709abbe2f8781578fb4" + hash: "5697a705f36283213bbe4b5848baa764" } Frame { msec: 1856 - hash: "77afbc0e0b828d03148ed7fe342dfbda" + hash: "8850842afae3060a91d612f7b869fd48" } Frame { msec: 1872 - hash: "0d94e37430d8b835e65750a6af525ef7" + hash: "4f08dbd1cab0bfcc8b9f232d46cf42db" } Frame { msec: 1888 - hash: "e009a8d2cb7c7f1200055666cf2efd9c" + hash: "f7df5b96d0983a918e3c81aa7bee3950" } Frame { msec: 1904 - hash: "096a2742962d7b22dba768577373e656" + hash: "b28681bcb414d428588acda377fef838" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1920 @@ -518,271 +582,271 @@ VisualTest { } Frame { msec: 1936 - hash: "905b6c7ab24fd1a12f17494fc1935e98" + hash: "5c154b54776ed555563d3e5196a8aedd" } Frame { msec: 1952 - hash: "9bc98b4a32ea933fcc3a40eaae9b3516" + hash: "ee64c0452b325880de3a4fea599c18cc" } Frame { msec: 1968 - hash: "70f0313540b3517f3b6d403c3ab1199c" + hash: "0776e1557b2d32db1c7c43331c532331" } Frame { msec: 1984 - hash: "309ae1af1ef7dbaf0b892ad60fd3eb93" + hash: "24b68da9a63bbf00ffffeca649f771fa" } Frame { msec: 2000 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "00d49d91b51f5bd428c07e9be65f551a" } Frame { msec: 2016 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "874d4b599cb92cd9160960e3b3af74e0" } Frame { msec: 2032 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "00d49d91b51f5bd428c07e9be65f551a" } Frame { msec: 2048 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "24b68da9a63bbf00ffffeca649f771fa" } Frame { msec: 2064 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "0776e1557b2d32db1c7c43331c532331" } Frame { msec: 2080 - hash: "309ae1af1ef7dbaf0b892ad60fd3eb93" + hash: "ee64c0452b325880de3a4fea599c18cc" } Frame { msec: 2096 - hash: "70f0313540b3517f3b6d403c3ab1199c" + hash: "5c154b54776ed555563d3e5196a8aedd" } Frame { msec: 2112 - hash: "9bc98b4a32ea933fcc3a40eaae9b3516" - } - Key { - type: 6 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + hash: "a5f90da82b51bc866648304a20a1dcd3" } Frame { msec: 2128 - hash: "905b6c7ab24fd1a12f17494fc1935e98" + hash: "b28681bcb414d428588acda377fef838" } Frame { msec: 2144 - hash: "31adf3a3bfbd1083c50cae7ed5d64334" + hash: "f7df5b96d0983a918e3c81aa7bee3950" } Frame { msec: 2160 - hash: "096a2742962d7b22dba768577373e656" + hash: "4f08dbd1cab0bfcc8b9f232d46cf42db" } Frame { msec: 2176 - hash: "e009a8d2cb7c7f1200055666cf2efd9c" + hash: "8850842afae3060a91d612f7b869fd48" } Frame { msec: 2192 - hash: "0d94e37430d8b835e65750a6af525ef7" + hash: "5697a705f36283213bbe4b5848baa764" } Frame { msec: 2208 - hash: "77afbc0e0b828d03148ed7fe342dfbda" + hash: "88ad3f9f638a97bed98f00ec7d78dfe4" } Frame { msec: 2224 - hash: "ef3694ca78764709abbe2f8781578fb4" + hash: "dca39b6b6fff5e4a6309e4c0e42811c0" + } + Key { + type: 7 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2240 - hash: "977d44194d1ef05801167157714891af" + hash: "a29bd83f6b4e877f3c7b89c82dfcab54" } Frame { msec: 2256 - hash: "d351de13e7bb5b273ec3aebb88dffbd5" + hash: "7defd2ecefeb86b457a2ee76d97424ee" } Frame { msec: 2272 - hash: "c55fdf2fd0a4eeb9ca0e3072aa3e60c4" + hash: "ccf6d45e8822d72482d9b585909b612b" } Frame { msec: 2288 - hash: "50f168354e3901283708a4ae9088783d" + hash: "996dddf091394513adda1b1f00bf0c68" } Frame { msec: 2304 - hash: "0f54144c574af01958505eedd69162f6" + hash: "3cf94e90eddb4b0815762b89f58f8325" } Frame { msec: 2320 - hash: "7d620ef53049f9195cc832d6f9dfd52b" - } - Key { - type: 6 - key: 16777232 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + hash: "ab9f876450526b37774c6c4a5794c7b1" } Frame { msec: 2336 - hash: "03e906dfb3bf98f521d805331d3b5b9c" + hash: "9109880e9201e92eb17ae87a3648dca7" } Frame { msec: 2352 - hash: "c2376393ea9541b909b6b4fe188fa03e" + hash: "0e759f2f279057c1f4d1147be5b41214" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2368 - hash: "9b3935370412c75acdf6e91100cf2f53" + hash: "d87bd14345c785cc7e78a5c5462b90ec" } Frame { msec: 2384 - hash: "30ab7913bdfc51d2df5ab9f3863d28c7" + hash: "77850031e012246dd967ac689e353eb3" } Frame { msec: 2400 - hash: "593656e93d6e01419002dbb581aa6cbd" + hash: "f1bd048cd9167a8f162d1c39aca4f7c1" } Frame { msec: 2416 - hash: "33800dd560e44ce39d6325bbdee689de" + hash: "0fa030c5da23f23a0665a535e23b84a2" } Frame { msec: 2432 - hash: "c41a9c4f08053d5d18fb2d530ed8b5ad" - } - Key { - type: 7 - key: 16777232 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + hash: "af3a5f1982459164dfec26746172b0eb" } Frame { msec: 2448 - hash: "b3f2d4a2cb9a9d1304a2a2d07ad41ff2" + hash: "0de90659472b63dd41a5602197ff502e" } Frame { msec: 2464 - hash: "93cf7fe53bc1fd749c523d40b27d17b4" + hash: "81e40abf91017614a52e03bb2474549f" } Frame { msec: 2480 - hash: "6e9226d01dd93cff763e851148da8dfd" + hash: "7bae45481596788afde8866a3c97edd7" + } + Key { + type: 7 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2496 - hash: "79fdbda495bbc6c9ae8be03e1467de92" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 2512 - hash: "c30fc0fa9351dbcdbe4f2a297cba9a52" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 2528 - hash: "eaf26162fd5ce42262ea08ef39a7123d" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 2544 - hash: "7bf0d6a5753a60eefae6d3c3819fabe4" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 2560 - hash: "a2ee3a3b9cd22d7c0e54524cad32e647" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 2576 - hash: "822298cfc4e2d64db1bf3e442dd891e6" + hash: "e26dbfb26415b21198add56d5de02cb2" } Frame { msec: 2592 - hash: "d075c64000b045eae1b42dce701787b7" + hash: "fa2877a963417789b82170b32e0af7a0" } Frame { msec: 2608 - hash: "5ca7f15af781f896c83c81077f6b072e" + hash: "860b39f92c412a7d946f882d8f99d837" } Frame { msec: 2624 - hash: "7d0f14896e67c56ed5238472dc127cb1" + hash: "d7b8c52aef183965a97d82a18b03ed94" } Frame { msec: 2640 - hash: "dca161e8a9d786ba9d50aa655ccbecd3" + hash: "b1ce9cf0ebd8e1e783e5bd43bbd72072" } Frame { msec: 2656 - hash: "73bfcb0f5104efd056f25f7d73126369" + hash: "d214b419ec5b4cff8f877bdeb1b9ef96" } Frame { msec: 2672 - hash: "0090459043b05bf9504434f36230b32b" + hash: "95e7057104508b3919d722d4befde7b7" } Frame { msec: 2688 - hash: "f64315858f375c6ded480b2017fc18a5" + hash: "270489ec5da5bf9a93fa4e52f47a71f5" } Frame { msec: 2704 - hash: "fe4c0ecfa9779c9fe052d4ffc9386d46" + hash: "46646e396ab0c1c20427dadd71d45ba9" } Frame { msec: 2720 - hash: "849ad15f0ca893881165e956e8a26174" + hash: "65e2fd167565f876310d56fa9203c118" } Frame { msec: 2736 - hash: "c4373fa63ed00832c70a6b94cb729397" + hash: "aff0da79bd9bd8c285139d7737a1316f" } Frame { msec: 2752 - hash: "0c7e08fb7f0dd954b0f171a37ef2a310" + hash: "bf264fe7d774a597a3ff0965d912fa90" } Frame { msec: 2768 - hash: "505071572df7aa300a675f8a808bc7f4" + hash: "f00358343437f6e058848c7237601632" } Frame { msec: 2784 - hash: "52839867e81d52746196f299a8371453" - } - Key { - type: 7 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "88c9e1d58397a81ed23931c7fdae1e7d" } Frame { msec: 2800 - hash: "c4d214a7e0fc52c2a45fc6e3df12550a" + hash: "44d46b459f6bb89510e52b0d999fd499" } Frame { msec: 2816 - hash: "f1fa48d796667bd053fff4af7ec1d8ce" + hash: "0c196a24c9ca7143d382688db678d855" } Frame { msec: 2832 - hash: "081e46decc8aba911f018acfd761cda1" + hash: "9df6d3d3b9981cb907ab89e65b743e97" } Frame { msec: 2848 - hash: "fa417c9bfda1da66320a8e59fbaeb5b6" + hash: "501a644d6cde64ad041b086e00fd3950" + } + Key { + type: 6 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2864 - hash: "83dfa353fd20f3bf7caa8e6ca9a9933c" + hash: "83f297406b1c6311da3a216024836d15" } Frame { msec: 2880 @@ -790,511 +854,527 @@ VisualTest { } Frame { msec: 2896 - hash: "c11459b1d3e51f3d2f5bd30049bcca42" + hash: "93f79f8717948bde8ee55c668af2d397" } Frame { msec: 2912 - hash: "997ff3fa82ba2fb27a9c41ed9abe8991" + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" } Frame { msec: 2928 - hash: "f8baaadde147266416c9ab3f9d9106ce" + hash: "be72fe7c27901db62f2dbd9a757e4838" } Frame { msec: 2944 - hash: "79d1d34fd343d8de631aa3259167fe26" + hash: "c83c973fb1253ccab333fb1e604155b8" } Frame { msec: 2960 - hash: "8b1445ca6131a0fc4377ded24a60186a" + hash: "dd6072d204812c23e24db1e7a81c6f57" } Frame { msec: 2976 - hash: "784cc01604ecadf74a45164f73f0336d" + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" + } + Key { + type: 7 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2992 - hash: "b9aeac2be5c8e16e7938e141f32776be" + hash: "fc8ede705bfe8f339fe47041c502b0d6" } Frame { msec: 3008 - hash: "b9aeac2be5c8e16e7938e141f32776be" + hash: "00fa0306d3fdc7e384cfc0660a3a355d" } Frame { msec: 3024 - hash: "b9aeac2be5c8e16e7938e141f32776be" + hash: "00fa0306d3fdc7e384cfc0660a3a355d" } Frame { msec: 3040 - hash: "b9aeac2be5c8e16e7938e141f32776be" + hash: "fc8ede705bfe8f339fe47041c502b0d6" } Frame { msec: 3056 - hash: "b9aeac2be5c8e16e7938e141f32776be" + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" } Frame { msec: 3072 - hash: "b9aeac2be5c8e16e7938e141f32776be" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "dd6072d204812c23e24db1e7a81c6f57" } Frame { msec: 3088 - hash: "00dfc5f4468482cb5f74e62be235b1d2" + hash: "c83c973fb1253ccab333fb1e604155b8" } Frame { msec: 3104 - hash: "62bc9c57724f7ab6bcf7d75d8ff68097" + hash: "be72fe7c27901db62f2dbd9a757e4838" } Frame { msec: 3120 - hash: "ad65de5a6887c0a31a9d8f72a2a651db" + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" } Frame { msec: 3136 - hash: "75e854ccaad087bfe776a843f0bd7284" + hash: "93f79f8717948bde8ee55c668af2d397" } Frame { msec: 3152 - hash: "1e3f580f37a0dc063a383bdf435e85ea" + hash: "1bb236db749ef514c00d0a3dd698d24f" } Frame { msec: 3168 - hash: "3d78320cb021944d7c6cee1a42056663" + hash: "83f297406b1c6311da3a216024836d15" } Frame { msec: 3184 - hash: "fca865f762c1a6cc3e487e0e908eef73" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "3d284b4000d2849ed4af2f7c1b859492" } Frame { msec: 3200 - hash: "fb7ad9156658f3866d19e43f006cf013" + hash: "de315e6836334fd0a2da855f5be4ff30" } Frame { msec: 3216 - hash: "6f7411363c66d0959ea5a16a9b610e61" - } - Frame { - msec: 3232 - hash: "a33dce3c55b1b1541cfb9b85a75fcb53" - } - Frame { - msec: 3248 - hash: "56b81435dc4ce193bb98c3d02c781242" + hash: "5ca117709284f4a1cbd64cdba4079340" } Key { type: 6 - key: 16777234 - modifiers: 0 + key: 16777236 + modifiers: 67108864 text: "" autorep: false count: 1 } Frame { + msec: 3232 + hash: "308a4220f5c74fd56bd218cd695b9822" + } + Frame { + msec: 3248 + hash: "4ac4e09e987f2ba9661ed52fb1bdf236" + } + Frame { msec: 3264 - hash: "59865194eb63465dd0f3925c7a500340" + hash: "9ffd39a8a540ec88ff2b20a16ef083ee" } Frame { msec: 3280 - hash: "38abc77b2361ce257d39c0cf268ba42b" + hash: "4a36ed8e68811954fef171d5734ccbaf" } Frame { msec: 3296 - hash: "2b91dcef1b3ca66059dd9db4c8e335f3" + hash: "714a6231aca70cfa8e83ea71b7ae90dc" } Frame { msec: 3312 - hash: "70c827f1b34b44cbd775b666913556d6" + hash: "1fa9e35449ee87c972e3189ad0651a68" } Frame { msec: 3328 - hash: "8ca757a4fd1987329488f63251b0f6b4" - } - Frame { - msec: 3344 - hash: "0da2c1cd0138172698a3bee5d19168c5" - } - Frame { - msec: 3360 - hash: "8d71c418593eb3e4834d5e608ffd3f29" + hash: "d602008fada2f4edb6ad00fe759f9db9" } Key { type: 7 - key: 16777234 - modifiers: 0 + key: 16777236 + modifiers: 67108864 text: "" autorep: false count: 1 } Frame { + msec: 3344 + hash: "bf16cc38f109e761b5ac2b0c63a1a2fe" + } + Frame { + msec: 3360 + hash: "30f26041533455ed92c4984f55e3c6ff" + } + Frame { msec: 3376 - hash: "35c0d55cda3a02eb4c441a5832bcbbf4" + hash: "5838d666902bc693de505522dad13254" } Frame { msec: 3392 - hash: "4e7374a683050ff440056b6e7c971d2b" + hash: "6c8ada09b627050e4340da6e8ddd646e" } Frame { msec: 3408 - hash: "6310b65572e39256122c7620f7e87442" + hash: "b33cd5bbb90d435dd7ea3ab67bef88ee" } Frame { msec: 3424 - hash: "d882fe91d9df9862d620cf984e27d0bd" + hash: "692d4029938c01044b4210958dd1ee7e" } Frame { msec: 3440 - hash: "97549f388c02adb8884c2e79510adc7e" + hash: "7e2e55555ee2c7e172e61ddb6365355d" } Frame { msec: 3456 - hash: "60a60e06237318bf005f87bbba386fef" + hash: "87ca0584879b25336a1023ac3252fc9a" } Frame { msec: 3472 - hash: "2dbe9b5bbb5baf12cd2cbfb4190be316" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3488 - hash: "eacfa8db605b9e386a55508e8943e7d1" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3504 - hash: "e0826ff09b628a5e3ddf6d9e5593f937" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3520 - hash: "2aec32493055ad17f4aac9b3c9b84c5f" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3536 - hash: "c0e72cdf776b0c62742aa9c3683cd523" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3552 - hash: "ea3f512181b3ee94d8cdd4d9f59ed962" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3568 - hash: "de924155855e76d0591217448f79bdb6" + hash: "8c6052eb4cf03d7742a73874d9f15285" } Frame { msec: 3584 - hash: "51da770a75102de9ad1920f1f6c44146" + hash: "8a1b63c42867f87a1cf4b47944b3860a" } Frame { msec: 3600 - hash: "e3c0e8f6385ef2ab9b671be3243774c4" + hash: "90712efd7c17b0ad33d2c2c02e9eaa97" } Frame { msec: 3616 - hash: "eac6de65ea6726f0cc50b6d30c1b7ba5" + hash: "8099972420ffd03e2bfc3ea45918a543" } Frame { msec: 3632 - hash: "2ee111386bd646c4ee577405e490a2f7" + hash: "2b78b1179a34319c287a6659406e23c3" } Frame { msec: 3648 - hash: "fe95122352effcf1815bc237fc6ce6ab" + hash: "ad9458ab4d6376c87350a2356c280f94" } Frame { msec: 3664 - hash: "e3bb1ec3b84df25712f06e0d6963efdd" + hash: "a74bc230e310a2826b2fed962db22f7a" } Frame { msec: 3680 - hash: "a10d3184acc85c46e171fe4cf82e1c23" + hash: "bd72e8f4757050c41673a6f0d38f2285" } Frame { msec: 3696 - hash: "d566b2763312e5e823593806acd9e809" + hash: "379bad4fa4b605cb6a16434bdb031e2b" } Frame { msec: 3712 - hash: "7db073b7487ddea48e7c9df8b9bfdc00" + hash: "e144a8e9586f29f9b2f042b47e7739ae" } Frame { msec: 3728 - hash: "85c663b943f67d158367dba0508980a5" + hash: "bd74c9e79bc1a88dd6a17a3aed21e368" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 3744 - hash: "6336ce0d912ee63773475c4c6c5d59be" + hash: "144724168f42372e10ec6c39662a5ed8" } Frame { msec: 3760 - hash: "c75ba80484af36633b6a4d17b666b1c9" + hash: "d8859888802e7b54e2d2a44cf252eb54" } Frame { msec: 3776 - hash: "08b7d4eef2d15bc717ff1a981a11f275" + hash: "20561e2faf7e8fe1d6337248e6cd5e94" } Frame { msec: 3792 - hash: "0ab8bebb0e43786a7e51ea780745080c" + hash: "184cff262d1004ce702c117a6b5b9699" } Frame { msec: 3808 - hash: "6fa1811f520eff9893b3c7b00e53fa7d" + hash: "61b156acacefa6e4f4ddd8adaca90d08" } Frame { msec: 3824 - hash: "6feb44655bfbec651cc2902676bd08b4" + hash: "0906852b1e62a936694a22d6ffa4f5dd" } Frame { msec: 3840 image: "cursorDelegate.3.png" } + Key { + type: 7 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } Frame { msec: 3856 - hash: "00b7714df163d8055514e0dbd8a83bac" + hash: "cc0fb2ae2dd1ccad94c453bc4c4b6d32" } Frame { msec: 3872 - hash: "6ef2a330d70a7e0ce343bb352c46f126" + hash: "6a6baee5ca76d331c47fca4d0f7168e5" } Frame { msec: 3888 - hash: "f4e26309fa3b8a6d55f44bf146544101" + hash: "32032d7ce55af41c97ac5bf33aca40bb" } Frame { msec: 3904 - hash: "dfa1e24149f2662a4a552da3bb64348c" + hash: "a8781226e5e494324a34e120aa446cd1" } Frame { msec: 3920 - hash: "9ab9d6ef4aeb5863401a9e251f684e2d" + hash: "0dd5df088fcc0228a97ffe715c95e2b6" } Frame { msec: 3936 - hash: "c9f7591a37a3743b3b48de5337fd2fa0" + hash: "774b161fe9645bc69b89e580b3e41f71" } Frame { msec: 3952 - hash: "2d38f17db530050574d9192c805c142d" + hash: "5756d7ffd8ff656db54f4329ea909553" } Frame { msec: 3968 - hash: "38a4ad2cf9fa3015eff67014900a44cc" + hash: "2b4a5c97ff4d8792a7706bb78385ec35" } Frame { msec: 3984 - hash: "9d9ce4ac0de6caa2f0bb78eac414ba65" + hash: "f9765e4def564b64861402e1a873b169" } Frame { msec: 4000 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "287b07ef6288dcea13fffd2b95aafd54" } Frame { msec: 4016 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "7abcb9d6cf223c1655f6265f780a321a" } Frame { msec: 4032 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "287b07ef6288dcea13fffd2b95aafd54" } Frame { msec: 4048 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "f9765e4def564b64861402e1a873b169" } Frame { msec: 4064 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "2b4a5c97ff4d8792a7706bb78385ec35" + } + Key { + type: 7 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 4080 - hash: "9d9ce4ac0de6caa2f0bb78eac414ba65" + hash: "5756d7ffd8ff656db54f4329ea909553" } Frame { msec: 4096 - hash: "38a4ad2cf9fa3015eff67014900a44cc" + hash: "774b161fe9645bc69b89e580b3e41f71" } Frame { msec: 4112 - hash: "2d38f17db530050574d9192c805c142d" + hash: "0dd5df088fcc0228a97ffe715c95e2b6" } Frame { msec: 4128 - hash: "c9f7591a37a3743b3b48de5337fd2fa0" + hash: "a8781226e5e494324a34e120aa446cd1" } Frame { msec: 4144 - hash: "9ab9d6ef4aeb5863401a9e251f684e2d" + hash: "32032d7ce55af41c97ac5bf33aca40bb" } Frame { msec: 4160 - hash: "dfa1e24149f2662a4a552da3bb64348c" + hash: "6a6baee5ca76d331c47fca4d0f7168e5" } Frame { msec: 4176 - hash: "f4e26309fa3b8a6d55f44bf146544101" + hash: "cc0fb2ae2dd1ccad94c453bc4c4b6d32" } Frame { msec: 4192 - hash: "6ef2a330d70a7e0ce343bb352c46f126" + hash: "2d1b406be294727a278ba6bbc97be62a" } Frame { msec: 4208 - hash: "00b7714df163d8055514e0dbd8a83bac" + hash: "0906852b1e62a936694a22d6ffa4f5dd" } Frame { msec: 4224 - hash: "ae46d672649a4b0fc5171f776af93a2c" + hash: "61b156acacefa6e4f4ddd8adaca90d08" } Frame { msec: 4240 - hash: "6feb44655bfbec651cc2902676bd08b4" + hash: "184cff262d1004ce702c117a6b5b9699" } Frame { msec: 4256 - hash: "6fa1811f520eff9893b3c7b00e53fa7d" + hash: "20561e2faf7e8fe1d6337248e6cd5e94" } Frame { msec: 4272 - hash: "0ab8bebb0e43786a7e51ea780745080c" + hash: "d8859888802e7b54e2d2a44cf252eb54" } Frame { msec: 4288 - hash: "08b7d4eef2d15bc717ff1a981a11f275" + hash: "144724168f42372e10ec6c39662a5ed8" } Frame { msec: 4304 - hash: "c75ba80484af36633b6a4d17b666b1c9" + hash: "d2da36fbf73289f545133bd608af66a2" } Frame { msec: 4320 - hash: "6336ce0d912ee63773475c4c6c5d59be" + hash: "b1d7da6b42a31bba91148ab37b111945" } Frame { msec: 4336 - hash: "85c663b943f67d158367dba0508980a5" + hash: "6f226a3b20d95e17df69e2c4e5aff3d1" } Frame { msec: 4352 - hash: "7db073b7487ddea48e7c9df8b9bfdc00" + hash: "1109da0f043a9418661fc05e53fe3b45" } Frame { msec: 4368 - hash: "d566b2763312e5e823593806acd9e809" + hash: "f3e901db9efd1d9fadf1cb6858040d51" } Frame { msec: 4384 - hash: "a10d3184acc85c46e171fe4cf82e1c23" + hash: "c8e50c0e924b11a3f1943abb9a4008a4" } Frame { msec: 4400 - hash: "e3bb1ec3b84df25712f06e0d6963efdd" + hash: "431226a27488ed1dba237de3d43f94c5" } Frame { msec: 4416 - hash: "fe95122352effcf1815bc237fc6ce6ab" + hash: "420d316430c84f10d7cd24d29b918149" } Frame { msec: 4432 - hash: "2ee111386bd646c4ee577405e490a2f7" + hash: "ccbd4d1e4865ebd9b0fe923e6ab05e5c" } Frame { msec: 4448 - hash: "eac6de65ea6726f0cc50b6d30c1b7ba5" + hash: "231bff73758a1c6f7c7c0365159ba3e6" } Frame { msec: 4464 - hash: "e3c0e8f6385ef2ab9b671be3243774c4" + hash: "d1ac7ceda7303bbf3392d33f47037ed6" } Frame { msec: 4480 - hash: "51da770a75102de9ad1920f1f6c44146" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4496 - hash: "de924155855e76d0591217448f79bdb6" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4512 - hash: "ea3f512181b3ee94d8cdd4d9f59ed962" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4528 - hash: "c0e72cdf776b0c62742aa9c3683cd523" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4544 - hash: "2aec32493055ad17f4aac9b3c9b84c5f" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4560 - hash: "e0826ff09b628a5e3ddf6d9e5593f937" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4576 - hash: "eacfa8db605b9e386a55508e8943e7d1" + hash: "a2ad07326fafcb3012cdb869f39af466" } Frame { msec: 4592 - hash: "2dbe9b5bbb5baf12cd2cbfb4190be316" + hash: "8622eb25a6da44926b5161bce213a483" } Frame { msec: 4608 - hash: "60a60e06237318bf005f87bbba386fef" + hash: "fe563aa9dae9655871f82a779063cdbd" } Frame { msec: 4624 - hash: "97549f388c02adb8884c2e79510adc7e" + hash: "775cd79b012f79b773449a0ad8457149" } Frame { msec: 4640 - hash: "d882fe91d9df9862d620cf984e27d0bd" + hash: "01e9fab344a148a0877a7332d561be5a" } Frame { msec: 4656 - hash: "6310b65572e39256122c7620f7e87442" + hash: "935566d139599a30197850774fb059ba" } Frame { msec: 4672 - hash: "4e7374a683050ff440056b6e7c971d2b" + hash: "4aae1ac532624417decddd978f516b6e" } Frame { msec: 4688 - hash: "35c0d55cda3a02eb4c441a5832bcbbf4" + hash: "34dc78df6e9941988712c1f8f79c3db0" } Frame { msec: 4704 - hash: "8d71c418593eb3e4834d5e608ffd3f29" + hash: "23a96c11d5917c44bd48239ed2b5777f" } Frame { msec: 4720 - hash: "0da2c1cd0138172698a3bee5d19168c5" + hash: "f8f13e097eae3152db3ccebff1343fe0" } Frame { msec: 4736 - hash: "8ca757a4fd1987329488f63251b0f6b4" + hash: "02f8fca7c4ab80ecf425e4b39e966b86" } Frame { msec: 4752 - hash: "70c827f1b34b44cbd775b666913556d6" + hash: "c3356367750e797ff81bc4102f948134" } Frame { msec: 4768 - hash: "2b91dcef1b3ca66059dd9db4c8e335f3" + hash: "7b5de3772b8bcb4b10f3d265d5603afb" } Frame { msec: 4784 - hash: "38abc77b2361ce257d39c0cf268ba42b" + hash: "ed3c741639232377f61867fd353ce58a" } Frame { msec: 4800 @@ -1302,2254 +1382,118 @@ VisualTest { } Frame { msec: 4816 - hash: "7bed5747d6b771db0fe5802153e54f2f" + hash: "5ca117709284f4a1cbd64cdba4079340" } Frame { msec: 4832 - hash: "9ac1bf268749bc8e58bc4d04b55ef849" + hash: "de315e6836334fd0a2da855f5be4ff30" } Frame { msec: 4848 - hash: "64ea5cb46782d250c46a7a2c8cceea20" + hash: "3d284b4000d2849ed4af2f7c1b859492" } Frame { msec: 4864 - hash: "d81037eb21bfcb434b6c7f3bbd21ad12" + hash: "83f297406b1c6311da3a216024836d15" } Frame { msec: 4880 - hash: "1079ea3a1a62e2cca9a8e907bc5aa4e1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 130; y: 101 - modifiers: 0 - sendToViewport: true + hash: "1bb236db749ef514c00d0a3dd698d24f" } Frame { msec: 4896 - hash: "3d78320cb021944d7c6cee1a42056663" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 102 - modifiers: 0 - sendToViewport: true + hash: "93f79f8717948bde8ee55c668af2d397" } Frame { msec: 4912 - hash: "1e3f580f37a0dc063a383bdf435e85ea" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 131; y: 102 - modifiers: 0 - sendToViewport: true + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" } Frame { msec: 4928 - hash: "75e854ccaad087bfe776a843f0bd7284" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 103 - modifiers: 0 - sendToViewport: true + hash: "be72fe7c27901db62f2dbd9a757e4838" } Frame { msec: 4944 - hash: "ad65de5a6887c0a31a9d8f72a2a651db" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 133; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 134; y: 103 - modifiers: 0 - sendToViewport: true + hash: "c83c973fb1253ccab333fb1e604155b8" } Frame { msec: 4960 - hash: "62bc9c57724f7ab6bcf7d75d8ff68097" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 135; y: 103 - modifiers: 0 - sendToViewport: true + hash: "dd6072d204812c23e24db1e7a81c6f57" } Frame { msec: 4976 - hash: "00dfc5f4468482cb5f74e62be235b1d2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 103 - modifiers: 0 - sendToViewport: true + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" } Frame { msec: 4992 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 137; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 102 - modifiers: 0 - sendToViewport: true + hash: "fc8ede705bfe8f339fe47041c502b0d6" } Frame { msec: 5008 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 139; y: 101 - modifiers: 0 - sendToViewport: true + hash: "00fa0306d3fdc7e384cfc0660a3a355d" } Frame { msec: 5024 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 101 - modifiers: 0 - sendToViewport: true + hash: "00fa0306d3fdc7e384cfc0660a3a355d" } Frame { msec: 5040 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 141; y: 100 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 100 - modifiers: 0 - sendToViewport: true + hash: "fc8ede705bfe8f339fe47041c502b0d6" } Frame { msec: 5056 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 100 - modifiers: 0 - sendToViewport: true + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" } Frame { msec: 5072 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 99 - modifiers: 0 - sendToViewport: true + hash: "dd6072d204812c23e24db1e7a81c6f57" } Frame { msec: 5088 - hash: "748dc58a3ad83d7b99d7b26ad2f82786" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 99 - modifiers: 0 - sendToViewport: true + hash: "c83c973fb1253ccab333fb1e604155b8" } Frame { msec: 5104 - hash: "242cc0ee7c3bdb44e8933068d3a93b61" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 150; y: 99 - modifiers: 0 - sendToViewport: true + hash: "be72fe7c27901db62f2dbd9a757e4838" } Frame { msec: 5120 - hash: "3be6f0a35fb085dcf6c9481cf1c23f9d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 99 - modifiers: 0 - sendToViewport: true + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" } Frame { msec: 5136 - hash: "a6f63267eaba9aefd2c9ab338571ef33" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 98 - modifiers: 0 - sendToViewport: true + hash: "93f79f8717948bde8ee55c668af2d397" } Frame { msec: 5152 - hash: "ba37dd9ba649e294465dc707f6b768ec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 98 - modifiers: 0 - sendToViewport: true + hash: "1bb236db749ef514c00d0a3dd698d24f" } Frame { msec: 5168 - hash: "35b186609721ec0b8a121d15bc54ce49" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 98 - modifiers: 0 - sendToViewport: true + hash: "83f297406b1c6311da3a216024836d15" } Frame { msec: 5184 - hash: "700ff15e4e48af93362455a149d90363" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 98 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 98 - modifiers: 0 - sendToViewport: true + hash: "3d284b4000d2849ed4af2f7c1b859492" } Frame { msec: 5200 - hash: "1c51eb8d4d25d086bda4d595a49c3a86" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 98 - modifiers: 0 - sendToViewport: true + hash: "de315e6836334fd0a2da855f5be4ff30" } Frame { msec: 5216 - hash: "2f085b047d24384d463163df7fac2bd3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 98 - modifiers: 0 - sendToViewport: true + hash: "5ca117709284f4a1cbd64cdba4079340" } Frame { msec: 5232 - hash: "46d7aff6eb47e50e23c061ecb149fbf9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 98 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 98 - modifiers: 0 - sendToViewport: true + hash: "4f0d49aff27a1c83287d38e760c10f16" } Frame { msec: 5248 - hash: "48d7a8f749f7501dbaa4599ca41096a5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 97 - modifiers: 0 - sendToViewport: true + hash: "ed3c741639232377f61867fd353ce58a" } Frame { msec: 5264 - hash: "4c2a085c69c118fedfa15fe46cdc508b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 164; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5280 - hash: "25f25828a4d22fe85db0de5c562f658e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 96 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5296 - hash: "e9fb14ec21e9ec1235d2fea6e055b69d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5312 - hash: "66417881aeb85778be66566241c45f5a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5328 - hash: "c8c136690ffd8e5cc3e58f7376693b4f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: 96 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 178; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5344 - hash: "c58c4fb5b7197cd8bd95742dc8715bbf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 179; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5360 - hash: "2e0c93380883fcf2d0e56024fecba605" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 180; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5376 - hash: "5f169f09e3d868eb0425a331d4bc3144" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 182; y: 95 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 183; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5392 - hash: "ed648742be4b0ded04e713e83ed24b27" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5408 - hash: "92131288bb38480469f4578282dedaf8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5424 - hash: "e16773f750bb0f635552b1eeadb2d625" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 189; y: 93 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5440 - hash: "6e653cd552d82f38f30b8027d1951534" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5456 - hash: "cfc1d6efa8d1b3b86396704f0be031ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5472 - hash: "5848af73f5ab7c811639a6d01921d502" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 92 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5488 - hash: "3823e7da05678f63e6761a81ed7233e2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5504 - hash: "d095abe9814a60824914960a11663f12" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 91 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5520 - hash: "18922bb3269d903a36e0b690249b473a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 91 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 201; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5536 - hash: "4d8400a3ca2b782e7b054bb2f71d4543" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 89 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5552 - hash: "24ed25d7a767f01fb02f545fc6c6931a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5568 - hash: "55fb16784e3655ae70f97d6c32853cdc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5584 - hash: "694e6979f0de62b61324dc4b144a2d5d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 85 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5600 - hash: "e61b8b03251f6312e3de4e0c8af684d5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 85 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5616 - hash: "6203321f87d53692dbb2b2aaf7dd3944" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5632 - hash: "297b77029475d77cd8e481199b23da30" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 213; y: 84 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 214; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5648 - hash: "414615d772b4c80bf85eabfdca6fd0e0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5664 - hash: "46d70882552a21267eebb3505da086f3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5680 - hash: "372acafc63624307bcb384c48a803ab7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 84 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5696 - hash: "1b98094dd4f192af8229b7058b8ce396" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5712 - hash: "d627fa0ce696e46650225e43134643f5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5728 - hash: "0410f4b504d768bc00940b20d3d942f9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 85 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 86 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5744 - hash: "5f8011b44681d769800af8d205c757cb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 221; y: 87 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5760 - image: "cursorDelegate.5.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 87 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5776 - hash: "99f7a46f841f96445962b5fb3496d996" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5792 - hash: "ed8bba2823ca2fe7cf138af0fcc52806" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5808 - hash: "c9007b7ae5038ba59bfc6fac15c80d5f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 226; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5824 - hash: "2db81c955a99652bcfef958e870054af" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 228; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5840 - hash: "1e3906d7f3ee5a29c3c90b8e1f6c1eb0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 229; y: 96 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 231; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "fc59738903cc9e6f36ef4d27bfde9496" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 232; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5872 - hash: "768aaf4ef2b13b40b75bdf15787966b6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 233; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5888 - hash: "3085baedc0c58a6757b134bb4f80fa9e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 233; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5904 - hash: "0a1b8cad167bf93801f4d0dd34bf872e" - } - Frame { - msec: 5920 - hash: "6366e04808ee015feed44d95cc117e1e" - } - Frame { - msec: 5936 - hash: "dd67a8542a243aac9462e25dc1586e6e" - } - Frame { - msec: 5952 - hash: "e06c8788b2ef327d005b4048f0807334" - } - Frame { - msec: 5968 - hash: "dda2beda1253bd477d04cada4ec4df27" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 233; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5984 - hash: "d659d1724637d90497c8e417764d3477" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 232; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 232; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6000 - hash: "91035aecf2ac15f3c2c3dbc4b73b540f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 231; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6016 - hash: "91035aecf2ac15f3c2c3dbc4b73b540f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 230; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6032 - hash: "91035aecf2ac15f3c2c3dbc4b73b540f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 229; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 228; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6048 - hash: "91035aecf2ac15f3c2c3dbc4b73b540f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6064 - hash: "91035aecf2ac15f3c2c3dbc4b73b540f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 225; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "bdc53613cad59416ed79287874eb59f8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 101 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6096 - hash: "54efe0acb07fb69827024a566773a36e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6112 - hash: "860530a5ac3d89193f3cf234e21f8f6a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6128 - hash: "ade5f8e28159304b22866f688efdbb46" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 102 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6144 - hash: "7d5f5cf34910527d899e89ea07fb7254" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "c201ed0f2419396a229d8396152aba01" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 213; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6176 - hash: "b99135e2cb03ab252ff379c8001c26ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 102 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6192 - hash: "768aaf4ef2b13b40b75bdf15787966b6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6208 - hash: "71a5bed1a87e16c986b2f4b245e956b8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6224 - hash: "7155607add8c7254286097cda52b5888" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6240 - hash: "e516e4d8a4ef0195ae04b3287f536ffd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6256 - hash: "afa06d10b37d8ad8b57e392142ff50f2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6272 - hash: "88c3fe68f7251d87a5bf197b9d59b899" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6288 - hash: "b2687baf5148539ee2181b18077e0a3d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6304 - hash: "457aed68cee2b9f3ff3c7d5f0eb2b6aa" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 201; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6320 - hash: "48bb4683718a3b7c34baea29260fbe8c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6336 - hash: "7c32fbf799bbfc10d0fbdd96bcfa9d95" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 197; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6352 - hash: "68cee3b8213a9d38e2ed431d06eb6756" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 101 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6368 - hash: "596c732c40a86d16bc649f164b919457" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 188; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6384 - hash: "d9cb5bf69d4f8aaebefae6d680a99185" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6400 - hash: "bb6759f3aff00f027f4f426efb775d2d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6416 - hash: "a408d88f97c30ab8ab12a222b03571b4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 182; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6432 - hash: "bb2e8994dc014eb6d4e4e33257269c2a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6448 - hash: "190e9df0b8d20b0f37a198e9f3976416" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6464 - hash: "aa7be52534c8550948deea6ae174330d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6480 - hash: "533caac613ea1279a51a5b5b29acdccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6496 - hash: "288cc34879d9ed8ed381ba6cc31de3e7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6512 - hash: "2a57602c47ab788f288daa81b985fc1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6528 - hash: "fa3540fafa1a9e3c5e796b598dce8fb1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6544 - hash: "7e9b17ae7c10cb30153539911ac6eb13" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6560 - hash: "9e62b16c858e80ff1294ec53e2390498" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6576 - hash: "287470e6cf9bd4b9acfd1cd1512307e3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 95 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6592 - hash: "4086c7c7a573a1b9f98d22ebf9b46c5f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6608 - hash: "7d0868f000a1102916720a29a332543f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6624 - hash: "bda3cfdca81f7cba54514c512eb6b12e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6640 - hash: "923ff9fac39c3fba2c9cf7b52fc652ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6656 - hash: "269718e3586affbbdf0b9599e12f5677" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6672 - hash: "d12e03b5da6ea7b162d7dec6930c1a54" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6688 - hash: "96edf1f15c674c5d8c4e4ce9e1d34f1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6704 - hash: "70ce229fae6985dd49de8cca01c031e6" - } - Frame { - msec: 6720 - image: "cursorDelegate.6.png" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 144; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6736 - hash: "56215b7d24ac382ff1ed256c80d14091" - } - Frame { - msec: 6752 - hash: "ac132304e072806431803d26e345b264" - } - Frame { - msec: 6768 - hash: "a8f3e7fbb95ed8fe2b83871eb3d2c151" - } - Frame { - msec: 6784 - hash: "43906030c2572af0f8f0577dbc86e346" - } - Frame { - msec: 6800 - hash: "d64b58801430d5063225dceac1603bca" - } - Frame { - msec: 6816 - hash: "56b81435dc4ce193bb98c3d02c781242" - } - Frame { - msec: 6832 - hash: "a33dce3c55b1b1541cfb9b85a75fcb53" - } - Frame { - msec: 6848 - hash: "6f7411363c66d0959ea5a16a9b610e61" - } - Frame { - msec: 6864 - hash: "fb7ad9156658f3866d19e43f006cf013" - } - Frame { - msec: 6880 - hash: "fca865f762c1a6cc3e487e0e908eef73" - } - Frame { - msec: 6896 - hash: "3d78320cb021944d7c6cee1a42056663" - } - Frame { - msec: 6912 - hash: "1e3f580f37a0dc063a383bdf435e85ea" - } - Frame { - msec: 6928 - hash: "75e854ccaad087bfe776a843f0bd7284" - } - Frame { - msec: 6944 - hash: "ad65de5a6887c0a31a9d8f72a2a651db" - } - Frame { - msec: 6960 - hash: "62bc9c57724f7ab6bcf7d75d8ff68097" - } - Frame { - msec: 6976 - hash: "00dfc5f4468482cb5f74e62be235b1d2" - } - Frame { - msec: 6992 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7008 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7024 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7040 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7056 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7072 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7088 - hash: "00dfc5f4468482cb5f74e62be235b1d2" - } - Frame { - msec: 7104 - hash: "62bc9c57724f7ab6bcf7d75d8ff68097" - } - Frame { - msec: 7120 - hash: "ad65de5a6887c0a31a9d8f72a2a651db" - } - Frame { - msec: 7136 - hash: "75e854ccaad087bfe776a843f0bd7284" - } - Frame { - msec: 7152 - hash: "1e3f580f37a0dc063a383bdf435e85ea" - } - Frame { - msec: 7168 - hash: "3d78320cb021944d7c6cee1a42056663" - } - Frame { - msec: 7184 - hash: "fca865f762c1a6cc3e487e0e908eef73" - } - Frame { - msec: 7200 - hash: "fb7ad9156658f3866d19e43f006cf013" - } - Frame { - msec: 7216 - hash: "6f7411363c66d0959ea5a16a9b610e61" - } - Frame { - msec: 7232 - hash: "a33dce3c55b1b1541cfb9b85a75fcb53" - } - Frame { - msec: 7248 - hash: "56b81435dc4ce193bb98c3d02c781242" - } - Frame { - msec: 7264 - hash: "d64b58801430d5063225dceac1603bca" - } - Frame { - msec: 7280 - hash: "43906030c2572af0f8f0577dbc86e346" - } - Frame { - msec: 7296 - hash: "a8f3e7fbb95ed8fe2b83871eb3d2c151" - } - Frame { - msec: 7312 - hash: "ac132304e072806431803d26e345b264" - } - Frame { - msec: 7328 - hash: "56215b7d24ac382ff1ed256c80d14091" - } - Frame { - msec: 7344 - hash: "4d5c97925b21d699f1c3720a3f51ebbb" - } - Frame { - msec: 7360 - hash: "70ce229fae6985dd49de8cca01c031e6" - } - Frame { - msec: 7376 - hash: "96edf1f15c674c5d8c4e4ce9e1d34f1d" - } - Frame { - msec: 7392 - hash: "d12e03b5da6ea7b162d7dec6930c1a54" - } - Frame { - msec: 7408 - hash: "269718e3586affbbdf0b9599e12f5677" - } - Frame { - msec: 7424 - hash: "42d19ea6dd328c505da5a4eee23a257d" - } - Frame { - msec: 7440 - hash: "e4d9d77859759dd95cf3ffee8f142cd8" - } - Frame { - msec: 7456 - hash: "445e4c6e9872b63a1461e3277dd8185c" - } - Frame { - msec: 7472 - hash: "d6343c629acd987179eae0d158d2504c" - } - Frame { - msec: 7488 - hash: "a5340087baa2c3694ed0cc2bbc3e2ad9" - } - Frame { - msec: 7504 - hash: "205973c30aaca71d1f20e740ce971d82" - } - Frame { - msec: 7520 - hash: "ed28c7e07755e177222c7e322116bfb4" - } - Frame { - msec: 7536 - hash: "6cebfc407a985694c803940608ab1303" - } - Frame { - msec: 7552 - hash: "87f825fc820d3942e4d9b5ece5be3714" - } - Frame { - msec: 7568 - hash: "9aa56dfe90ed2eba58eee0ff6ff3822c" - } - Frame { - msec: 7584 - hash: "c93acf87a918f21a55cf39ea255315a3" - } - Frame { - msec: 7600 - hash: "f8ce1bec5d5016c56fc66d52c28e69d1" - } - Frame { - msec: 7616 - hash: "a365dba2f7c4be77ea98b727813c2f03" - } - Frame { - msec: 7632 - hash: "e8d1c35ee9ef74c4070adfce5e4560f1" - } - Frame { - msec: 7648 - hash: "f5f2dbb041eeb4de1821761f4fbca506" - } - Frame { - msec: 7664 - hash: "f4ea6e9dff51778e9b5d1321453617ec" - } - Frame { - msec: 7680 - image: "cursorDelegate.7.png" - } - Frame { - msec: 7696 - hash: "f2869791dde1eb4c2ea24e04dc3ac653" - } - Frame { - msec: 7712 - hash: "9bd70e91b765de22b70fe295adc4f87f" - } - Frame { - msec: 7728 - hash: "c0338d0a5c72ba63bff666a76ab3242c" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 227; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7744 - hash: "cb2a643eed9b5658260e04495820cd3d" - } - Frame { - msec: 7760 - hash: "6dda51f2e611b1f589c75820fd8c7295" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 227; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7776 - hash: "98d8692afd47c61421ddcae62414a72e" - } - Frame { - msec: 7792 - hash: "2c533bcdd9df45c6f942d47509ebf20e" - } - Frame { - msec: 7808 - hash: "d28f231fb1e128329e8985689deac882" - } - Frame { - msec: 7824 - hash: "ea73450baf98a2f629ce1c203cfcd728" - } - Frame { - msec: 7840 - hash: "959a31d38edc343b5e081fd0cddc81df" - } - Frame { - msec: 7856 - hash: "9b1ae10ee8e9b3f176357733af9e6735" - } - Frame { - msec: 7872 - hash: "89b0dd11f456bbb321e0bd2e1614c193" - } - Frame { - msec: 7888 - hash: "a0a3aa6d8d4c677894e745ee432084e2" - } - Frame { - msec: 7904 - hash: "f63207b8903085b19de1c9b6a9ff90e0" - } - Frame { - msec: 7920 - hash: "c8f2126fece8c2b473c6511aa568dddb" - } - Frame { - msec: 7936 - hash: "6ccd1f30e85dbad74468c228d92a9a3c" - } - Frame { - msec: 7952 - hash: "bae09fe9f29e0f6ebda298cae753ddab" - } - Frame { - msec: 7968 - hash: "cde4abae868488345fb124b927f46b45" - } - Frame { - msec: 7984 - hash: "a88ccf9c8ae34ffcfd15af4e66102040" - } - Frame { - msec: 8000 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 8016 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 8032 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 8048 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 8064 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 8080 - hash: "a88ccf9c8ae34ffcfd15af4e66102040" - } - Frame { - msec: 8096 - hash: "cde4abae868488345fb124b927f46b45" - } - Frame { - msec: 8112 - hash: "bae09fe9f29e0f6ebda298cae753ddab" - } - Frame { - msec: 8128 - hash: "6ccd1f30e85dbad74468c228d92a9a3c" - } - Frame { - msec: 8144 - hash: "c8f2126fece8c2b473c6511aa568dddb" - } - Frame { - msec: 8160 - hash: "f63207b8903085b19de1c9b6a9ff90e0" - } - Frame { - msec: 8176 - hash: "a0a3aa6d8d4c677894e745ee432084e2" - } - Frame { - msec: 8192 - hash: "89b0dd11f456bbb321e0bd2e1614c193" - } - Frame { - msec: 8208 - hash: "9b1ae10ee8e9b3f176357733af9e6735" - } - Frame { - msec: 8224 - hash: "959a31d38edc343b5e081fd0cddc81df" - } - Frame { - msec: 8240 - hash: "ea73450baf98a2f629ce1c203cfcd728" - } - Frame { - msec: 8256 - hash: "d28f231fb1e128329e8985689deac882" - } - Frame { - msec: 8272 - hash: "2c533bcdd9df45c6f942d47509ebf20e" - } - Frame { - msec: 8288 - hash: "98d8692afd47c61421ddcae62414a72e" - } - Frame { - msec: 8304 - hash: "6dda51f2e611b1f589c75820fd8c7295" - } - Frame { - msec: 8320 - hash: "cb2a643eed9b5658260e04495820cd3d" - } - Frame { - msec: 8336 - hash: "88afd2fa1182fbb2aab100d4587a1006" - } - Frame { - msec: 8352 - hash: "bc657c5181a11a9ff9565f134bdccb8d" - } - Frame { - msec: 8368 - hash: "a296634d814a6e12f9d09f4d8a9fa097" - } - Frame { - msec: 8384 - hash: "f05a2deeb12722904c4f31d641dffeb4" - } - Frame { - msec: 8400 - hash: "75823698247e39dd10a70fe224e13597" - } - Frame { - msec: 8416 - hash: "244fa06c168f7a7401b8ec7f5ddb0e52" - } - Frame { - msec: 8432 - hash: "a78e0f88d269290e9086d1d854618f0c" - } - Frame { - msec: 8448 - hash: "57b1281d29d5c5fdc15d9cf1e3a5545c" - } - Frame { - msec: 8464 - hash: "a24ac211ef29dcf7f22ac95991f1af3f" - } - Frame { - msec: 8480 - hash: "361f978ea3597fd518c25c0069c22e8b" - } - Frame { - msec: 8496 - hash: "ac8e2c01eb58aac0eb4feb6aba9b9628" - } - Frame { - msec: 8512 - hash: "6099612934b5eb90296f1cc3cb5c1a84" - } - Frame { - msec: 8528 - hash: "7c3f08291168065fc9c1d62108022d33" - } - Frame { - msec: 8544 - hash: "8bf57ba445d668af5f3e59276c4f8800" - } - Frame { - msec: 8560 - hash: "c8ed352cbfbc472ea4802a9e03d40052" - } - Frame { - msec: 8576 - hash: "11e5546b30e47d2f3067c0364b9f0877" - } - Frame { - msec: 8592 - hash: "9df0f136fca92d4a05f17ee68f0cd286" - } - Frame { - msec: 8608 - hash: "39f47838a622ba328548cad57cca9e12" - } - Frame { - msec: 8624 - hash: "c891d582be4b23c01e29032fe861081f" - } - Frame { - msec: 8640 - image: "cursorDelegate.8.png" - } - Frame { - msec: 8656 - hash: "c3820dfd382c4568d9fbd2ee95889eda" - } - Frame { - msec: 8672 - hash: "528cf8778318bf7216b54f983dadb2b4" - } - Frame { - msec: 8688 - hash: "419518a3c63aa36f6070e95eb93e58a3" - } - Frame { - msec: 8704 - hash: "11b22e2853c0a9ea6e4ac764348698c9" - } - Frame { - msec: 8720 - hash: "8018329c4b57647942ae34a5f83c2b12" - } - Frame { - msec: 8736 - hash: "c37e9fd5c3d664c2e4911c8cb9fcabf7" - } - Frame { - msec: 8752 - hash: "4e7895f802c9fc249894ba0db25959f7" - } - Frame { - msec: 8768 - hash: "5fed71d99ef70432bc6be8caaea36f17" - } - Frame { - msec: 8784 - hash: "69976d074acbd7a5731c70b33c8f084b" - } - Frame { - msec: 8800 - hash: "c88952348da3df0627b12b8bb05ca13e" - } - Frame { - msec: 8816 - hash: "cc5222da7a17c66d4db146c406492701" - } - Frame { - msec: 8832 - hash: "8915e752776da27cb86019c9decc8a8c" - } - Frame { - msec: 8848 - hash: "d8a77ccc7c01cf187e846a2903e1c55e" - } - Frame { - msec: 8864 - hash: "3cf3f02f98a199c81ef73e8905e7f7ee" - } - Frame { - msec: 8880 - hash: "7a1d47e0109fc370bf63714040cbef96" - } - Frame { - msec: 8896 - hash: "2ca8b8ddbe73b29327e474da34a14a87" - } - Frame { - msec: 8912 - hash: "ee75214865fca848aa38cc05b6049d8f" - } - Frame { - msec: 8928 - hash: "05ab7d8118a806f2215160f5f266a082" - } - Frame { - msec: 8944 - hash: "31e63095b7be56d0bf75e9cff832feb7" - } - Frame { - msec: 8960 - hash: "3ffda2c2f154f1eb806e9f0963057fa1" - } - Frame { - msec: 8976 - hash: "4e805203b58e8f6f331f2e878704fa01" - } - Frame { - msec: 8992 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9008 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9024 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9040 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9056 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9072 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9088 - hash: "4e805203b58e8f6f331f2e878704fa01" - } - Frame { - msec: 9104 - hash: "3ffda2c2f154f1eb806e9f0963057fa1" - } - Frame { - msec: 9120 - hash: "31e63095b7be56d0bf75e9cff832feb7" - } - Frame { - msec: 9136 - hash: "05ab7d8118a806f2215160f5f266a082" + hash: "7b5de3772b8bcb4b10f3d265d5603afb" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.0.png Binary files differnew file mode 100644 index 0000000..e69860e --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.1.png Binary files differnew file mode 100644 index 0000000..1db3c26 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.10.png Binary files differnew file mode 100644 index 0000000..9c72d52 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.10.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.11.png Binary files differnew file mode 100644 index 0000000..9c72d52 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.11.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.2.png Binary files differnew file mode 100644 index 0000000..fbef805 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.3.png Binary files differnew file mode 100644 index 0000000..dc56c7e --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.4.png Binary files differnew file mode 100644 index 0000000..04ea496 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.5.png Binary files differnew file mode 100644 index 0000000..98bf7de --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.6.png Binary files differnew file mode 100644 index 0000000..d95b895 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.6.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.7.png Binary files differnew file mode 100644 index 0000000..9954344 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.7.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.8.png Binary files differnew file mode 100644 index 0000000..d49c2ff --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.8.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.9.png Binary files differnew file mode 100644 index 0000000..9c72d52 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.9.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.qml new file mode 100644 index 0000000..94891e5 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.qml @@ -0,0 +1,4687 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 32 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 48 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 64 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 80 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 96 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 112 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 128 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 144 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 160 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 176 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 192 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 208 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 224 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 240 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 256 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 272 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 288 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 304 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 320 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 118; y: 70 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 336 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 352 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 368 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 384 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 400 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 118; y: 70 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 416 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 432 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 448 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 464 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 480 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 496 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 512 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 528 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 544 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 560 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 576 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 592 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 608 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 624 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 640 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 117; y: 102 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 656 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 672 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 117; y: 102 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 688 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 704 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 720 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 736 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 752 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 768 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 784 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 800 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 816 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 832 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 848 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 864 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 880 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 896 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 912 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 928 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 944 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 960 + image: "usingMultilineEdit.0.png" + } + Frame { + msec: 976 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 992 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1008 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1024 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1040 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1056 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1072 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1088 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1104 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1120 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1136 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1152 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1168 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1184 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1200 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1216 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1232 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1248 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1264 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1280 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1296 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Key { + type: 6 + key: 44 + modifiers: 0 + text: "2c" + autorep: false + count: 1 + } + Frame { + msec: 1312 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1328 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1344 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1360 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1376 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Key { + type: 7 + key: 44 + modifiers: 0 + text: "2c" + autorep: false + count: 1 + } + Frame { + msec: 1392 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1408 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1424 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1440 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1456 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1472 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1488 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1504 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1520 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1536 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1552 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Key { + type: 6 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1568 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Frame { + msec: 1584 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Frame { + msec: 1600 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Key { + type: 7 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1616 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1632 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1648 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1664 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1680 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1696 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1712 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1728 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1744 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1760 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1776 + hash: "cea68eaed3000fe598917688b49525b7" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1792 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1808 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1824 + hash: "cea68eaed3000fe598917688b49525b7" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 1840 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1856 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1872 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1888 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1904 + hash: "968932500933300e0a0ca711067d6659" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1920 + image: "usingMultilineEdit.1.png" + } + Frame { + msec: 1936 + hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" + } + Frame { + msec: 1952 + hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" + } + Frame { + msec: 1968 + hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" + } + Key { + type: 6 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 1984 + hash: "067182091936c99dfa5c29b226bd4351" + } + Frame { + msec: 2000 + hash: "067182091936c99dfa5c29b226bd4351" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 2016 + hash: "067182091936c99dfa5c29b226bd4351" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2032 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2048 + hash: "810e996b65424f80e229160860805492" + } + Key { + type: 7 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 2064 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2080 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2096 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2112 + hash: "810e996b65424f80e229160860805492" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2128 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2144 + hash: "810e996b65424f80e229160860805492" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 2160 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2176 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2192 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2208 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2224 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2240 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Key { + type: 6 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 2256 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2272 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2288 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2304 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2320 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Key { + type: 7 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 2336 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2352 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 2368 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Frame { + msec: 2384 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Frame { + msec: 2400 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Frame { + msec: 2416 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 2432 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Key { + type: 6 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 2448 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2464 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2480 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2496 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2512 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2528 + hash: "35c0c51dd874faa28058251164836dcb" + } + Key { + type: 7 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 2544 + hash: "35c0c51dd874faa28058251164836dcb" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2560 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2576 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2592 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2608 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2624 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2640 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2656 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2672 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2688 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Key { + type: 6 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 2704 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2720 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2736 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2752 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2768 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2784 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Key { + type: 6 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2800 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Key { + type: 7 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 2816 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2832 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2848 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2864 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Key { + type: 7 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2880 + image: "usingMultilineEdit.2.png" + } + Frame { + msec: 2896 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2912 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2928 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Key { + type: 6 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Frame { + msec: 2944 + hash: "d90cbfbec0e5a73781664eec63ba7081" + } + Frame { + msec: 2960 + hash: "d90cbfbec0e5a73781664eec63ba7081" + } + Frame { + msec: 2976 + hash: "d90cbfbec0e5a73781664eec63ba7081" + } + Key { + type: 7 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Key { + type: 6 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 2992 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Frame { + msec: 3008 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Frame { + msec: 3024 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Frame { + msec: 3040 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Key { + type: 7 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 3056 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3072 + hash: "bac072bfe350abe83fbc941e56845939" + } + Frame { + msec: 3088 + hash: "bac072bfe350abe83fbc941e56845939" + } + Frame { + msec: 3104 + hash: "bac072bfe350abe83fbc941e56845939" + } + Key { + type: 6 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3120 + hash: "bac072bfe350abe83fbc941e56845939" + } + Key { + type: 7 + key: 32 + modifiers: 33554432 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3136 + hash: "bac072bfe350abe83fbc941e56845939" + } + Frame { + msec: 3152 + hash: "bac072bfe350abe83fbc941e56845939" + } + Key { + type: 6 + key: 73 + modifiers: 33554432 + text: "49" + autorep: false + count: 1 + } + Frame { + msec: 3168 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Frame { + msec: 3184 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Frame { + msec: 3200 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Frame { + msec: 3216 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Key { + type: 7 + key: 73 + modifiers: 33554432 + text: "49" + autorep: false + count: 1 + } + Frame { + msec: 3232 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3248 + hash: "982d48e7ef886a74791306f055ddc714" + } + Frame { + msec: 3264 + hash: "982d48e7ef886a74791306f055ddc714" + } + Frame { + msec: 3280 + hash: "982d48e7ef886a74791306f055ddc714" + } + Frame { + msec: 3296 + hash: "982d48e7ef886a74791306f055ddc714" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3312 + hash: "982d48e7ef886a74791306f055ddc714" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3328 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3344 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3360 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3376 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3392 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3408 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 3424 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3440 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3456 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3472 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3488 + hash: "18d37190d139a1567d91882fdac411d6" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Key { + type: 6 + key: 78 + modifiers: 0 + text: "6e" + autorep: false + count: 1 + } + Frame { + msec: 3504 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3520 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3536 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3552 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3568 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3584 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Key { + type: 7 + key: 78 + modifiers: 0 + text: "6e" + autorep: false + count: 1 + } + Frame { + msec: 3600 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 3616 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Frame { + msec: 3632 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Frame { + msec: 3648 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Frame { + msec: 3664 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3680 + hash: "00972f42fed66eb94832506b436b203d" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 3696 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3712 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3728 + hash: "00972f42fed66eb94832506b436b203d" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3744 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3760 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3776 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3792 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3808 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3824 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3840 + image: "usingMultilineEdit.3.png" + } + Frame { + msec: 3856 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3872 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3888 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3904 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3920 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3936 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3952 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3968 + hash: "00972f42fed66eb94832506b436b203d" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 3984 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4000 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4016 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4032 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4048 + hash: "72d952ff90862b93ccec046f61d85360" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4064 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 4080 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Frame { + msec: 4096 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Frame { + msec: 4112 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Frame { + msec: 4128 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Key { + type: 6 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 4144 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Frame { + msec: 4160 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4176 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Frame { + msec: 4192 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Frame { + msec: 4208 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 4224 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4240 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Key { + type: 7 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 4256 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4272 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 4288 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4304 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4320 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4336 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4352 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4368 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4384 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4400 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4416 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4432 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4448 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4464 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4480 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4496 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4512 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4528 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4544 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4560 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4576 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4592 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Key { + type: 6 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 4608 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4624 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4640 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4656 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4672 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4688 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4704 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4720 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4736 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4752 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4768 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4784 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4800 + image: "usingMultilineEdit.4.png" + } + Frame { + msec: 4816 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4832 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Key { + type: 6 + key: 63 + modifiers: 33554432 + text: "3f" + autorep: false + count: 1 + } + Frame { + msec: 4848 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4864 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4880 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4896 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4912 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4928 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4944 + hash: "a616e994d83964ff75d95b702f355937" + } + Key { + type: 7 + key: 63 + modifiers: 33554432 + text: "3f" + autorep: false + count: 1 + } + Frame { + msec: 4960 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4976 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4992 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5008 + hash: "a616e994d83964ff75d95b702f355937" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 5024 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5040 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5056 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5072 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5088 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5104 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5120 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5136 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5152 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5168 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5184 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5200 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5216 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5232 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5248 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5264 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5280 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5296 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5312 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5328 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5344 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5360 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5376 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5392 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5408 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5424 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5440 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5456 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5472 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5488 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5504 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5520 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5536 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5552 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5568 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5584 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5600 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5616 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5632 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5648 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5664 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5680 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5696 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5712 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5728 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5744 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5760 + image: "usingMultilineEdit.5.png" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 48; y: 19 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5776 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Frame { + msec: 5792 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Frame { + msec: 5808 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Frame { + msec: 5824 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: 21 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: 22 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5840 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: 23 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: 26 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5856 + hash: "3ee2836c3a2ff4c71d82dd261941883b" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 53; y: 31 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 33 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5872 + hash: "3ee2836c3a2ff4c71d82dd261941883b" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 36 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 56; y: 41 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5888 + hash: "3ee2836c3a2ff4c71d82dd261941883b" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 56; y: 44 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5904 + hash: "4e620c1b847274f691e80a384eac5320" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 58; y: 52 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 58 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5920 + hash: "1a246aa1be0878c38da2eaac6befb738" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 64 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 69 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5936 + hash: "7d6d4a33aacd1d2f530834af31069793" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 62; y: 75 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 80 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5952 + hash: "eba517141a4dc94025801fabc8c5e813" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 86 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 90 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5968 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 97 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5984 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 101 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 105 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6000 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 108 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 111 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6016 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 114 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 116 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6032 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 119 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 122 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6048 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 124 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 128 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6064 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 130 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 132 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6080 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 134 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 137 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6096 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 138 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 140 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6112 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 141 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 144 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6128 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 145 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 148 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6144 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 149 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 151 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6160 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 153 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 154 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6176 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 155 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6192 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6208 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6224 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6240 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6256 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 154 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6272 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 152 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 149 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6288 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 145 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 139 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6304 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 126 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 117 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6320 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 108 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 63; y: 98 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6336 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 88 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 80 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6352 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 72 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 64 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6368 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 58 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 51 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6384 + hash: "b6589493e0225846be0af57024e25d98" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 37 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6400 + hash: "b6589493e0225846be0af57024e25d98" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 30 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 23 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6416 + hash: "d8a1bee2a0e57944d8268a2ce7e6c3c1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 16 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 6 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6432 + hash: "a609d3c9cb375240e66dd316af27543c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -2 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -9 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6448 + hash: "0d376060ba0f9843ed814a8d8150d047" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 48; y: -23 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6464 + hash: "9ad787bf41f0ab66beffff056a115c23" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -31 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -38 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6480 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -45 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6496 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6512 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6528 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6544 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6560 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6576 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6592 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6608 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6624 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6640 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6656 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6672 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -47 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -46 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6688 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -45 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 44; y: -42 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6704 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 44; y: -39 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -36 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6720 + image: "usingMultilineEdit.6.png" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -33 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 46; y: -28 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6736 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -25 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -21 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6752 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 48; y: -18 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: -14 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6768 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: -10 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -8 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6784 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -6 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: -3 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6800 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: -1 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 0 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6816 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 2 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 3 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6832 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 53; y: 5 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 7 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6848 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 8 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 10 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6864 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 11 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 12 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6880 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 55; y: 12 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6896 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6912 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6928 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6944 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6960 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6976 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6992 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7008 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7024 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7040 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7056 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7072 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7088 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 59; y: 44 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 7104 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7120 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7136 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7152 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7168 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 59; y: 44 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 7184 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7200 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7216 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7232 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7248 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7264 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7280 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7296 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7312 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7328 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7344 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7360 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7376 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7392 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7408 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7424 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7440 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7456 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7472 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7488 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7504 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7520 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7536 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7552 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7568 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7584 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7600 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7616 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7632 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7648 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7664 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7680 + image: "usingMultilineEdit.7.png" + } + Frame { + msec: 7696 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7712 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7728 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7744 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7760 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7776 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7792 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7808 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7824 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7840 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7856 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7872 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7888 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7904 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7920 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7936 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7952 + hash: "d1f43fa2f710725527736ac3439577df" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 7968 + hash: "1553d42725394fa4d4c9b97dc12a78b9" + } + Frame { + msec: 7984 + hash: "1553d42725394fa4d4c9b97dc12a78b9" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8000 + hash: "a62df700f3209668a813e765a79e7859" + } + Frame { + msec: 8016 + hash: "a62df700f3209668a813e765a79e7859" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8032 + hash: "e8928770969b82523e828e3036bbe106" + } + Frame { + msec: 8048 + hash: "e8928770969b82523e828e3036bbe106" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8064 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8080 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Key { + type: 6 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Key { + type: 7 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8096 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8112 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8128 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8144 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8160 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8176 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8192 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8208 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8224 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8240 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8256 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8272 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8288 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8304 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8320 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8336 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8352 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8368 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8384 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8400 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8416 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8432 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8448 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8464 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8480 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8496 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8512 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8528 + hash: "b65c439a091d3293352de410d28aaca1" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8544 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8560 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8576 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8592 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8608 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8624 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8640 + image: "usingMultilineEdit.8.png" + } + Frame { + msec: 8656 + hash: "b65c439a091d3293352de410d28aaca1" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8672 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8688 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8704 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8720 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8736 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8752 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8768 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8784 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8800 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8816 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8832 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8848 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8864 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8880 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8896 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8912 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8928 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8944 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8960 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8976 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8992 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9008 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9024 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9040 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9056 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9072 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9088 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9104 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9120 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9136 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9152 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9168 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9184 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9200 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 70; y: 73 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9216 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9232 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 74 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9248 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 75 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 76 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9264 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 77 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 78 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9280 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 70; y: 78 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9296 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9312 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9328 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9344 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9360 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9376 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9392 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9408 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9424 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9440 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 71; y: 94 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9456 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9472 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9488 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9504 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9520 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9536 + hash: "3d08eff16edf54f522a75df1734150df" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 71; y: 94 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9552 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9568 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9584 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9600 + image: "usingMultilineEdit.9.png" + } + Frame { + msec: 9616 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9632 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9648 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9664 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 6 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 9680 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9696 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9712 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9728 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9744 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9760 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9776 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9792 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9808 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9824 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9840 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9856 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9872 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9888 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9904 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9920 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9936 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9952 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9968 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9984 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10000 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10016 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10032 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10048 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10064 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10080 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10096 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 6 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10112 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10128 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10144 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10160 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10176 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10192 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10208 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10224 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Key { + type: 7 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10240 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10256 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10272 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10288 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10304 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10320 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10336 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10352 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10368 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10384 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10400 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10416 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10432 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10448 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10464 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10480 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10496 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10512 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10528 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10544 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10560 + image: "usingMultilineEdit.10.png" + } + Frame { + msec: 10576 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10592 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10608 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10624 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10640 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10656 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10672 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10688 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10704 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10720 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10736 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10752 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10768 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10784 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10800 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10816 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10832 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10848 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10864 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10880 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10896 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10912 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10928 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10944 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10960 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10976 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10992 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11008 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11024 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11040 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11056 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11072 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11088 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11104 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11120 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11136 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11152 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11168 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11184 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11200 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11216 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11232 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11248 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11264 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11280 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11296 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11312 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11328 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11344 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11360 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11376 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11392 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11408 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11424 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11440 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11456 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11472 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11488 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11504 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11520 + image: "usingMultilineEdit.11.png" + } + Frame { + msec: 11536 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11552 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11568 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11584 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11600 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11616 + hash: "3d08eff16edf54f522a75df1734150df" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml index b5bb102..5f80234 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml @@ -1,17 +1,17 @@ import QtQuick 1.0 +import "../shared" 1.0 Rectangle { Component { id: testableCursor - //Doesn't blink + //This shouldn't blink Rectangle { color:"black" width:1 } } - color: "green" - width:400; + width:300; height:40; - TextEdit { + TestTextEdit { focus: true; cursorDelegate: testableCursor text: "Jackdaws love my big sphinx of Quartz" diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml index 4cf7e97..bf5e7a0 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml @@ -1,13 +1,14 @@ import QtQuick 1.0 Rectangle{ - width: 600 - height: 200 - Column{ - MultilineEdit{ + width: 280 + height: 140 + Column { + MultilineEdit { text: 'I am the very model of a modern major general. I\'ve information vegetable, animal and mineral. I know the kings of england and I quote the fights historical - from Marathon to Waterloo in order categorical.'; width: 182; height: 60; } - MultilineEdit{text: 'Hello world'} + Rectangle {height: 20; width: 20;}//Spacer + MultilineEdit {text: 'Hello world'} } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml index 4afe417..63400f1 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml @@ -1,30 +1,31 @@ import QtQuick 1.0 +import "../shared" 1.0 Item { height:400 width: 200 - TextEdit { + TestTextEdit { width: 200 height: 100 wrapMode: TextEdit.WordWrap focus: true } //With QTBUG-6273 only the bottom one would be wrapped - TextEdit { + TestTextEdit { width: 200 height: 100 wrapMode: TextEdit.WordWrap text: "This is a test that text edit wraps correctly." y:100 } - TextEdit { + TestTextEdit { width: 150 height: 100 wrapMode: TextEdit.WrapAnywhere text: "This is a test that text edit wraps correctly. thisisaverylongstringwithnospaces" y:200 } - TextEdit { + TestTextEdit { width: 150 height: 100 wrapMode: TextEdit.Wrap |