diff --git a/Telegram-iOS.xcworkspace/contents.xcworkspacedata b/Telegram-iOS.xcworkspace/contents.xcworkspacedata
index 72d25624a6..aa7553d192 100644
--- a/Telegram-iOS.xcworkspace/contents.xcworkspacedata
+++ b/Telegram-iOS.xcworkspace/contents.xcworkspacedata
@@ -28,6 +28,9 @@
+
+
0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"arm left","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":67.738,"s":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[13.921,-11.416],[14.478,-13.108],[12.786,-13.665],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}],"e":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[12.733,-14.666],[13.29,-16.358],[11.599,-16.915],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":84.673,"s":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[12.733,-14.666],[13.29,-16.358],[11.599,-16.915],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}],"e":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[13.921,-11.416],[14.478,-13.108],[12.786,-13.665],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}]},{"t":101.607009887695}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[2,-6.969],"ix":2},"a":{"a":0,"k":[2,-9.969],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":67.738,"s":[90],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":84.673,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":88.059,"s":[0],"e":[90]},{"t":101.607009887695}],"ix":6,"x":"var $bm_rt;\nvar easingPreset = [\n [\n 3,\n 4,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 1,\n 2,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ]\n ];\nfunction easingMaker() {\n var t, d, newProgress, sX, eX, sY, eY, sZ, eZ, val1, val2, val2, val3;\n var n = 0;\n if (numKeys > 0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"arm right","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":81.286,"s":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.234,8.474],[-12.881,15.048],[-12.586,16.888],[-12.411,16.996],[-10.746,16.594],[-5.964,9.747],[-0.006,4.393]],"c":true}],"e":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.297,6.224],[-12.443,12.673],[-12.148,14.513],[-11.974,14.621],[-10.309,14.219],[-6.026,7.497],[-0.006,4.393]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":88.059,"s":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.297,6.224],[-12.443,12.673],[-12.148,14.513],[-11.974,14.621],[-10.309,14.219],[-6.026,7.497],[-0.006,4.393]],"c":true}],"e":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.234,8.474],[-12.881,15.048],[-12.586,16.888],[-12.411,16.996],[-10.746,16.594],[-5.964,9.747],[-0.006,4.393]],"c":true}]},{"t":101.607009887695}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":67.738,"s":[-30],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":84.673,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":88.059,"s":[0],"e":[-30]},{"t":101.607009887695}],"ix":6,"x":"var $bm_rt;\nvar easingPreset = [\n [\n 3,\n 4,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 1,\n 2,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ]\n ];\nfunction easingMaker() {\n var t, d, newProgress, sX, eX, sY, eY, sZ, eZ, val1, val2, val2, val3;\n var n = 0;\n if (numKeys > 0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"leg left","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":81.286,"s":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[5.97,9.514],[10.735,16.594],[12.399,16.996],[12.574,16.888],[12.869,15.048],[9.04,8.191],[3.587,0.078]],"c":true}],"e":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[6.345,7.764],[10.36,14.219],[12.024,14.621],[12.199,14.513],[12.494,12.673],[9.415,6.441],[3.587,0.078]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":88.059,"s":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[6.345,7.764],[10.36,14.219],[12.024,14.621],[12.199,14.513],[12.494,12.673],[9.415,6.441],[3.587,0.078]],"c":true}],"e":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[5.97,9.514],[10.735,16.594],[12.399,16.996],[12.574,16.888],[12.869,15.048],[9.04,8.191],[3.587,0.078]],"c":true}]},{"t":101.607009887695}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":67.738,"s":[30],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":84.673,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":88.059,"s":[0],"e":[30]},{"t":101.607009887695}],"ix":6,"x":"var $bm_rt;\nvar easingPreset = [\n [\n 3,\n 4,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 1,\n 2,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 2,\n 3,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ]\n ];\nfunction easingMaker() {\n var t, d, newProgress, sX, eX, sY, eY, sZ, eZ, val1, val2, val2, val3;\n var n = 0;\n if (numKeys > 0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"leg right","np":2,"cix":2,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.551,0.153],[0,0],[0,0],[-3.568,0.081],[0,0],[0,0]],"o":[[-0.548,0.165],[0,0],[0,0],[0,0],[3.568,-0.081],[0,0],[0.001,-0.048]],"v":[[1.526,-11.742],[-1.779,-11.724],[-3.864,-8.282],[-3.606,0.078],[-0.006,4.393],[3.587,0.078],[4.117,-8.282]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"body","np":3,"cix":2,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":67.7380065917969,"op":101.607009887695,"st":67.7380065917969,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[100,100,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[400,400,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.083,-0.067],[-0.067,2.085],[2.085,0.067],[0.068,-2.084]],"o":[[2.084,0.068],[0.067,-2.084],[-2.083,-0.068],[-0.067,2.085]],"v":[[-0.123,3.772],[3.774,0.12],[0.122,-3.773],[-3.774,-0.124]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-14.438],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"head","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":33.869,"s":[{"i":[[0.717,2.38],[0,0],[0,0],[0.313,-0.621],[-0.53,-0.458],[0,0],[-0.011,0.063]],"o":[[0,0],[0,0],[-0.545,-0.365],[-0.314,0.621],[0,0],[0,0],[2.396,0.532]],"v":[[-0.717,-11.599],[-7.06,-13.364],[-13.286,-13.415],[-14.978,-12.858],[-14.421,-11.166],[-8.351,-10.775],[-3.864,-8.282]],"c":true}],"e":[{"i":[[0.717,2.38],[0,0],[0,0],[0.313,-0.621],[-0.53,-0.458],[0,0],[-0.011,0.063]],"o":[[0,0],[0,0],[-0.545,-0.365],[-0.314,0.621],[0,0],[0,0],[2.396,0.532]],"v":[[-0.717,-11.599],[-7.06,-13.364],[-11.599,-16.915],[-13.29,-16.358],[-12.733,-14.666],[-8.351,-10.775],[-3.864,-8.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":50.804,"s":[{"i":[[0.717,2.38],[0,0],[0,0],[0.313,-0.621],[-0.53,-0.458],[0,0],[-0.011,0.063]],"o":[[0,0],[0,0],[-0.545,-0.365],[-0.314,0.621],[0,0],[0,0],[2.396,0.532]],"v":[[-0.717,-11.599],[-7.06,-13.364],[-11.599,-16.915],[-13.29,-16.358],[-12.733,-14.666],[-8.351,-10.775],[-3.864,-8.282]],"c":true}],"e":[{"i":[[0.717,2.38],[0,0],[0,0],[0.313,-0.621],[-0.53,-0.458],[0,0],[-0.011,0.063]],"o":[[0,0],[0,0],[-0.545,-0.365],[-0.314,0.621],[0,0],[0,0],[2.396,0.532]],"v":[[-0.717,-11.599],[-7.06,-13.364],[-13.286,-13.415],[-14.978,-12.858],[-14.421,-11.166],[-8.351,-10.775],[-3.864,-8.282]],"c":true}]},{"t":67.7380065917969}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-2.188,-6.875],"ix":2},"a":{"a":0,"k":[-2.188,-9.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":33.869,"s":[-90],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":50.804,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":54.19,"s":[0],"e":[-90]},{"t":67.7380065917969}],"ix":6,"x":"var $bm_rt;\nvar easingPreset = [\n [\n 3,\n 4,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 1,\n 2,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ]\n ];\nfunction easingMaker() {\n var t, d, newProgress, sX, eX, sY, eY, sZ, eZ, val1, val2, val2, val3;\n var n = 0;\n if (numKeys > 0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"arm left","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":33.869,"s":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[13.921,-11.416],[14.478,-13.108],[12.786,-13.665],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}],"e":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[12.733,-14.666],[13.29,-16.358],[11.599,-16.915],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":50.804,"s":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[12.733,-14.666],[13.29,-16.358],[11.599,-16.915],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}],"e":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[13.921,-11.416],[14.478,-13.108],[12.786,-13.665],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}]},{"t":67.7380065917969}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[2,-6.969],"ix":2},"a":{"a":0,"k":[2,-9.969],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":33.869,"s":[90],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":50.804,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":54.19,"s":[0],"e":[90]},{"t":67.7380065917969}],"ix":6,"x":"var $bm_rt;\nvar easingPreset = [\n [\n 3,\n 4,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 1,\n 2,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ]\n ];\nfunction easingMaker() {\n var t, d, newProgress, sX, eX, sY, eY, sZ, eZ, val1, val2, val2, val3;\n var n = 0;\n if (numKeys > 0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"arm right","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":47.417,"s":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.234,8.474],[-12.881,15.048],[-12.586,16.888],[-12.411,16.996],[-10.746,16.594],[-5.964,9.747],[-0.006,4.393]],"c":true}],"e":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.297,6.224],[-12.443,12.673],[-12.148,14.513],[-11.974,14.621],[-10.309,14.219],[-6.026,7.497],[-0.006,4.393]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":54.19,"s":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.297,6.224],[-12.443,12.673],[-12.148,14.513],[-11.974,14.621],[-10.309,14.219],[-6.026,7.497],[-0.006,4.393]],"c":true}],"e":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.234,8.474],[-12.881,15.048],[-12.586,16.888],[-12.411,16.996],[-10.746,16.594],[-5.964,9.747],[-0.006,4.393]],"c":true}]},{"t":67.7380065917969}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":33.869,"s":[-30],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":50.804,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":54.19,"s":[0],"e":[-30]},{"t":67.7380065917969}],"ix":6,"x":"var $bm_rt;\nvar easingPreset = [\n [\n 3,\n 4,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 1,\n 2,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ]\n ];\nfunction easingMaker() {\n var t, d, newProgress, sX, eX, sY, eY, sZ, eZ, val1, val2, val2, val3;\n var n = 0;\n if (numKeys > 0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"leg left","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":47.417,"s":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[5.97,9.514],[10.735,16.594],[12.399,16.996],[12.574,16.888],[12.869,15.048],[9.04,8.191],[3.587,0.078]],"c":true}],"e":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[6.345,7.764],[10.36,14.219],[12.024,14.621],[12.199,14.513],[12.494,12.673],[9.415,6.441],[3.587,0.078]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":54.19,"s":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[6.345,7.764],[10.36,14.219],[12.024,14.621],[12.199,14.513],[12.494,12.673],[9.415,6.441],[3.587,0.078]],"c":true}],"e":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[5.97,9.514],[10.735,16.594],[12.399,16.996],[12.574,16.888],[12.869,15.048],[9.04,8.191],[3.587,0.078]],"c":true}]},{"t":67.7380065917969}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":33.869,"s":[30],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":50.804,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":54.19,"s":[0],"e":[30]},{"t":67.7380065917969}],"ix":6,"x":"var $bm_rt;\nvar easingPreset = [\n [\n 3,\n 4,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 1,\n 2,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 2,\n 3,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ]\n ];\nfunction easingMaker() {\n var t, d, newProgress, sX, eX, sY, eY, sZ, eZ, val1, val2, val2, val3;\n var n = 0;\n if (numKeys > 0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"leg right","np":2,"cix":2,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.551,0.153],[0,0],[0,0],[-3.568,0.081],[0,0],[0,0]],"o":[[-0.548,0.165],[0,0],[0,0],[0,0],[3.568,-0.081],[0,0],[0.001,-0.048]],"v":[[1.526,-11.742],[-1.779,-11.724],[-3.864,-8.282],[-3.606,0.078],[-0.006,4.393],[3.587,0.078],[4.117,-8.282]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"body","np":3,"cix":2,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":33.8690032958984,"op":67.7380065917969,"st":33.8690032958984,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[100,100,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[400,400,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.083,-0.067],[-0.067,2.085],[2.085,0.067],[0.068,-2.084]],"o":[[2.084,0.068],[0.067,-2.084],[-2.083,-0.068],[-0.067,2.085]],"v":[[-0.123,3.772],[3.774,0.12],[0.122,-3.773],[-3.774,-0.124]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-14.438],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"head","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0.717,2.38],[0,0],[0,0],[0.313,-0.621],[-0.53,-0.458],[0,0],[-0.011,0.063]],"o":[[0,0],[0,0],[-0.545,-0.365],[-0.314,0.621],[0,0],[0,0],[2.396,0.532]],"v":[[-0.717,-11.599],[-7.06,-13.364],[-13.286,-13.415],[-14.978,-12.858],[-14.421,-11.166],[-8.351,-10.775],[-3.864,-8.282]],"c":true}],"e":[{"i":[[0.717,2.38],[0,0],[0,0],[0.313,-0.621],[-0.53,-0.458],[0,0],[-0.011,0.063]],"o":[[0,0],[0,0],[-0.545,-0.365],[-0.314,0.621],[0,0],[0,0],[2.396,0.532]],"v":[[-0.717,-11.599],[-7.06,-13.364],[-11.599,-16.915],[-13.29,-16.358],[-12.733,-14.666],[-8.351,-10.775],[-3.864,-8.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16.935,"s":[{"i":[[0.717,2.38],[0,0],[0,0],[0.313,-0.621],[-0.53,-0.458],[0,0],[-0.011,0.063]],"o":[[0,0],[0,0],[-0.545,-0.365],[-0.314,0.621],[0,0],[0,0],[2.396,0.532]],"v":[[-0.717,-11.599],[-7.06,-13.364],[-11.599,-16.915],[-13.29,-16.358],[-12.733,-14.666],[-8.351,-10.775],[-3.864,-8.282]],"c":true}],"e":[{"i":[[0.717,2.38],[0,0],[0,0],[0.313,-0.621],[-0.53,-0.458],[0,0],[-0.011,0.063]],"o":[[0,0],[0,0],[-0.545,-0.365],[-0.314,0.621],[0,0],[0,0],[2.396,0.532]],"v":[[-0.717,-11.599],[-7.06,-13.364],[-13.286,-13.415],[-14.978,-12.858],[-14.421,-11.166],[-8.351,-10.775],[-3.864,-8.282]],"c":true}]},{"t":33.8690032958984}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-2.188,-6.875],"ix":2},"a":{"a":0,"k":[-2.188,-9.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[-90],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":16.935,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":20.321,"s":[0],"e":[-90]},{"t":33.8690032958984}],"ix":6,"x":"var $bm_rt;\nvar easingPreset = [\n [\n 3,\n 4,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 1,\n 2,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ]\n ];\nfunction easingMaker() {\n var t, d, newProgress, sX, eX, sY, eY, sZ, eZ, val1, val2, val2, val3;\n var n = 0;\n if (numKeys > 0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"arm left","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[13.921,-11.416],[14.478,-13.108],[12.786,-13.665],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}],"e":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[12.733,-14.666],[13.29,-16.358],[11.599,-16.915],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16.935,"s":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[12.733,-14.666],[13.29,-16.358],[11.599,-16.915],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}],"e":[{"i":[[0,0],[0,0],[0.314,0.621],[0.573,-0.371],[0,0],[-0.026,0.054],[-2.461,0.5]],"o":[[0,0],[0.607,-0.463],[-0.313,-0.621],[0,0],[0,0],[-1.183,2.773],[0.008,0]],"v":[[8.035,-10.775],[13.921,-11.416],[14.478,-13.108],[12.786,-13.665],[6.745,-13.364],[0.964,-11.617],[4.117,-8.282]],"c":true}]},{"t":33.8690032958984}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[2,-6.969],"ix":2},"a":{"a":0,"k":[2,-9.969],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[90],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":16.935,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":20.321,"s":[0],"e":[90]},{"t":33.8690032958984}],"ix":6,"x":"var $bm_rt;\nvar easingPreset = [\n [\n 3,\n 4,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 1,\n 2,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ]\n ];\nfunction easingMaker() {\n var t, d, newProgress, sX, eX, sY, eY, sZ, eZ, val1, val2, val2, val3;\n var n = 0;\n if (numKeys > 0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"arm right","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":13.548,"s":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.234,8.474],[-12.881,15.048],[-12.586,16.888],[-12.411,16.996],[-10.746,16.594],[-5.964,9.747],[-0.006,4.393]],"c":true}],"e":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.297,6.224],[-12.443,12.673],[-12.148,14.513],[-11.974,14.621],[-10.309,14.219],[-6.026,7.497],[-0.006,4.393]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20.321,"s":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.297,6.224],[-12.443,12.673],[-12.148,14.513],[-11.974,14.621],[-10.309,14.219],[-6.026,7.497],[-0.006,4.393]],"c":true}],"e":[{"i":[[3.419,-0.047],[0,0],[0,0],[-0.589,-0.426],[-0.061,-0.031],[-0.387,0.532],[0,0],[0.006,-0.049]],"o":[[0.013,-0.047],[0,0],[-0.427,0.589],[0.056,0.041],[0.568,0.29],[0,0],[0,0],[0.975,-3.393]],"v":[[-3.606,0.078],[-9.234,8.474],[-12.881,15.048],[-12.586,16.888],[-12.411,16.996],[-10.746,16.594],[-5.964,9.747],[-0.006,4.393]],"c":true}]},{"t":33.8690032958984}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[-30],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":16.935,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":20.321,"s":[0],"e":[-30]},{"t":33.8690032958984}],"ix":6,"x":"var $bm_rt;\nvar easingPreset = [\n [\n 3,\n 4,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 1,\n 2,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ]\n ];\nfunction easingMaker() {\n var t, d, newProgress, sX, eX, sY, eY, sZ, eZ, val1, val2, val2, val3;\n var n = 0;\n if (numKeys > 0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"leg left","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":13.548,"s":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[5.97,9.514],[10.735,16.594],[12.399,16.996],[12.574,16.888],[12.869,15.048],[9.04,8.191],[3.587,0.078]],"c":true}],"e":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[6.345,7.764],[10.36,14.219],[12.024,14.621],[12.199,14.513],[12.494,12.673],[9.415,6.441],[3.587,0.078]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20.321,"s":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[6.345,7.764],[10.36,14.219],[12.024,14.621],[12.199,14.513],[12.494,12.673],[9.415,6.441],[3.587,0.078]],"c":true}],"e":[{"i":[[-1.494,-2.799],[0,0],[0,0],[-0.568,0.29],[-0.056,0.041],[0.427,0.589],[0,0],[0.007,0.016]],"o":[[-0.025,-0.018],[0,0],[0.385,0.532],[0.061,-0.031],[0.589,-0.426],[0,0],[0,0],[-3.118,-0.234]],"v":[[-0.006,4.393],[5.97,9.514],[10.735,16.594],[12.399,16.996],[12.574,16.888],[12.869,15.048],[9.04,8.191],[3.587,0.078]],"c":true}]},{"t":33.8690032958984}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[30],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":16.935,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":20.321,"s":[0],"e":[30]},{"t":33.8690032958984}],"ix":6,"x":"var $bm_rt;\nvar easingPreset = [\n [\n 3,\n 4,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 1,\n 2,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ],\n [\n 2,\n 3,\n [\n 'make_bezier_easing',\n [\n 0.25,\n 0.46,\n 0.45,\n 1\n ],\n 'Glide.Out',\n false\n ]\n ]\n ];\nfunction easingMaker() {\n var t, d, newProgress, sX, eX, sY, eY, sZ, eZ, val1, val2, val2, val3;\n var n = 0;\n if (numKeys > 0) {\n n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n try {\n var key1 = key(n);\n var key2 = key(sum(n, 1));\n } catch (e) {\n return null;\n }\n var dim = 1;\n try {\n key(1)[1];\n dim = 2;\n key(1)[2];\n dim = 3;\n } catch (e) {\n }\n var expression = null;\n for (var i = 0; i < easingPreset.length; ++i) {\n if (easingPreset[i][0] <= n && easingPreset[i][1] >= n + 1) {\n var expression = eval([easingPreset[i][2][0]][0]);\n try {\n expression = expression.apply({}, easingPreset[i][2][1].concat(easingPreset[i][2][3]));\n } catch (e) {\n expression = expression.apply({}, easingPreset[i][2][1]);\n }\n break;\n }\n }\n if (!expression)\n return null;\n t = sub(time, key1.time);\n d = sub(key2.time, key1.time);\n if (expression.hasOwnProperty('curviosity') && expression.curviosity) {\n newProgress = expression.executeProgress(div(t, d));\n return thisProperty.valueAtTime(sum(key1.time, mul(d, newProgress)));\n }\n sX = key1[0];\n eX = sub(key2[0], key1[0]);\n if (dim >= 2) {\n sY = key1[1];\n eY = sub(key2[1], key1[1]);\n if (dim >= 3) {\n sZ = key1[2];\n eZ = sub(key2[2], key1[2]);\n }\n }\n if (time < key1.time || time > key2.time) {\n return value;\n } else {\n val1 = expression.execute(t, sX, eX, d);\n switch (dim) {\n case 1:\n return val1;\n case 2:\n val2 = expression.execute(t, sY, eY, d);\n return [\n val1,\n val2\n ];\n case 3:\n val2 = expression.execute(t, sY, eY, d);\n val3 = expression.execute(t, sZ, eZ, d);\n return [\n val1,\n val2,\n val3\n ];\n default:\n return null;\n }\n }\n}\n$bm_rt = easingMaker() || value;\nfunction sampleCurveY(t) {\n return mul(sum(mul(sum(mul(this.ay, t), this.by), t), this.cy), t);\n}\nfunction sampleCurveX(t) {\n return mul(sum(mul(sum(mul(this.ax, t), this.bx), t), this.cx), t);\n}\nfunction sampleCurveDerivativeX(t) {\n return sum(mul(sum(mul(mul(3, this.ax), t), mul(2, this.bx)), t), this.cx);\n}\nfunction solveCurveX(x, epsilon) {\n var t2, i, x2, d2, t0, t1;\n for (t2 = x, i = 0; i < 8; i++) {\n x2 = sub(sampleCurveX.call(this, t2), x);\n if (Math.abs(x2) < epsilon)\n return t2;\n d2 = sampleCurveDerivativeX.call(this, t2);\n if (Math.abs(d2) < 0.000001)\n break;\n t2 = sub(t2, div(x2, d2));\n }\n t0 = 0;\n t1 = 1;\n t2 = x;\n if (t2 < t0)\n return t0;\n if (t2 > t1)\n return t1;\n while (t0 < t1) {\n x2 = sampleCurveX.call(this, t2);\n if (Math.abs(x2 - x) < epsilon)\n return t2;\n if (x > x2)\n t0 = t2;\n else\n t1 = t2;\n t2 = sum(mul(sub(t1, t0), 0.5), t0);\n }\n return t2;\n}\nfunction executeBezier(t, b, e, d) {\n return sum(b, mul(e, sampleCurveY.call(this, solveCurveX.call(this, div(t, d), div(1, mul(200, d))))));\n}\nfunction executeBezierProgress(oldProgress) {\n return sampleCurveY.call(this, solveCurveX.call(this, oldProgress, 1 / 200));\n}\nfunction make_bezier_easing(p1x, p1y, p2x, p2y, curviosity) {\n this.cx = mul(3, p1x);\n this.bx = sub(mul(3, sub(p2x, p1x)), this.cx);\n this.ax = sub(sub(1, this.cx), this.bx);\n this.cy = mul(3, p1y);\n this.by = sub(mul(3, sub(p2y, p1y)), this.cy);\n this.ay = sub(sub(1, this.cy), this.by);\n this.curviosity = curviosity;\n this.execute = executeBezier;\n this.executeProgress = executeBezierProgress;\n return this;\n}\nfunction executeElasticIn(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum($bm_neg(mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n}\nfunction executeElasticOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d) === 1)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n return sum(sum(mul(mul(a, Math.pow(2, mul(-10, t))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), c), b);\n}\nfunction executeElasticInOut(t, b, c, d) {\n var s = 1.70158;\n var p = 0;\n var a = c;\n if (t === 0)\n return b;\n if ((t /= d / 2) === 2)\n return sum(b, c);\n if (!p)\n p = mul(d, 0.3 * 1.5);\n if (a < Math.abs(c)) {\n a = c;\n s = div(p, 4);\n } else\n s = mul(div(p, mul(2, Math.PI)), Math.asin(1));\n if (t < 1)\n return sum(mul(-0.5, mul(mul(a, Math.pow(2, mul(10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p)))), b);\n return sum(sum(mul(mul(mul(a, Math.pow(2, mul(-10, t -= 1))), Math.sin(div(mul(sub(mul(t, d), s), mul(2, Math.PI)), p))), 0.5), c), b);\n}\nfunction executeElasticInProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : -Math.pow(2, 10 * Progress - 10) * Math.sin((Progress * 10 - 10.75) * (2 * Math.PI / 3));\n}\nfunction executeElasticOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Math.pow(2, -10 * Progress) * Math.sin((Progress * 10 - 0.75) * (2 * Math.PI / 3)) + 1;\n}\nfunction executeElasticInOutProgress(Progress) {\n return Progress === 0 ? 0 : Progress === 1 ? 1 : Progress < 0.5 ? -(Math.pow(2, 20 * Progress - 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5))) / 2 : Math.pow(2, -20 * Progress + 10) * Math.sin((20 * Progress - 11.125) * (2 * Math.PI / 4.5)) / 2 + 1;\n}\nfunction make_elastic_easing_in(curviosity) {\n this.execute = executeElasticIn;\n this.executeProgress = executeElasticInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_out(curviosity) {\n this.execute = executeElasticOut;\n this.executeProgress = executeElasticOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_elastic_easing_in_out(curviosity) {\n this.execute = executeElasticInOut;\n this.executeProgress = executeElasticInOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction executeBounceIn(t, b, c, d) {\n return sum(sub(c, executeBounceOut(sub(d, t), 0, c, d)), b);\n}\nfunction executeBounceOut(t, b, c, d) {\n if ((t /= d) < 1 / 2.75) {\n return sum(mul(c, mul(mul(7.5625, t), t)), b);\n } else if (t < 2 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 1.5 / 2.75), t), 0.75)), b);\n } else if (t < 2.5 / 2.75) {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.25 / 2.75), t), 0.9375)), b);\n } else {\n return sum(mul(c, sum(mul(mul(7.5625, t -= 2.625 / 2.75), t), 0.984375)), b);\n }\n}\nfunction executeBounceInOut(t, b, c, d) {\n if (t < d / 2)\n return sum(mul(executeBounceIn(mul(t, 2), 0, c, d), 0.5), b);\n return sum(sum(mul(executeBounceOut(sub(mul(t, 2), d), 0, c, d), 0.5), mul(c, 0.5)), b);\n}\nfunction executeBounceInProgress(oldProgress) {\n return sub(1, executeBounceOut(sub(1, oldProgress)));\n}\nfunction executeBounceOutProgress(oldProgress) {\n if (oldProgress < 1 / 2.75) {\n return mul(mul(7.5625, oldProgress), oldProgress);\n } else if (oldProgress < 2 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 1.5 / 2.75), oldProgress), 0.75);\n } else if (oldProgress < 2.5 / 2.75) {\n return sum(mul(mul(7.5625, oldProgress -= 2.25 / 2.75), oldProgress), 0.9375);\n } else {\n return sum(mul(mul(7.5625, oldProgress -= 2.625 / 2.75), oldProgress), 0.984375);\n }\n}\nfunction executeBounceInOutProgress(oldProgress) {\n if (oldProgress < 1 / 2)\n return mul(executeBounceIn(mul(oldProgress, 2)), 0.5);\n return sum(mul(executeBounceOut(sub(mul(oldProgress, 2), 1)), 0.5), 0.5);\n}\nfunction make_bounce_easing_in(curviosity) {\n this.execute = executeBounceIn;\n this.executeProgress = executeBounceInProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_out(curviosity) {\n this.execute = executeBounceOut;\n this.executeProgress = executeBounceOutProgress;\n this.curviosity = curviosity;\n return this;\n}\nfunction make_bounce_easing_in_out(curviosity) {\n this.execute = executeBounceInOut;\n this.executeProgress = executeBounceInOutProgress;\n this.curviosity = curviosity;\n return this;\n}"},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"leg right","np":2,"cix":2,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.551,0.153],[0,0],[0,0],[-3.568,0.081],[0,0],[0,0]],"o":[[-0.548,0.165],[0,0],[0,0],[0,0],[3.568,-0.081],[0,0],[0.001,-0.048]],"v":[[1.526,-11.742],[-1.779,-11.724],[-3.864,-8.282],[-3.606,0.078],[-0.006,4.393],[3.587,0.078],[4.117,-8.282]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"body","np":3,"cix":2,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":33.8690032958984,"st":0,"bm":0}]},{"id":"comp_3","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[101.25,104.125,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[400,400,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.74,0.359],[0.357,1.738],[1.738,-0.356],[-0.354,-1.737]],"o":[[1.733,-0.354],[-0.355,-1.737],[-1.738,0.354],[0.357,1.737]],"v":[[0.647,3.143],[3.144,-0.646],[-0.645,-3.146],[-3.147,0.646]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.25,4.844],"ix":2},"a":{"a":0,"k":[6.5,17.969],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[30]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":16.935,"s":[30],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":42.336,"s":[0],"e":[30]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":59.271,"s":[30],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":84.673,"s":[0],"e":[30]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":96.527,"s":[30],"e":[0]},{"t":111.767710876465}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"head","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.145,-0.018],[0.306,-0.102],[-0.519,-1.549],[-0.175,-1.679],[-3.71,1.418],[0,0],[-0.004,0.004],[0,0],[0.369,1.397]],"o":[[-0.14,-0.014],[-0.313,0],[-1.549,0.52],[0.694,2.07],[0.146,0.847],[0,0],[0.003,-0.002],[0,0],[-0.506,-1.975],[0,0]],"v":[[-14.642,-8.556],[-15.072,-8.547],[-16.006,-8.398],[-17.872,-4.654],[-15.683,2.599],[-11.015,5.502],[-11.014,5.502],[-11.004,5.496],[-10.372,0.328],[-11.79,-5.252]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.266,4.844],"ix":2},"a":{"a":0,"k":[-11.266,4.844],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[30]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":16.935,"s":[30],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":42.336,"s":[0],"e":[30]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":59.271,"s":[30],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":84.673,"s":[0],"e":[30]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":96.527,"s":[30],"e":[0]},{"t":111.767710876465}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"body","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[2.615,0.41],[0.044,0.006],[0,0],[0.419,0.042],[0,0],[0.369,1.397],[0,0],[-0.201,0.143],[0,0]],"o":[[-0.03,-0.013],[0,0],[-0.132,-0.38],[0,0],[-0.14,-0.014],[0,0],[0.266,0.026],[0,0],[-1.733,0.917]],"v":[[14.448,-2.291],[14.337,-2.32],[-3.302,-6.104],[-4.195,-6.817],[-14.642,-8.556],[-11.79,-5.252],[-4.408,-4.707],[-3.691,-4.9],[11.048,-1.729]],"c":true}],"e":[{"i":[[2.142,0.411],[0.036,0.006],[0,0],[0.343,0.042],[0,0],[0.303,1.398],[0,0],[-0.165,0.143],[0,0]],"o":[[-0.025,-0.013],[0,0],[-0.108,-0.38],[0,0],[-0.114,-0.014],[0,0],[0.218,0.026],[0,0],[-1.419,0.916]],"v":[[14.921,-2.292],[14.831,-2.321],[0.384,-6.112],[-0.347,-6.825],[-8.903,-8.567],[-6.565,-5.262],[-0.52,-4.715],[0.067,-4.908],[12.138,-1.732]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16.935,"s":[{"i":[[2.142,0.411],[0.036,0.006],[0,0],[0.343,0.042],[0,0],[0.303,1.398],[0,0],[-0.165,0.143],[0,0]],"o":[[-0.025,-0.013],[0,0],[-0.108,-0.38],[0,0],[-0.114,-0.014],[0,0],[0.218,0.026],[0,0],[-1.419,0.916]],"v":[[14.921,-2.292],[14.831,-2.321],[0.384,-6.112],[-0.347,-6.825],[-8.903,-8.567],[-6.565,-5.262],[-0.52,-4.715],[0.067,-4.908],[12.138,-1.732]],"c":true}],"e":[{"i":[[2.615,0.41],[0.044,0.006],[0,0],[0.419,0.042],[0,0],[0.369,1.397],[0,0],[-0.201,0.143],[0,0]],"o":[[-0.03,-0.013],[0,0],[-0.132,-0.38],[0,0],[-0.14,-0.014],[0,0],[0.266,0.026],[0,0],[-1.733,0.917]],"v":[[14.448,-2.291],[14.337,-2.32],[-3.302,-6.104],[-4.195,-6.817],[-14.642,-8.556],[-11.79,-5.252],[-4.408,-4.707],[-3.691,-4.9],[11.048,-1.729]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":42.336,"s":[{"i":[[2.615,0.41],[0.044,0.006],[0,0],[0.419,0.042],[0,0],[0.369,1.397],[0,0],[-0.201,0.143],[0,0]],"o":[[-0.03,-0.013],[0,0],[-0.132,-0.38],[0,0],[-0.14,-0.014],[0,0],[0.266,0.026],[0,0],[-1.733,0.917]],"v":[[14.448,-2.291],[14.337,-2.32],[-3.302,-6.104],[-4.195,-6.817],[-14.642,-8.556],[-11.79,-5.252],[-4.408,-4.707],[-3.691,-4.9],[11.048,-1.729]],"c":true}],"e":[{"i":[[2.142,0.411],[0.036,0.006],[0,0],[0.343,0.042],[0,0],[0.303,1.398],[0,0],[-0.165,0.143],[0,0]],"o":[[-0.025,-0.013],[0,0],[-0.108,-0.38],[0,0],[-0.114,-0.014],[0,0],[0.218,0.026],[0,0],[-1.419,0.916]],"v":[[14.921,-2.292],[14.831,-2.321],[0.384,-6.112],[-0.347,-6.825],[-8.903,-8.567],[-6.565,-5.262],[-0.52,-4.715],[0.067,-4.908],[12.138,-1.732]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":59.271,"s":[{"i":[[2.142,0.411],[0.036,0.006],[0,0],[0.343,0.042],[0,0],[0.303,1.398],[0,0],[-0.165,0.143],[0,0]],"o":[[-0.025,-0.013],[0,0],[-0.108,-0.38],[0,0],[-0.114,-0.014],[0,0],[0.218,0.026],[0,0],[-1.419,0.916]],"v":[[14.921,-2.292],[14.831,-2.321],[0.384,-6.112],[-0.347,-6.825],[-8.903,-8.567],[-6.565,-5.262],[-0.52,-4.715],[0.067,-4.908],[12.138,-1.732]],"c":true}],"e":[{"i":[[2.615,0.41],[0.044,0.006],[0,0],[0.419,0.042],[0,0],[0.369,1.397],[0,0],[-0.201,0.143],[0,0]],"o":[[-0.03,-0.013],[0,0],[-0.132,-0.38],[0,0],[-0.14,-0.014],[0,0],[0.266,0.026],[0,0],[-1.733,0.917]],"v":[[14.448,-2.291],[14.337,-2.32],[-3.302,-6.104],[-4.195,-6.817],[-14.642,-8.556],[-11.79,-5.252],[-4.408,-4.707],[-3.691,-4.9],[11.048,-1.729]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":84.673,"s":[{"i":[[2.615,0.41],[0.044,0.006],[0,0],[0.419,0.042],[0,0],[0.369,1.397],[0,0],[-0.201,0.143],[0,0]],"o":[[-0.03,-0.013],[0,0],[-0.132,-0.38],[0,0],[-0.14,-0.014],[0,0],[0.266,0.026],[0,0],[-1.733,0.917]],"v":[[14.448,-2.291],[14.337,-2.32],[-3.302,-6.104],[-4.195,-6.817],[-14.642,-8.556],[-11.79,-5.252],[-4.408,-4.707],[-3.691,-4.9],[11.048,-1.729]],"c":true}],"e":[{"i":[[2.142,0.411],[0.036,0.006],[0,0],[0.343,0.042],[0,0],[0.303,1.398],[0,0],[-0.165,0.143],[0,0]],"o":[[-0.025,-0.013],[0,0],[-0.108,-0.38],[0,0],[-0.114,-0.014],[0,0],[0.218,0.026],[0,0],[-1.419,0.916]],"v":[[14.921,-2.292],[14.831,-2.321],[0.384,-6.112],[-0.347,-6.825],[-8.903,-8.567],[-6.565,-5.262],[-0.52,-4.715],[0.067,-4.908],[12.138,-1.732]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":96.527,"s":[{"i":[[2.142,0.411],[0.036,0.006],[0,0],[0.343,0.042],[0,0],[0.303,1.398],[0,0],[-0.165,0.143],[0,0]],"o":[[-0.025,-0.013],[0,0],[-0.108,-0.38],[0,0],[-0.114,-0.014],[0,0],[0.218,0.026],[0,0],[-1.419,0.916]],"v":[[14.921,-2.292],[14.831,-2.321],[0.384,-6.112],[-0.347,-6.825],[-8.903,-8.567],[-6.565,-5.262],[-0.52,-4.715],[0.067,-4.908],[12.138,-1.732]],"c":true}],"e":[{"i":[[2.615,0.41],[0.044,0.006],[0,0],[0.419,0.042],[0,0],[0.369,1.397],[0,0],[-0.201,0.143],[0,0]],"o":[[-0.03,-0.013],[0,0],[-0.132,-0.38],[0,0],[-0.14,-0.014],[0,0],[0.266,0.026],[0,0],[-1.733,0.917]],"v":[[14.448,-2.291],[14.337,-2.32],[-3.302,-6.104],[-4.195,-6.817],[-14.642,-8.556],[-11.79,-5.252],[-4.408,-4.707],[-3.691,-4.9],[11.048,-1.729]],"c":true}]},{"t":111.767710876465}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0.113,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"arm","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.71,1.418],[0,0],[-0.004,0.004],[0,0],[0,0],[-0.291,0.617],[0.617,0.289],[0,0],[0.512,-0.252],[0,0]],"o":[[0,0],[0.003,-0.002],[0,0],[0,0],[0.616,0.29],[0.29,-0.617],[0,0],[-0.515,-0.242],[0,0],[-0.506,-1.975]],"v":[[-11.015,5.502],[-11.014,5.502],[-11.004,5.496],[-3.568,1.344],[3.58,4.77],[5.222,4.178],[4.63,2.535],[-2.965,-2.291],[-4.588,-2.274],[-10.372,0.328]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"leg","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,2.914],[2.615,0.41],[0.044,0.006],[0,0],[0,-2.097],[-0.673,-0.908],[0,0],[0,-0.611],[-0.612,0],[0,0],[-0.006,0],[-0.006,0],[0,0],[-0.015,0.009]],"o":[[0,-2.729],[-0.03,-0.013],[0,0],[-1.733,0.917],[0,1.218],[0,0],[-0.612,0],[0,0.613],[0,0],[0,0],[0,0],[0,0],[0.059,0],[2.874,-0.162]],"v":[[19.065,3.104],[14.448,-2.291],[14.337,-2.32],[11.048,-1.729],[8.133,3.104],[9.208,6.351],[-17.956,6.351],[-19.065,7.459],[-17.956,8.568],[13.58,8.568],[13.599,8.569],[13.618,8.568],[13.808,8.568],[13.91,8.554]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[2.034,0],[0,2.034],[-2.034,0],[0,-2.034]],"o":[[-2.034,0],[0,-2.034],[2.034,0],[0,2.034]],"v":[[13.599,6.787],[9.916,3.104],[13.599,-0.58],[17.282,3.104]],"c":true},"ix":2},"nm":"circle","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"macine","np":3,"cix":2,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":338.690032958984,"st":0,"bm":0}]},{"id":"comp_4","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[100.539,100.996,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[400,400,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[1.473,-1.118],[-1.989,-1.65],[-1.284,0.567],[0.251,1.628]],"o":[[-1.342,-1.164],[-1.927,1.461],[1.08,0.896],[1.73,-0.764],[0,0]],"v":[[-11.176,-7.404],[-16.007,-7.559],[-16.101,-1.52],[-12.186,-0.974],[-9.898,-5.095]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[3.438,6.953],"ix":2},"a":{"a":0,"k":[3.438,6.953],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[25]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":11.854,"s":[25],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":27.095,"s":[0],"e":[25]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":38.949,"s":[25],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":54.19,"s":[0],"e":[25]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":66.045,"s":[25],"e":[0]},{"t":81.2856079101562}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"head","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0.409,0.451],[0.604,-0.063],[0,0],[0.251,1.628],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.215,-1.029],[-3.595,0],[0,0],[-1.66,1.26]],"o":[[0,0],[0,0],[0,0],[0.121,-0.596],[-0.409,-0.449],[0,0],[-1.342,-1.164],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.983,1.252],[2.743,2.324],[0,0],[2.084,0],[0,0]],"v":[[1.707,2.891],[-2.509,2.815],[-5.914,0.3],[-3.283,-6.308],[-3.714,-8.037],[-5.326,-8.653],[-11.176,-7.404],[-9.898,-5.095],[-6.652,-5.636],[-6.762,-5.477],[-6.747,-5.513],[-9.383,-1.929],[-11.629,1.03],[-11.216,5.116],[-1.402,8.716],[-1.002,8.716],[4.769,6.774]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[3.453,6.953],"ix":2},"a":{"a":0,"k":[3.453,6.953],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[25]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":11.854,"s":[25],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":27.095,"s":[0],"e":[25]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":38.949,"s":[25],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":54.19,"s":[0],"e":[25]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":66.045,"s":[25],"e":[0]},{"t":81.2856079101562}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"body top","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.73,0.716],[0,0],[1.121,-0.761],[0,0],[0,0],[0,0],[-1.66,1.26],[0,0],[0,0],[-0.883,0.883]],"o":[[0,0],[-0.961,-0.956],[0,0],[0,0],[0,0],[2.084,0],[0,0],[0,0],[0.341,0.247],[0.679,-0.678]],"v":[[17.34,5.004],[11.346,-1.059],[7.762,-1.394],[1.707,2.891],[-2.509,2.815],[0.06,6.434],[4.769,6.774],[9.442,2.983],[14.991,7.558],[17.412,7.557]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"body bottom","np":3,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":338.690032958984,"st":0,"bm":0}]},{"id":"comp_5","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[100,100,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[400,400,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.027,-1.297],[-1.295,2.036],[2.03,1.294],[1.295,-2.031]],"o":[[2.029,1.293],[1.292,-2.024],[-2.029,-1.297],[-1.298,2.028]],"v":[[-2.531,15.115],[3.49,13.779],[2.159,7.764],[-3.859,9.094]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[0,-3.063],"e":[0,-5.063],"to":[0,0],"ti":[0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":25.402,"s":[0,-5.063],"e":[0,-3.063],"to":[0,0],"ti":[0,0]},{"t":67.7380065917969}],"ix":2},"a":{"a":0,"k":[-0.188,20.375],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":67.738,"s":[0],"e":[35]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":101.607,"s":[35],"e":[-35]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":169.345,"s":[-35],"e":[0]},{"t":203.214019775391}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"head","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[1.024,0.29],[0,0],[-0.277,0.418],[0.714,0.476],[0,0],[0,0],[0.127,0.188],[2.398,0.001],[0,0],[0.529,-1.678],[0.058,-0.178],[0,0],[0,0],[-0.511,-0.763],[-0.319,-0.117],[0,0],[-0.182,-1.05],[-1.004,0],[-0.048,0.003],[0,0],[-0.039,0.005],[-3.297,-0.177],[0,0],[0,0],[-0.047,0],[-0.174,1.002]],"o":[[0,0],[0.465,-0.031],[0.478,-0.714],[0,0],[0,0],[-0.074,-0.227],[-0.58,-1.622],[0,0],[-2.451,0],[-0.091,0.155],[0,0],[0,0],[-0.764,0.509],[0.201,0.305],[0,0],[-1.026,0.29],[0.174,1.003],[0.047,0],[0,0],[0.041,-0.002],[0.33,-0.03],[0.006,0],[0,0],[0.048,0.003],[1.004,0],[0.183,-1.05]],"v":[[15.109,7.459],[13.649,7.047],[14.839,6.361],[14.409,4.207],[8.091,-0.689],[5.568,-8.097],[5.265,-8.719],[0.277,-11.541],[0.275,-11.541],[-4.753,-8.612],[-4.978,-8.113],[-7.582,-0.54],[-13.894,4.078],[-14.353,6.38],[-13.545,7.017],[-15.108,7.459],[-16.593,9.816],[-14.545,11.541],[-14.403,11.536],[-2.768,10.742],[-2.647,10.728],[2.75,10.741],[2.761,10.742],[14.401,11.536],[14.544,11.541],[16.592,9.816]],"c":true}],"e":[{"i":[[1.024,0.29],[0,0],[-0.277,0.418],[0.714,0.476],[0,0],[0,0],[0.127,0.188],[2.398,0.001],[0,0],[0.529,-1.678],[0.058,-0.178],[0,0],[0,0],[-0.511,-0.763],[-0.319,-0.117],[0,0],[-0.182,-1.05],[-1.004,0],[-0.048,0.003],[0,0],[-0.039,0.005],[-3.297,-0.177],[0,0],[0,0],[-0.047,0],[-0.174,1.002]],"o":[[0,0],[0.465,-0.031],[0.478,-0.714],[0,0],[0,0],[-0.074,-0.227],[-0.58,-1.622],[0,0],[-2.451,0],[-0.091,0.155],[0,0],[0,0],[-0.764,0.509],[0.201,0.305],[0,0],[-1.026,0.29],[0.174,1.003],[0.047,0],[0,0],[0.041,-0.002],[0.33,-0.03],[0.006,0],[0,0],[0.048,0.003],[1.004,0],[0.183,-1.05]],"v":[[15.109,7.459],[13.649,7.047],[14.839,6.361],[14.409,4.207],[9.091,-0.876],[7.725,-9.097],[7.421,-9.719],[0.09,-13.604],[0.088,-13.604],[-7.472,-9.706],[-7.696,-9.207],[-8.988,-0.759],[-13.894,4.078],[-14.353,6.38],[-13.545,7.017],[-15.108,7.459],[-16.593,9.816],[-14.545,11.541],[-14.403,11.536],[-2.768,10.742],[-2.647,10.728],[2.75,10.741],[2.761,10.742],[14.401,11.536],[14.544,11.541],[16.592,9.816]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":25.402,"s":[{"i":[[1.024,0.29],[0,0],[-0.277,0.418],[0.714,0.476],[0,0],[0,0],[0.127,0.188],[2.398,0.001],[0,0],[0.529,-1.678],[0.058,-0.178],[0,0],[0,0],[-0.511,-0.763],[-0.319,-0.117],[0,0],[-0.182,-1.05],[-1.004,0],[-0.048,0.003],[0,0],[-0.039,0.005],[-3.297,-0.177],[0,0],[0,0],[-0.047,0],[-0.174,1.002]],"o":[[0,0],[0.465,-0.031],[0.478,-0.714],[0,0],[0,0],[-0.074,-0.227],[-0.58,-1.622],[0,0],[-2.451,0],[-0.091,0.155],[0,0],[0,0],[-0.764,0.509],[0.201,0.305],[0,0],[-1.026,0.29],[0.174,1.003],[0.047,0],[0,0],[0.041,-0.002],[0.33,-0.03],[0.006,0],[0,0],[0.048,0.003],[1.004,0],[0.183,-1.05]],"v":[[15.109,7.459],[13.649,7.047],[14.839,6.361],[14.409,4.207],[9.091,-0.876],[7.725,-9.097],[7.421,-9.719],[0.09,-13.604],[0.088,-13.604],[-7.472,-9.706],[-7.696,-9.207],[-8.988,-0.759],[-13.894,4.078],[-14.353,6.38],[-13.545,7.017],[-15.108,7.459],[-16.593,9.816],[-14.545,11.541],[-14.403,11.536],[-2.768,10.742],[-2.647,10.728],[2.75,10.741],[2.761,10.742],[14.401,11.536],[14.544,11.541],[16.592,9.816]],"c":true}],"e":[{"i":[[1.024,0.29],[0,0],[-0.277,0.418],[0.714,0.476],[0,0],[0,0],[0.127,0.188],[2.398,0.001],[0,0],[0.529,-1.678],[0.058,-0.178],[0,0],[0,0],[-0.511,-0.763],[-0.319,-0.117],[0,0],[-0.182,-1.05],[-1.004,0],[-0.048,0.003],[0,0],[-0.039,0.005],[-3.297,-0.177],[0,0],[0,0],[-0.047,0],[-0.174,1.002]],"o":[[0,0],[0.465,-0.031],[0.478,-0.714],[0,0],[0,0],[-0.074,-0.227],[-0.58,-1.622],[0,0],[-2.451,0],[-0.091,0.155],[0,0],[0,0],[-0.764,0.509],[0.201,0.305],[0,0],[-1.026,0.29],[0.174,1.003],[0.047,0],[0,0],[0.041,-0.002],[0.33,-0.03],[0.006,0],[0,0],[0.048,0.003],[1.004,0],[0.183,-1.05]],"v":[[15.109,7.459],[13.649,7.047],[14.839,6.361],[14.409,4.207],[8.091,-0.689],[5.568,-8.097],[5.265,-8.719],[0.277,-11.541],[0.275,-11.541],[-4.753,-8.612],[-4.978,-8.113],[-7.582,-0.54],[-13.894,4.078],[-14.353,6.38],[-13.545,7.017],[-15.108,7.459],[-16.593,9.816],[-14.545,11.541],[-14.403,11.536],[-2.768,10.742],[-2.647,10.728],[2.75,10.741],[2.761,10.742],[14.401,11.536],[14.544,11.541],[16.592,9.816]],"c":true}]},{"t":67.7380065917969}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,6],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"body","np":3,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":338.690032958984,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"walking","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[80,113,0],"ix":2},"a":{"a":0,"k":[100,100,0],"ix":1},"s":{"a":0,"k":[40,40,100],"ix":6}},"ao":0,"w":200,"h":200,"ip":0,"op":338.690032958984,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"running","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[182.5,115,0],"ix":2},"a":{"a":0,"k":[100,100,0],"ix":1},"s":{"a":0,"k":[40,40,100],"ix":6}},"ao":0,"w":200,"h":200,"ip":0,"op":338.690032958984,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"star jumps","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[84.5,213,0],"ix":2},"a":{"a":0,"k":[100,100,0],"ix":1},"s":{"a":0,"k":[40,40,100],"ix":6}},"ao":0,"w":200,"h":200,"ip":0,"op":338.690032958984,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"rawing machine","refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[191.5,222.5,0],"ix":2},"a":{"a":0,"k":[100,100,0],"ix":1},"s":{"a":0,"k":[40,40,100],"ix":6}},"ao":0,"w":200,"h":200,"ip":0,"op":338.690032958984,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"crunches","refId":"comp_4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[193,313.5,0],"ix":2},"a":{"a":0,"k":[100,100,0],"ix":1},"s":{"a":0,"k":[40,40,100],"ix":6}},"ao":0,"w":200,"h":200,"ip":0,"op":338.690032958984,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"yoga","refId":"comp_5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[81.5,314.5,0],"ix":2},"a":{"a":0,"k":[100,100,0],"ix":1},"s":{"a":0,"k":[40,40,100],"ix":6}},"ao":0,"w":200,"h":200,"ip":0,"op":338.690032958984,"st":0,"bm":0}],"markers":[]}
\ No newline at end of file
diff --git a/submodules/RLottie/Sources/rlottie/example/vectortest.cpp b/submodules/RLottie/Sources/rlottie/example/vectortest.cpp
deleted file mode 100644
index 8038b585a3..0000000000
--- a/submodules/RLottie/Sources/rlottie/example/vectortest.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (c) 2018 Samsung Electronics Co., Ltd. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#include
-
-#include "vinterpolator.h"
-
-int main()
-{
- VInterpolator ip({0.667, 1}, {0.333 , 0});
- for (float i = 0.0 ; i < 1.0 ; i+=0.05) {
- std::cout<
-#include
-#include
-using namespace std;
-
-#ifdef LOTTIE_CACHE_SUPPORT
-
-class LottieFileCache {
-public:
- static LottieFileCache &instance()
- {
- static LottieFileCache CACHE;
- return CACHE;
- }
- std::shared_ptr find(const std::string &key)
- {
- auto search = mHash.find(key);
- if (search != mHash.end()) {
- return search->second;
- } else {
- return nullptr;
- }
- }
- void add(const std::string &key, std::shared_ptr value)
- {
- mHash[key] = std::move(value);
- }
-
-private:
- LottieFileCache() = default;
-
- std::unordered_map> mHash;
-};
-
-#else
-
-class LottieFileCache {
-public:
- static LottieFileCache &instance()
- {
- static LottieFileCache CACHE;
- return CACHE;
- }
- std::shared_ptr find(const std::string &) { return nullptr; }
- void add(const std::string &, std::shared_ptr) {}
-};
-
-#endif
-
-static std::string dirname(const std::string &path)
-{
- const char *ptr = strrchr(path.c_str(), '/');
- int len = int(ptr + 1 - path.c_str()); // +1 to include '/'
- return std::string(path, 0, len);
-}
-
-bool LottieLoader::load(const std::string &path)
-{
- mModel = LottieFileCache::instance().find(path);
- if (mModel) return true;
-
- std::ifstream f;
- f.open(path);
-
- if (!f.is_open()) {
- vCritical << "failed to open file = " << path.c_str();
- return false;
- } else {
- std::stringstream buf;
- buf << f.rdbuf();
-
- LottieParser parser(const_cast(buf.str().data()),
- dirname(path).c_str());
- mModel = parser.model();
-
- if (!mModel) return false;
-
- LottieFileCache::instance().add(path, mModel);
-
- f.close();
- }
-
- return true;
-}
-
-bool LottieLoader::loadFromData(std::string &&jsonData, const std::string &key,
- const std::string &resourcePath)
-{
- mModel = LottieFileCache::instance().find(key);
- if (mModel) return true;
-
- LottieParser parser(const_cast(jsonData.c_str()),
- resourcePath.c_str());
- mModel = parser.model();
-
- if (!mModel) return false;
-
- LottieFileCache::instance().add(key, mModel);
-
- return true;
-}
-
-std::shared_ptr LottieLoader::model()
-{
- return mModel;
-}
diff --git a/submodules/RLottie/Sources/rlottie/src/lottie/meson.build b/submodules/RLottie/Sources/rlottie/src/lottie/meson.build
deleted file mode 100644
index a6d1856ba7..0000000000
--- a/submodules/RLottie/Sources/rlottie/src/lottie/meson.build
+++ /dev/null
@@ -1,14 +0,0 @@
-
-source_file = files('lottieparser.cpp')
-source_file += files('lottieloader.cpp')
-source_file += files('lottiemodel.cpp')
-source_file += files('lottieproxymodel.cpp')
-source_file += files('lottieanimation.cpp')
-source_file += files('lottieitem.cpp')
-source_file += files('lottiekeypath.cpp')
-
-
-lottie_dep = declare_dependency(
- include_directories : include_directories('.'),
- sources : source_file
- )
diff --git a/submodules/RLottie/Sources/rlottie/src/meson.build b/submodules/RLottie/Sources/rlottie/src/meson.build
deleted file mode 100644
index 148edd82d4..0000000000
--- a/submodules/RLottie/Sources/rlottie/src/meson.build
+++ /dev/null
@@ -1,14 +0,0 @@
-subdir('vector')
-subdir('lottie')
-subdir('binding')
-
-library_deps = vector_dep
-library_deps += lottie_dep
-library_deps += binding_dep
-
-rlottie_lib = shared_library('rlottie',
- include_directories : inc,
- version : rlottie_lib_version,
- dependencies : library_deps,
- install : true
- )
diff --git a/submodules/RLottie/Sources/rlottie/src/vector/meson.build b/submodules/RLottie/Sources/rlottie/src/vector/meson.build
deleted file mode 100644
index 543f730566..0000000000
--- a/submodules/RLottie/Sources/rlottie/src/vector/meson.build
+++ /dev/null
@@ -1,39 +0,0 @@
-
-subdir('freetype')
-subdir('pixman')
-subdir('stb')
-
-vector_dep = [freetype_dep]
-vector_dep += pixman_dep
-
-source_file = files('vdasher.cpp')
-source_file += files('vbrush.cpp')
-source_file += files('vbitmap.cpp')
-source_file += files('vpainter.cpp')
-source_file += files('vcompositionfunctions.cpp')
-source_file += files('vdrawhelper.cpp')
-source_file += files('vdrawhelper_sse2.cpp')
-source_file += files('vdrawhelper_neon.cpp')
-source_file += files('vdrawable.cpp')
-
-source_file += files('vrect.cpp')
-source_file += files('vrle.cpp')
-source_file += files('vpath.cpp')
-source_file += files('vpathmesure.cpp')
-source_file += files('vmatrix.cpp')
-source_file += files('velapsedtimer.cpp')
-source_file += files('vdebug.cpp')
-source_file += files('vinterpolator.cpp')
-source_file += files('vbezier.cpp')
-source_file += files('vraster.cpp')
-source_file += files('vimageloader.cpp')
-
-# dl dependancy for dlopen, dlsym, dlclose symbol
-cc = meson.get_compiler('cpp')
-vector_dep += cc.find_library('dl', required : true)
-
-vector_dep += declare_dependency( include_directories : include_directories('.'),
- sources : source_file
- )
-
-
diff --git a/submodules/RLottie/Sources/rlottie/src/vector/pixman/1 b/submodules/RLottie/Sources/rlottie/src/vector/pixman/1
deleted file mode 100644
index 0928fb84b9..0000000000
--- a/submodules/RLottie/Sources/rlottie/src/vector/pixman/1
+++ /dev/null
@@ -1,2 +0,0 @@
-clang: error: clang: error: no such file or directory: '2'
-no such file or directory: '2'
diff --git a/submodules/RLottie/Sources/rlottie/src/vector/pixman/2 b/submodules/RLottie/Sources/rlottie/src/vector/pixman/2
deleted file mode 100644
index 1f834998ef..0000000000
--- a/submodules/RLottie/Sources/rlottie/src/vector/pixman/2
+++ /dev/null
@@ -1,2794 +0,0 @@
-clang: warning: 1: 'linker' input unused [-Wunused-command-line-argument]
-:6:5: error: unknown directive
- .fpu neon
- ^
-:8:5: error: unknown directive
- .object_arch armv4
- ^
-:9:5: error: unknown directive
- .eabi_attribute 10, 0
- ^
-:10:5: error: unknown directive
- .eabi_attribute 12, 0
- ^
-:11:5: error: unknown directive
- .arm
- ^
-:121:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_asm_functionpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_asm_functionpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_composite_over_8888_8888_asm_neonpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:123:126: error: Unexpected '{' in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headpushpixman_composite_over_8888_8888_process_pixblock_tail_head {pixman_composite_over_8888_8888_process_pixblock_tail_headr4pixman_composite_over_8888_8888_process_pixblock_tail_head-pixman_composite_over_8888_8888_process_pixblock_tail_headr12pixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headlrpixman_composite_over_8888_8888_process_pixblock_tail_head}
- ^
-:130:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_CURRENTpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_DEFAULTpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:131:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headFLAG_DEINTERLEAVE_32BPPpixman_composite_over_8888_8888_process_pixblock_tail_head ==
-^
-:132:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_CURRENTpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_NONEpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:133:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head (pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_CURRENTpixman_composite_over_8888_8888_process_pixblock_tail_head > pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_SIMPLEpixman_composite_over_8888_8888_process_pixblock_tail_head) && ((pixman_composite_over_8888_8888_process_pixblock_tail_head32pixman_composite_over_8888_8888_process_pixblock_tail_head == ) || ( == ) || (pixman_composite_over_8888_8888_process_pixblock_tail_head32pixman_composite_over_8888_8888_process_pixblock_tail_head == ))
-^
-:135:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_CURRENTpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_SIMPLEpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:136:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:142:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head32pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:143:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:144:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head32pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:145:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head, |
- ^
-:146:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_composite_over_8888_8888_process_pixblock_tailpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:147:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_r_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:148:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:149:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:151:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headmacropixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixld_srcpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headxpixman_composite_over_8888_8888_process_pixblock_tail_head:pixman_composite_over_8888_8888_process_pixblock_tail_headvarargpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:152:9: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixldpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixldpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headxpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:153:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headendmpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:154:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headmacropixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headfetch_src_pixblockpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:155:9: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixld_srcpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixld_srcpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, (pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head - pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head * pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head / pixman_composite_over_8888_8888_process_pixblock_tail_head64pixman_composite_over_8888_8888_process_pixblock_tail_head), pixman_composite_over_8888_8888_process_pixblock_tail_headSRCpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:157:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headendmpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:161:244: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr0pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:162:244: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headHpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:163:248: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Wpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr2pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:164:253: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headDST_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr3pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:165:246: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headSRCpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr4pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:166:253: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headSRC_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr5pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:167:248: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Rpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr6pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:169:247: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headMASKpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr7pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:170:254: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headMASK_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr8pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:172:249: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPF_CTLpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr9pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:174:247: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPF_Xpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr10pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:176:249: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPF_SRCpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr11pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:178:249: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPF_DSTpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr12pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:180:250: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPF_MASKpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr14pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:182:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head (pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_CURRENTpixman_composite_over_8888_8888_process_pixblock_tail_head < pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_ADVANCEDpixman_composite_over_8888_8888_process_pixblock_tail_head)
-^
-:183:249: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headORIG_Wpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr10pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:184:248: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headDUMMYpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr12pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:185:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headregs_shortagepixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:186:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head ==
-^
-:187:249: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headORIG_Wpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr7pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:188:248: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headDUMMYpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr8pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:189:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headregs_shortagepixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:190:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head ==
-^
-:191:249: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headORIG_Wpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr4pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:192:248: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headDUMMYpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr5pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:193:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headregs_shortagepixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:194:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelsepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:195:249: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headORIG_Wpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:196:248: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headDUMMYpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:197:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headregs_shortagepixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:198:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:200:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head, -pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:201:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head == pixman_composite_over_8888_8888_process_pixblock_tail_head32pixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:202:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head2pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:203:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head ==
-^
-:204:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:205:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head == pixman_composite_over_8888_8888_process_pixblock_tail_head16pixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:206:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:207:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head == pixman_composite_over_8888_8888_process_pixblock_tail_head8pixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:208:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:209:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head ==
-^
-:210:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head, -pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:211:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelsepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:212:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headerrorpixman_composite_over_8888_8888_process_pixblock_tail_head "pixman_composite_over_8888_8888_process_pixblock_tail_headrequestedpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrcpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headbpppixman_composite_over_8888_8888_process_pixblock_tail_head (pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head) pixman_composite_over_8888_8888_process_pixblock_tail_headispixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headnotpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsupportedpixman_composite_over_8888_8888_process_pixblock_tail_head"
- ^
-:213:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:214:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head == pixman_composite_over_8888_8888_process_pixblock_tail_head32pixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:215:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head2pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:216:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head ==
-^
-:217:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:218:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head == pixman_composite_over_8888_8888_process_pixblock_tail_head8pixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:219:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:220:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head ==
-^
-:221:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head, -pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:222:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelsepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:223:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headerrorpixman_composite_over_8888_8888_process_pixblock_tail_head "pixman_composite_over_8888_8888_process_pixblock_tail_headrequestedpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmaskpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headbpppixman_composite_over_8888_8888_process_pixblock_tail_head (pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head) pixman_composite_over_8888_8888_process_pixblock_tail_headispixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headnotpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsupportedpixman_composite_over_8888_8888_process_pixblock_tail_head"
- ^
-:224:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:225:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head == pixman_composite_over_8888_8888_process_pixblock_tail_head32pixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:226:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head2pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:227:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head ==
-^
-:228:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:229:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head == pixman_composite_over_8888_8888_process_pixblock_tail_head16pixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:230:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:231:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelseifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head == pixman_composite_over_8888_8888_process_pixblock_tail_head8pixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:232:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_bpp_shiftpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:233:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelsepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:234:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headerrorpixman_composite_over_8888_8888_process_pixblock_tail_head "pixman_composite_over_8888_8888_process_pixblock_tail_headrequestedpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdstpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headbpppixman_composite_over_8888_8888_process_pixblock_tail_head (pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head) pixman_composite_over_8888_8888_process_pixblock_tail_headispixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headnotpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsupportedpixman_composite_over_8888_8888_process_pixblock_tail_head"
- ^
-:235:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:237:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head (((pixman_composite_over_8888_8888_process_pixblock_tail_headFLAG_DST_READWRITEpixman_composite_over_8888_8888_process_pixblock_tail_head) & pixman_composite_over_8888_8888_process_pixblock_tail_headFLAG_DST_READWRITEpixman_composite_over_8888_8888_process_pixblock_tail_head) != )
-^
-:238:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_r_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:239:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelsepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:240:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_r_bpppixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:241:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:242:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head (((pixman_composite_over_8888_8888_process_pixblock_tail_headFLAG_DST_READWRITEpixman_composite_over_8888_8888_process_pixblock_tail_head) & pixman_composite_over_8888_8888_process_pixblock_tail_headFLAG_DEINTERLEAVE_32BPPpixman_composite_over_8888_8888_process_pixblock_tail_head) != )
-^
-:243:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headDEINTERLEAVE_32BPP_ENABLEDpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:244:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelsepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:245:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headDEINTERLEAVE_32BPP_ENABLEDpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:246:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:248:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headFLAG_DEINTERLEAVE_32BPPpixman_composite_over_8888_8888_process_pixblock_tail_head < || pixman_composite_over_8888_8888_process_pixblock_tail_headFLAG_DEINTERLEAVE_32BPPpixman_composite_over_8888_8888_process_pixblock_tail_head > pixman_composite_over_8888_8888_process_pixblock_tail_head15pixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:249:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headerrorpixman_composite_over_8888_8888_process_pixblock_tail_head "pixman_composite_over_8888_8888_process_pixblock_tail_headinvalidpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headprefetchpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdistancepixman_composite_over_8888_8888_process_pixblock_tail_head (pixman_composite_over_8888_8888_process_pixblock_tail_headFLAG_DEINTERLEAVE_32BPPpixman_composite_over_8888_8888_process_pixblock_tail_head)"
- ^
-:250:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:252:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head >
-^
-:253:246: error: brackets expression not supported on this target
- pixman_composite_over_8888_8888_process_pixblock_tail_headldrpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headSRCpixman_composite_over_8888_8888_process_pixblock_tail_head, [pixman_composite_over_8888_8888_process_pixblock_tail_headsppixman_composite_over_8888_8888_process_pixblock_tail_head, #pixman_composite_over_8888_8888_process_pixblock_tail_head40pixman_composite_over_8888_8888_process_pixblock_tail_head]
- ^
-:254:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:255:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head >
-^
-:256:247: error: brackets expression not supported on this target
- pixman_composite_over_8888_8888_process_pixblock_tail_headldrpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headMASKpixman_composite_over_8888_8888_process_pixblock_tail_head, [pixman_composite_over_8888_8888_process_pixblock_tail_headsppixman_composite_over_8888_8888_process_pixblock_tail_head, #pixman_composite_over_8888_8888_process_pixblock_tail_head48pixman_composite_over_8888_8888_process_pixblock_tail_head]
- ^
-:257:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:258:244: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPFpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmovpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_Xpixman_composite_over_8888_8888_process_pixblock_tail_head, #
- ^
-:259:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head >
-^
-:260:253: error: brackets expression not supported on this target
- pixman_composite_over_8888_8888_process_pixblock_tail_headldrpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headSRC_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, [pixman_composite_over_8888_8888_process_pixblock_tail_headsppixman_composite_over_8888_8888_process_pixblock_tail_head, #pixman_composite_over_8888_8888_process_pixblock_tail_head44pixman_composite_over_8888_8888_process_pixblock_tail_head]
- ^
-:261:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:262:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head >
-^
-:263:254: error: brackets expression not supported on this target
- pixman_composite_over_8888_8888_process_pixblock_tail_headldrpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headMASK_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, [pixman_composite_over_8888_8888_process_pixblock_tail_headsppixman_composite_over_8888_8888_process_pixblock_tail_head, #pixman_composite_over_8888_8888_process_pixblock_tail_head52pixman_composite_over_8888_8888_process_pixblock_tail_head]
- ^
-:264:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:265:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headmovpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headmovpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Rpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Wpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:267:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head ==
-^
-:268:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headSRC_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headSRC_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:269:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headSRC_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headSRC_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headlslpixman_composite_over_8888_8888_process_pixblock_tail_head #pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:270:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:271:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head ==
-^
-:272:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headMASK_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headMASK_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:273:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headMASK_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headMASK_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headlslpixman_composite_over_8888_8888_process_pixblock_tail_head #pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:274:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:275:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head ==
-^
-:276:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headDST_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headDST_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:277:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headsubpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headDST_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headDST_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headlslpixman_composite_over_8888_8888_process_pixblock_tail_head #pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:278:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:283:244: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPFpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmovpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_SRCpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headSRCpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:284:244: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPFpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmovpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_DSTpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Rpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:285:244: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPFpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmovpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_MASKpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headMASKpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:287:244: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPFpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmovpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_CTLpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headHpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headlslpixman_composite_over_8888_8888_process_pixblock_tail_head #
- ^
-:288:244: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPFpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headaddpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_CTLpixman_composite_over_8888_8888_process_pixblock_tail_head, #(pixman_composite_over_8888_8888_process_pixblock_tail_headFLAG_DEINTERLEAVE_32BPPpixman_composite_over_8888_8888_process_pixblock_tail_head - pixman_composite_over_8888_8888_process_pixblock_tail_head0x10pixman_composite_over_8888_8888_process_pixblock_tail_head)
- ^
-:290:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_head8pixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_head8pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:291:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headregs_shortagepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:292:126: error: Unexpected '{' in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headpushpixman_composite_over_8888_8888_process_pixblock_tail_head {pixman_composite_over_8888_8888_process_pixblock_tail_headr0pixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headr1pixman_composite_over_8888_8888_process_pixblock_tail_head}
- ^
-:293:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:294:364: error: unknown token in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headsubspixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headHpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headHpixman_composite_over_8888_8888_process_pixblock_tail_head, #pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:295:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headregs_shortagepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:296:244: error: brackets expression not supported on this target
- pixman_composite_over_8888_8888_process_pixblock_tail_headstrpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headHpixman_composite_over_8888_8888_process_pixblock_tail_head, [pixman_composite_over_8888_8888_process_pixblock_tail_headsppixman_composite_over_8888_8888_process_pixblock_tail_head, #]
- ^
-:297:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelsepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:298:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headmovpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headmovpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headORIG_Wpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:299:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:300:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headbltpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headbltpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_head9fpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:301:244: error: unknown token in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headcmppixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head, #(pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head * pixman_composite_over_8888_8888_process_pixblock_tail_head2pixman_composite_over_8888_8888_process_pixblock_tail_head)
- ^
-:302:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headbltpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headbltpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_head8fpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:307:1: error: unexpected token at start of statement
-:
-^
-:308:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headensure_destination_ptr_alignmentpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headensure_destination_ptr_alignmentpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_initpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_cleanuppixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_composite_over_8888_8888_process_pixblock_headpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:313:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixld_apixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixld_apixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headdst_r_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, (pixman_composite_over_8888_8888_process_pixblock_tail_headdst_r_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head - pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head * pixman_composite_over_8888_8888_process_pixblock_tail_headdst_r_bpppixman_composite_over_8888_8888_process_pixblock_tail_head / pixman_composite_over_8888_8888_process_pixblock_tail_head64pixman_composite_over_8888_8888_process_pixblock_tail_head), pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Rpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:315:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headfetch_src_pixblockpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headfetch_src_pixblockpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:316:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixldpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixldpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, (pixman_composite_over_8888_8888_process_pixblock_tail_headmask_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head - pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head * pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head / pixman_composite_over_8888_8888_process_pixblock_tail_head64pixman_composite_over_8888_8888_process_pixblock_tail_head), pixman_composite_over_8888_8888_process_pixblock_tail_headMASKpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:318:244: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headPFpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headaddpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_Xpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headPF_Xpixman_composite_over_8888_8888_process_pixblock_tail_head, #pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:319:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_initpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_initpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:320:135: error: unknown token in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headcache_preloadpixman_composite_over_8888_8888_process_pixblock_tail_head , pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:321:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headcache_preload_simplepixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headcache_preload_simplepixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:322:364: error: unknown token in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headsubspixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head, #(pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head * pixman_composite_over_8888_8888_process_pixblock_tail_head2pixman_composite_over_8888_8888_process_pixblock_tail_head)
- ^
-:323:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headbltpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headbltpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_head2fpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:325:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_composite_over_8888_8888_process_pixblock_headpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_composite_over_8888_8888_process_pixblock_headpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:326:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headcache_preload_simplepixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headcache_preload_simplepixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:327:364: error: unknown token in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headsubspixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head, #pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:328:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headbgepixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headbgepixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_head1bpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:330:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_cleanuppixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_cleanuppixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:331:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixst_apixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixst_apixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, (pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head - pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head * pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head / pixman_composite_over_8888_8888_process_pixblock_tail_head64pixman_composite_over_8888_8888_process_pixblock_tail_head), pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Wpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:335:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headprocess_trailing_pixelspixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headprocess_trailing_pixelspixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_initpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_cleanuppixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_composite_over_8888_8888_process_pixblock_headpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:339:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headadvance_to_next_scanlinepixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headadvance_to_next_scanlinepixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_head0bpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:341:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headregs_shortagepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:342:125: error: Unexpected '{' in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headpoppixman_composite_over_8888_8888_process_pixblock_tail_head {pixman_composite_over_8888_8888_process_pixblock_tail_headr0pixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headr1pixman_composite_over_8888_8888_process_pixblock_tail_head}
- ^
-:343:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:344:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_head5pixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_head5pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:345:125: error: Unexpected '{' in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headpoppixman_composite_over_8888_8888_process_pixblock_tail_head {pixman_composite_over_8888_8888_process_pixblock_tail_headr4pixman_composite_over_8888_8888_process_pixblock_tail_head-pixman_composite_over_8888_8888_process_pixblock_tail_headr12pixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headpcpixman_composite_over_8888_8888_process_pixblock_tail_head}
- ^
-:353:244: error: unknown token in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headtstpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head, #pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:354:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headbeqpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headbeqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_head1fpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:355:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixldpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixldpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headdst_r_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, (pixman_composite_over_8888_8888_process_pixblock_tail_headdst_r_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head - pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head * pixman_composite_over_8888_8888_process_pixblock_tail_headdst_r_bpppixman_composite_over_8888_8888_process_pixblock_tail_head / pixman_composite_over_8888_8888_process_pixblock_tail_head64pixman_composite_over_8888_8888_process_pixblock_tail_head), pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Rpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:357:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headfetch_src_pixblockpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headfetch_src_pixblockpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:358:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixldpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixldpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, (pixman_composite_over_8888_8888_process_pixblock_tail_headmask_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head - pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head * pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head / pixman_composite_over_8888_8888_process_pixblock_tail_head64pixman_composite_over_8888_8888_process_pixblock_tail_head), pixman_composite_over_8888_8888_process_pixblock_tail_headMASKpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:360:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_initpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_initpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:361:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_cleanuppixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_cleanuppixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:362:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixstpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixstpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, (pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head - pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head * pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head / pixman_composite_over_8888_8888_process_pixblock_tail_head64pixman_composite_over_8888_8888_process_pixblock_tail_head), pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Wpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:364:1: error: invalid symbol redefinition
-pixman_composite_over_8888_8888_process_pixblock_tail_head1pixman_composite_over_8888_8888_process_pixblock_tail_head:
-^
-:366:145: error: unknown token in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headprocess_trailing_pixelspixman_composite_over_8888_8888_process_pixblock_tail_head , , pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_initpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headdefault_cleanuppixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_composite_over_8888_8888_process_pixblock_headpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:370:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headadvance_to_next_scanlinepixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headadvance_to_next_scanlinepixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_head8bpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:372:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headregs_shortagepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:373:125: error: Unexpected '{' in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headpoppixman_composite_over_8888_8888_process_pixblock_tail_head {pixman_composite_over_8888_8888_process_pixblock_tail_headr0pixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headr1pixman_composite_over_8888_8888_process_pixblock_tail_head}
- ^
-:374:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:375:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_head5pixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_head5pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:376:125: error: Unexpected '{' in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headpoppixman_composite_over_8888_8888_process_pixblock_tail_head {pixman_composite_over_8888_8888_process_pixblock_tail_headr4pixman_composite_over_8888_8888_process_pixblock_tail_head-pixman_composite_over_8888_8888_process_pixblock_tail_headr12pixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headpcpixman_composite_over_8888_8888_process_pixblock_tail_head}
- ^
-:379:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headSRCpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:380:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headMASKpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:381:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Rpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:382:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Wpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:383:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headORIG_Wpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:384:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:385:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headHpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:386:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headSRC_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:387:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headDST_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:388:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headMASK_STRIDEpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:389:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_CTLpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:390:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_Xpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:391:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_SRCpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:392:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_DSTpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:393:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPF_MASKpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:394:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headunreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headDUMMYpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:395:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headendfuncpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:398:5: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_asm_functionpixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_asm_functionpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_composite_scanline_over_asm_neonpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:400:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_CURRENTpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headPREFETCH_TYPE_NONEpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:405:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head32pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:406:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:407:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_bpppixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_head32pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:408:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixblock_sizepixman_composite_over_8888_8888_process_pixblock_tail_head, |
- ^
-:409:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_w_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headpixman_composite_over_8888_8888_process_pixblock_tailpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:410:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headdst_r_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:411:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headsrc_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:412:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headsetpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_baseregpixman_composite_over_8888_8888_process_pixblock_tail_head,
- ^
-:414:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head !=
-^
-:418:244: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr0pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:419:248: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Wpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:420:246: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headSRCpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr2pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:421:245: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headVXpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr3pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:422:249: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headUNIT_Xpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headippixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:423:247: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headMASKpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headlrpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:424:247: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headTMP1pixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr4pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:425:247: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headTMP2pixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr5pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:426:248: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Rpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr6pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:427:258: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headSRC_WIDTH_FIXEDpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr7pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:429:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headmacropixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headpixld_srcpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headxpixman_composite_over_8888_8888_process_pixblock_tail_head:pixman_composite_over_8888_8888_process_pixblock_tail_headvarargpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:430:9: error: invalid instruction mnemonic 'pixman_composite_over_8888_8888_process_pixblock_tail_headpixld_spixman_composite_over_8888_8888_process_pixblock_tail_head'
- pixman_composite_over_8888_8888_process_pixblock_tail_headpixld_spixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headxpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:431:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headendmpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:433:249: error: brackets expression not supported on this target
- pixman_composite_over_8888_8888_process_pixblock_tail_headldrpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headUNIT_Xpixman_composite_over_8888_8888_process_pixblock_tail_head, [pixman_composite_over_8888_8888_process_pixblock_tail_headsppixman_composite_over_8888_8888_process_pixblock_tail_head]
- ^
-:434:126: error: Unexpected '{' in expression
- pixman_composite_over_8888_8888_process_pixblock_tail_headpushpixman_composite_over_8888_8888_process_pixblock_tail_head {pixman_composite_over_8888_8888_process_pixblock_tail_headr4pixman_composite_over_8888_8888_process_pixblock_tail_head-pixman_composite_over_8888_8888_process_pixblock_tail_headr8pixman_composite_over_8888_8888_process_pixblock_tail_head, pixman_composite_over_8888_8888_process_pixblock_tail_headlrpixman_composite_over_8888_8888_process_pixblock_tail_head}
- ^
-:435:258: error: brackets expression not supported on this target
- pixman_composite_over_8888_8888_process_pixblock_tail_headldrpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headSRC_WIDTH_FIXEDpixman_composite_over_8888_8888_process_pixblock_tail_head, [pixman_composite_over_8888_8888_process_pixblock_tail_headsppixman_composite_over_8888_8888_process_pixblock_tail_head, #( + )]
- ^
-:436:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headifpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headmask_bpppixman_composite_over_8888_8888_process_pixblock_tail_head !=
- ^
-:437:247: error: brackets expression not supported on this target
- pixman_composite_over_8888_8888_process_pixblock_tail_headldrpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headMASKpixman_composite_over_8888_8888_process_pixblock_tail_head, [pixman_composite_over_8888_8888_process_pixblock_tail_headsppixman_composite_over_8888_8888_process_pixblock_tail_head, #( + pixman_composite_over_8888_8888_process_pixblock_tail_head8pixman_composite_over_8888_8888_process_pixblock_tail_head)]
- ^
-:438:5: error: unknown directive
- .pixman_composite_over_8888_8888_process_pixblock_tail_headendifpixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:439:1: error: unknown directive
-.pixman_composite_over_8888_8888_process_pixblock_tail_headelsepixman_composite_over_8888_8888_process_pixblock_tail_head
-^
-:443:244: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headWpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr0pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-:444:248: error: unexpected token in argument list
- pixman_composite_over_8888_8888_process_pixblock_tail_headDST_Wpixman_composite_over_8888_8888_process_pixblock_tail_head .pixman_composite_over_8888_8888_process_pixblock_tail_headreqpixman_composite_over_8888_8888_process_pixblock_tail_head pixman_composite_over_8888_8888_process_pixblock_tail_headr1pixman_composite_over_8888_8888_process_pixblock_tail_head
- ^
-