diff --git a/.gitignore b/.gitignore
index efaf879..146c9fa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
data/
a2f_venv/
-external/
\ No newline at end of file
+external/
+nul
\ No newline at end of file
diff --git a/examples/3d/blendshapeAnimator.js b/examples/3d/blendshapeAnimator.js
index d8daa07..05e2e75 100644
--- a/examples/3d/blendshapeAnimator.js
+++ b/examples/3d/blendshapeAnimator.js
@@ -12,6 +12,7 @@ class BlendShapeAnimator {
this.idleAnimations = {};
this.blendShapeScale = config.blendShapeScale || 1.0;
this.dataFps = config.dataFps || 30;
+ this.playbackSpeed = config.playbackSpeed || 1.0; // 播放倍速:0.5=慢速, 1.0=正常, 2.0=快速
this.isStreaming = false;
this.streamingComplete = true;
this.streamingWaitStart = null;
@@ -333,7 +334,7 @@ class BlendShapeAnimator {
}
const frameDuration = 1000 / this.dataFps;
- const elapsed = now - this.animationStartTime - this.streamingStallMs;
+ const elapsed = (now - this.animationStartTime - this.streamingStallMs) * this.playbackSpeed;
const exactFrame = elapsed / frameDuration;
const targetFrameIndex = Math.floor(exactFrame);
const frameProgress = exactFrame - targetFrameIndex;
@@ -710,6 +711,8 @@ class BlendShapeAnimator {
updateConfig(key, value) {
if (key === 'blendShapeScale') {
this.blendShapeScale = value;
+ } else if (key === 'playbackSpeed') {
+ this.playbackSpeed = value;
} else if (this[key]) {
this[key] = value;
}
diff --git a/examples/3d/index.html b/examples/3d/index.html
index 7ecd1c2..b127791 100644
--- a/examples/3d/index.html
+++ b/examples/3d/index.html
@@ -51,6 +51,13 @@
style="width: 100%; cursor: pointer;">
+
+
+
+
+
diff --git a/examples/3d/main.js b/examples/3d/main.js
index 84ced5d..4896b8d 100644
--- a/examples/3d/main.js
+++ b/examples/3d/main.js
@@ -54,36 +54,13 @@ function init() {
} else {
console.log(`✓ 构建缓存完成,共 ${totalTargets} 个形态键`);
- // 预热:直接调用生成动画流程(和用户点击按钮完全一样)
+ // 预热:使用写死的预热数据,不请求接口
showStatus("预热中...", "info");
- const apiUrl = document.getElementById('apiUrl').value;
- const streamEnabled = document.getElementById('streamEnabled')?.checked;
- console.log('预热 apiUrl:', apiUrl, 'stream:', streamEnabled);
- if (apiUrl) {
- try {
- // 和 generateAnimation 走完全一样的路径
- if (streamEnabled) {
- await generateAnimationStream('你好', apiUrl);
- } else {
- await generateAnimationBatch('你好', apiUrl);
- playAnimation();
- }
- // 等播放完
- await new Promise(resolve => {
- const check = () => animator.isPlaying ? requestAnimationFrame(check) : resolve();
- check();
- });
- // 完全重置状态
- animator.stopAnimation();
- animator.loadAnimationFrames([]);
- animator.endStreaming();
- morphAdapter.resetAll();
- console.log('✓ 预热完成');
- } catch (e) {
- console.warn('预热失败:', e);
- }
- } else {
- console.warn('预热跳过: apiUrl 为空');
+ try {
+ await warmupWithLocalData();
+ console.log('✓ 预热完成');
+ } catch (e) {
+ console.warn('预热失败:', e);
}
showStatus("就绪", "success");
@@ -95,6 +72,47 @@ function init() {
);
}
+// 使用本地预热数据进行预热(不请求接口)
+async function warmupWithLocalData() {
+ console.log('=== warmupWithLocalData 开始 ===');
+
+ // 加载预热数据
+ const response = await fetch('预热数据.json');
+ const frames = await response.json();
+ console.log(`加载预热数据: ${frames.length} 帧`);
+
+ // 保存原始播放速度,设置预热倍速(4倍速快速预热)
+ const originalSpeed = animator.playbackSpeed;
+ animator.playbackSpeed = 4.0;
+ console.log(`预热倍速: ${animator.playbackSpeed}x`);
+
+ // 加载并播放
+ animator.loadAnimationFrames(frames);
+ animator.playAnimation();
+
+ // 等待播放完成
+ await new Promise(resolve => {
+ const checkDone = () => {
+ if (!animator.isPlaying) {
+ resolve();
+ } else {
+ requestAnimationFrame(checkDone);
+ }
+ };
+ requestAnimationFrame(checkDone);
+ });
+
+ // 重置状态
+ animator.stopAnimation();
+ animator.loadAnimationFrames([]);
+ morphAdapter.resetAll();
+
+ // 恢复原始播放速度
+ animator.playbackSpeed = originalSpeed;
+
+ console.log('✓ 本地数据预热完成');
+}
+
// 偷偷调接口预热 - 完全走一遍生成动画流程
async function warmupWithApi() {
console.log('=== warmupWithApi 开始 ===');
@@ -133,7 +151,7 @@ async function warmupWithApi() {
}
}
-async function generateAnimation() {
+ async function generateAnimation() {
const text = document.getElementById('textInput').value.trim();
const apiUrl = document.getElementById('apiUrl').value;
const btn = document.getElementById('generateBtn');
@@ -176,6 +194,19 @@ async function generateAnimationBatch(text, apiUrl) {
animator.loadAnimationFrames(data.frames);
console.log("动画数据:", data.frames);
+ // 打印可复制的 JSON 格式,过滤掉值为0的字段
+ const filteredFrames = data.frames.map(frame => {
+ const filtered = { timeCode: frame.timeCode, blendShapes: {} };
+ for (const [key, value] of Object.entries(frame.blendShapes)) {
+ if (value !== 0) {
+ filtered.blendShapes[key] = value;
+ }
+ }
+ return filtered;
+ });
+ console.log("========== 复制以下内容作为预热数据 ==========");
+ console.log(JSON.stringify(filteredFrames));
+ console.log("========== 复制结束 ==========");
showStatus(`动画生成成功!共 ${data.frames.length} 帧`, "success");
}
@@ -355,6 +386,11 @@ function updateFps(value) {
document.getElementById('fpsValue').textContent = value;
}
+function updatePlaybackSpeed(value) {
+ animator.updateConfig('playbackSpeed', parseFloat(value));
+ document.getElementById('speedValue').textContent = value + 'x';
+}
+
function testBlendShape() {
if (morphAdapter.getCacheSize() === 0) {
showStatus("模型未加载", "error");
diff --git a/examples/3d/预热数据.json b/examples/3d/预热数据.json
new file mode 100644
index 0000000..cd8f4f6
--- /dev/null
+++ b/examples/3d/预热数据.json
@@ -0,0 +1,4776 @@
+[
+ {
+ "timeCode": 0,
+ "blendShapes": {
+ "EyeWideLeft": 0.04909386858344078,
+ "EyeWideRight": 0.04918723553419113,
+ "JawForward": 0.08274435251951218,
+ "JawLeft": 0.0037746992893517017,
+ "MouthClose": 0.03731030598282814,
+ "MouthLeft": 0.002970063826069236,
+ "MouthSmileLeft": 0.0016158962389454246,
+ "MouthFrownLeft": 0.008321456611156464,
+ "MouthFrownRight": 0.012899022549390793,
+ "MouthDimpleLeft": 0.05686736851930618,
+ "MouthDimpleRight": 0.05087120085954666,
+ "MouthStretchLeft": 0.0001785263593774289,
+ "MouthRollLower": 0.19344422221183777,
+ "MouthRollUpper": 0.1509476602077484,
+ "MouthShrugLower": 0.22044886648654938,
+ "MouthPressLeft": 0.05291735753417015,
+ "MouthPressRight": 0.05152113363146782,
+ "MouthLowerDownLeft": 0.008183049969375134,
+ "MouthLowerDownRight": 0.0033092466183006763,
+ "BrowDownLeft": 0.00016940444766078144,
+ "BrowInnerUp": 0.03733045235276222,
+ "BrowOuterUpLeft": 0.04539983719587326,
+ "BrowOuterUpRight": 0.04560611769556999,
+ "CheekPuff": 0.017980029806494713,
+ "CheekSquintLeft": 0.0009633650770410895,
+ "NoseSneerLeft": 0.000615798810031265
+ }
+ },
+ {
+ "timeCode": 0.03333333333333333,
+ "blendShapes": {
+ "EyeWideLeft": 0.05176429823040962,
+ "EyeWideRight": 0.051838941872119904,
+ "JawForward": 0.08637341111898422,
+ "JawRight": 0.00034131971187889576,
+ "MouthClose": 0.031538382172584534,
+ "MouthLeft": 0.006543043535202742,
+ "MouthRight": 0.0036731306463479996,
+ "MouthSmileLeft": 0.0024107792414724827,
+ "MouthFrownRight": 0.004378614481538534,
+ "MouthDimpleLeft": 0.06030454859137535,
+ "MouthDimpleRight": 0.0542604997754097,
+ "MouthStretchLeft": 0.0002272722776979208,
+ "MouthRollLower": 0.2667623460292816,
+ "MouthRollUpper": 0.22100169956684113,
+ "MouthShrugLower": 0.24103586375713348,
+ "MouthPressLeft": 0.08397813141345978,
+ "MouthPressRight": 0.08374366164207458,
+ "MouthLowerDownLeft": 0.005444267299026251,
+ "BrowDownLeft": 0.00013416519504971802,
+ "BrowInnerUp": 0.04797575622797012,
+ "BrowOuterUpLeft": 0.05162524804472923,
+ "BrowOuterUpRight": 0.051780253648757935,
+ "CheekPuff": 0.019824204966425896,
+ "CheekSquintLeft": 0.0006897843559272587,
+ "NoseSneerLeft": 0.0004547601565718651
+ }
+ },
+ {
+ "timeCode": 0.06666666666666667,
+ "blendShapes": {
+ "EyeWideLeft": 0.0483274906873703,
+ "EyeWideRight": 0.048401325941085815,
+ "JawForward": 0.06667307764291763,
+ "JawRight": 0.006490835454314947,
+ "MouthClose": 0.018516995012760162,
+ "MouthLeft": 0.009457312524318695,
+ "MouthRight": 0.008158392272889614,
+ "MouthSmileLeft": 0.0019713130313903093,
+ "MouthFrownRight": 0.00022684544092044234,
+ "MouthDimpleLeft": 0.04968779534101486,
+ "MouthDimpleRight": 0.04852483421564102,
+ "MouthStretchLeft": 0.0001394642749801278,
+ "MouthRollLower": 0.16359148919582367,
+ "MouthRollUpper": 0.16930696368217468,
+ "MouthShrugLower": 0.13064441084861755,
+ "MouthPressLeft": 0.07346826791763306,
+ "MouthPressRight": 0.07622338831424713,
+ "MouthLowerDownLeft": 0.04550712928175926,
+ "MouthLowerDownRight": 0.04336031898856163,
+ "BrowDownLeft": 0.00017771996499504894,
+ "BrowInnerUp": 0.027608834207057953,
+ "BrowOuterUpLeft": 0.05084429308772087,
+ "BrowOuterUpRight": 0.051096852868795395,
+ "CheekPuff": 0.016538897529244423
+ }
+ },
+ {
+ "timeCode": 0.1,
+ "blendShapes": {
+ "EyeWideLeft": 0.04699758067727089,
+ "EyeWideRight": 0.047071803361177444,
+ "JawForward": 0.05983937159180641,
+ "JawRight": 0.011298884637653828,
+ "MouthClose": 0.02514088712632656,
+ "MouthLeft": 0.01019617635756731,
+ "MouthRight": 0.010445154272019863,
+ "MouthSmileLeft": 0.0017873189644888043,
+ "MouthFrownLeft": 0.004351915791630745,
+ "MouthDimpleLeft": 0.03885471075773239,
+ "MouthDimpleRight": 0.043162956833839417,
+ "MouthStretchLeft": 0.00012590366532094777,
+ "MouthStretchRight": 0.00006586020026588812,
+ "MouthRollLower": 0.06357335299253464,
+ "MouthRollUpper": 0.09403739869594574,
+ "MouthShrugLower": 0.0005154474056325853,
+ "MouthPressLeft": 0.06024213507771492,
+ "MouthPressRight": 0.06663059443235397,
+ "MouthLowerDownLeft": 0.09510673582553864,
+ "MouthLowerDownRight": 0.09652834385633469,
+ "MouthUpperUpLeft": 0.00002237134140159469,
+ "BrowDownLeft": 0.00013270051567815244,
+ "BrowOuterUpLeft": 0.04879893735051155,
+ "BrowOuterUpRight": 0.04908072575926781,
+ "CheekPuff": 0.01127755455672741,
+ "CheekSquintLeft": 0.0378168560564518,
+ "CheekSquintRight": 0.038792628794908524,
+ "NoseSneerRight": 0.0013106400147080421
+ }
+ },
+ {
+ "timeCode": 0.13333333333333333,
+ "blendShapes": {
+ "EyeWideLeft": 0.04552481696009636,
+ "EyeWideRight": 0.04560618847608566,
+ "JawForward": 0.08531171828508377,
+ "JawRight": 0.006278425455093384,
+ "JawOpen": 0.056222349405288696,
+ "MouthClose": 0.02715170755982399,
+ "MouthFunnel": 0.06646210700273514,
+ "MouthLeft": 0.0053611332550644875,
+ "MouthRight": 0.0042992751114070415,
+ "MouthSmileRight": 0.0010203506099060178,
+ "MouthFrownLeft": 0.003923207055777311,
+ "MouthDimpleLeft": 0.03852558508515358,
+ "MouthDimpleRight": 0.044083259999752045,
+ "MouthStretchLeft": 0.0009709183359518647,
+ "MouthStretchRight": 0.0010775149567052722,
+ "MouthRollUpper": 0.03629804402589798,
+ "MouthShrugUpper": 0.027185991406440735,
+ "MouthPressRight": 0.004899017047137022,
+ "MouthLowerDownLeft": 0.16459910571575165,
+ "MouthLowerDownRight": 0.16773150861263275,
+ "MouthUpperUpLeft": 0.034170325845479965,
+ "MouthUpperUpRight": 0.033821579068899155,
+ "BrowDownLeft": 0.00008216478454414755,
+ "BrowOuterUpLeft": 0.05181241035461426,
+ "BrowOuterUpRight": 0.05210764333605766,
+ "CheekPuff": 0.010198947973549366,
+ "CheekSquintLeft": 0.04301799088716507,
+ "CheekSquintRight": 0.043543919920921326,
+ "NoseSneerLeft": 0.011942118406295776,
+ "NoseSneerRight": 0.012635322287678719
+ }
+ },
+ {
+ "timeCode": 0.16666666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0000430757827416528,
+ "EyeWideLeft": 0.0438491627573967,
+ "EyeWideRight": 0.043943338096141815,
+ "JawForward": 0.08330068737268448,
+ "JawRight": 0.003234473755583167,
+ "JawOpen": 0.07019602507352829,
+ "MouthClose": 0.02063908241689205,
+ "MouthFunnel": 0.14116954803466797,
+ "MouthLeft": 0.0019297974649816751,
+ "MouthSmileRight": 0.002917029894888401,
+ "MouthFrownLeft": 0.007273045368492603,
+ "MouthFrownRight": 0.005398026201874018,
+ "MouthDimpleLeft": 0.029503295198082924,
+ "MouthDimpleRight": 0.03379058837890625,
+ "MouthStretchLeft": 0.0031333358492702246,
+ "MouthStretchRight": 0.003326995996758342,
+ "MouthShrugUpper": 0.02943424880504608,
+ "MouthPressRight": 0.0023310144897550344,
+ "MouthLowerDownLeft": 0.1795864701271057,
+ "MouthLowerDownRight": 0.18294034898281097,
+ "MouthUpperUpLeft": 0.07281093299388885,
+ "MouthUpperUpRight": 0.07207900285720825,
+ "BrowDownLeft": 0.00018212132272310555,
+ "BrowOuterUpLeft": 0.05215528607368469,
+ "BrowOuterUpRight": 0.052544016391038895,
+ "CheekPuff": 0.0069903223775327206,
+ "CheekSquintLeft": 0.01075306348502636,
+ "CheekSquintRight": 0.010604671202600002,
+ "NoseSneerLeft": 0.00546381575986743,
+ "NoseSneerRight": 0.005297993775457144
+ }
+ },
+ {
+ "timeCode": 0.2,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00007370906678261235,
+ "EyeWideLeft": 0.044968679547309875,
+ "EyeWideRight": 0.04506882280111313,
+ "JawForward": 0.06263642758131027,
+ "JawRight": 0.0022554702591151,
+ "JawOpen": 0.05705161765217781,
+ "MouthClose": 0.009533600881695747,
+ "MouthFunnel": 0.12835875153541565,
+ "MouthLeft": 0.0016470078844577074,
+ "MouthSmileLeft": 0.011253027245402336,
+ "MouthSmileRight": 0.014231614768505096,
+ "MouthFrownLeft": 0.004983042366802692,
+ "MouthFrownRight": 0.0032697278074920177,
+ "MouthDimpleLeft": 0.02249894104897976,
+ "MouthDimpleRight": 0.026643875986337662,
+ "MouthStretchLeft": 0.003704303642734885,
+ "MouthStretchRight": 0.003905602963641286,
+ "MouthRollLower": 0.031059136614203453,
+ "MouthShrugUpper": 0.0376151017844677,
+ "MouthPressRight": 0.002263762755319476,
+ "MouthLowerDownLeft": 0.17140038311481476,
+ "MouthLowerDownRight": 0.17500607669353485,
+ "MouthUpperUpLeft": 0.0986216813325882,
+ "MouthUpperUpRight": 0.09799834340810776,
+ "BrowDownLeft": 0.0003138933680020273,
+ "BrowInnerUp": 0.005579467862844467,
+ "BrowOuterUpLeft": 0.05167781934142113,
+ "BrowOuterUpRight": 0.05220639333128929,
+ "CheekPuff": 0.002903926884755492,
+ "CheekSquintLeft": 0.0008199757430702448,
+ "CheekSquintRight": 0.0007426585652865469,
+ "NoseSneerLeft": 0.015052822418510914,
+ "NoseSneerRight": 0.014898194931447506
+ }
+ },
+ {
+ "timeCode": 0.23333333333333334,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00007597375952173024,
+ "EyeWideLeft": 0.04364388436079025,
+ "EyeWideRight": 0.04374702274799347,
+ "JawForward": 0.023431427776813507,
+ "JawLeft": 0.0004866778035648167,
+ "JawRight": 0.004747930448502302,
+ "JawOpen": 0.012638114392757416,
+ "MouthClose": 0.0022458890452980995,
+ "MouthFunnel": 0.021327584981918335,
+ "MouthLeft": 0.0016007820377126336,
+ "MouthSmileLeft": 0.03064257651567459,
+ "MouthSmileRight": 0.03344055265188217,
+ "MouthFrownLeft": 0.0021373245399445295,
+ "MouthDimpleLeft": 0.032789502292871475,
+ "MouthDimpleRight": 0.03700161725282669,
+ "MouthStretchLeft": 0.005390611477196217,
+ "MouthStretchRight": 0.005590684246271849,
+ "MouthRollLower": 0.0999336838722229,
+ "MouthShrugLower": 0.00014013517647981644,
+ "MouthShrugUpper": 0.0446472093462944,
+ "MouthPressRight": 0.002656712895259261,
+ "MouthLowerDownLeft": 0.17504680156707764,
+ "MouthLowerDownRight": 0.1793314814567566,
+ "MouthUpperUpLeft": 0.12546084821224213,
+ "MouthUpperUpRight": 0.12494885921478271,
+ "BrowDownLeft": 0.00043271228787489235,
+ "BrowInnerUp": 0.0035775809083133936,
+ "BrowOuterUpLeft": 0.04874139651656151,
+ "BrowOuterUpRight": 0.04939508065581322,
+ "CheekSquintRight": 0.0002749055274762213,
+ "NoseSneerLeft": 0.009690075181424618,
+ "NoseSneerRight": 0.009835842996835709
+ }
+ },
+ {
+ "timeCode": 0.26666666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000018448236005497165,
+ "EyeWideLeft": 0.04300412908196449,
+ "EyeWideRight": 0.04308943822979927,
+ "JawRight": 0.001463735243305564,
+ "JawOpen": 0.013950558379292488,
+ "MouthClose": 0.004197978414595127,
+ "MouthFunnel": 0.0160441342741251,
+ "MouthLeft": 0.001804452738724649,
+ "MouthSmileLeft": 0.0218086838722229,
+ "MouthSmileRight": 0.02516808919608593,
+ "MouthFrownLeft": 0.0011018963996320963,
+ "MouthDimpleLeft": 0.04279676452279091,
+ "MouthDimpleRight": 0.04590671882033348,
+ "MouthStretchLeft": 0.004040229134261608,
+ "MouthStretchRight": 0.004248089622706175,
+ "MouthRollLower": 0.10233314335346222,
+ "MouthRollUpper": 0.0008934366051107645,
+ "MouthShrugLower": 0.014283666387200356,
+ "MouthShrugUpper": 0.04629429802298546,
+ "MouthPressLeft": 0.008661924861371517,
+ "MouthPressRight": 0.009848385117948055,
+ "MouthLowerDownLeft": 0.1320636123418808,
+ "MouthLowerDownRight": 0.1356123983860016,
+ "MouthUpperUpLeft": 0.12151701748371124,
+ "MouthUpperUpRight": 0.12122178077697754,
+ "BrowDownLeft": 0.00037142905057407916,
+ "BrowOuterUpLeft": 0.046599846333265305,
+ "BrowOuterUpRight": 0.047200221568346024,
+ "NoseSneerRight": 0.00008113584044622257
+ }
+ },
+ {
+ "timeCode": 0.3,
+ "blendShapes": {
+ "EyeWideLeft": 0.0421907864511013,
+ "EyeWideRight": 0.04227755218744278,
+ "JawRight": 0.001106497598811984,
+ "JawOpen": 0.009309712797403336,
+ "MouthLeft": 0.0033553619869053364,
+ "MouthRight": 0.0038661721628159285,
+ "MouthSmileLeft": 0.04659852012991905,
+ "MouthSmileRight": 0.04899943992495537,
+ "MouthFrownLeft": 0.001756009180098772,
+ "MouthDimpleLeft": 0.04304472729563713,
+ "MouthDimpleRight": 0.046147506684064865,
+ "MouthStretchLeft": 0.004639585502445698,
+ "MouthStretchRight": 0.004804192576557398,
+ "MouthRollLower": 0.14240360260009766,
+ "MouthShrugLower": 0.09667696058750153,
+ "MouthShrugUpper": 0.06693041324615479,
+ "MouthPressLeft": 0.0018535926938056946,
+ "MouthPressRight": 0.003419385990127921,
+ "MouthLowerDownLeft": 0.08272821456193924,
+ "MouthLowerDownRight": 0.08606410026550293,
+ "MouthUpperUpLeft": 0.09455221146345139,
+ "MouthUpperUpRight": 0.09490181505680084,
+ "BrowDownLeft": 0.00035790313268080354,
+ "BrowOuterUpLeft": 0.0398060642182827,
+ "BrowOuterUpRight": 0.04039021208882332,
+ "CheekSquintRight": 0.0003441984299570322,
+ "NoseSneerRight": 0.0007870721747167408
+ }
+ },
+ {
+ "timeCode": 0.3333333333333333,
+ "blendShapes": {
+ "EyeWideLeft": 0.04713280126452446,
+ "EyeWideRight": 0.04718563333153725,
+ "JawLeft": 0.00734914094209671,
+ "JawOpen": 0.11710750311613083,
+ "MouthClose": 0.03735492378473282,
+ "MouthFunnel": 0.07757364213466644,
+ "MouthPucker": 0.06739503145217896,
+ "MouthRight": 0.0015162021154537797,
+ "MouthSmileLeft": 0.0341448113322258,
+ "MouthSmileRight": 0.03785133361816406,
+ "MouthFrownLeft": 0.01549991313368082,
+ "MouthFrownRight": 0.015982655808329582,
+ "MouthDimpleLeft": 0.023896226659417152,
+ "MouthDimpleRight": 0.025557292625308037,
+ "MouthStretchRight": 0.0001968369324458763,
+ "MouthRollLower": 0.08674018085002899,
+ "MouthShrugLower": 0.09423428028821945,
+ "MouthShrugUpper": 0.0730804055929184,
+ "MouthPressLeft": 0.0014900731621310115,
+ "MouthLowerDownLeft": 0.041325196623802185,
+ "MouthLowerDownRight": 0.043500740081071854,
+ "MouthUpperUpLeft": 0.04414766654372215,
+ "MouthUpperUpRight": 0.04386765882372856,
+ "BrowDownLeft": 0.0002624438493512571,
+ "BrowInnerUp": 0.0034544458612799644,
+ "BrowOuterUpLeft": 0.03643302991986275,
+ "BrowOuterUpRight": 0.03686165437102318,
+ "CheekSquintLeft": 0.0006551225669682026,
+ "NoseSneerLeft": 0.00033033787622116506
+ }
+ },
+ {
+ "timeCode": 0.36666666666666664,
+ "blendShapes": {
+ "EyeWideLeft": 0.04880787432193756,
+ "EyeWideRight": 0.048834580928087234,
+ "JawForward": 0.0012132853735238314,
+ "JawLeft": 0.010296992026269436,
+ "JawRight": 0.004242533352226019,
+ "JawOpen": 0.2387804239988327,
+ "MouthClose": 0.05443210527300835,
+ "MouthFunnel": 0.17573952674865723,
+ "MouthPucker": 0.045962996780872345,
+ "MouthLeft": 0.000800887995865196,
+ "MouthSmileRight": 0.0028437504079192877,
+ "MouthFrownLeft": 0.03981887921690941,
+ "MouthFrownRight": 0.04141899198293686,
+ "MouthDimpleLeft": 0.027862656861543655,
+ "MouthDimpleRight": 0.02837301604449749,
+ "MouthStretchRight": 0.00011275844735791907,
+ "MouthRollLower": 0.010047785006463528,
+ "MouthShrugUpper": 0.04374740645289421,
+ "MouthPressLeft": 0.0012259759241715074,
+ "MouthLowerDownLeft": 0.04478950425982475,
+ "MouthLowerDownRight": 0.04574901983141899,
+ "MouthUpperUpLeft": 0.020481286570429802,
+ "MouthUpperUpRight": 0.018696559593081474,
+ "BrowDownLeft": 0.00020732970733661205,
+ "BrowInnerUp": 0.01217942126095295,
+ "BrowOuterUpLeft": 0.03596048429608345,
+ "BrowOuterUpRight": 0.03630341589450836,
+ "CheekSquintLeft": 0.0016224675346165895,
+ "NoseSneerLeft": 0.0016743735177442431
+ }
+ },
+ {
+ "timeCode": 0.4,
+ "blendShapes": {
+ "EyeWideLeft": 0.050855085253715515,
+ "EyeWideRight": 0.05092034861445427,
+ "JawForward": 0.014472287148237228,
+ "JawLeft": 0.014567265287041664,
+ "JawRight": 0.006549736950546503,
+ "JawOpen": 0.23069392144680023,
+ "MouthClose": 0.058962054550647736,
+ "MouthFunnel": 0.2306196689605713,
+ "MouthPucker": 0.0694744810461998,
+ "MouthLeft": 0.0006447588093578815,
+ "MouthSmileRight": 0.0020010625012218952,
+ "MouthFrownLeft": 0.040820300579071045,
+ "MouthFrownRight": 0.041924722492694855,
+ "MouthDimpleLeft": 0.03440316021442413,
+ "MouthDimpleRight": 0.03476155921816826,
+ "MouthStretchRight": 0.00006476357521023601,
+ "MouthShrugUpper": 0.036531731486320496,
+ "MouthPressLeft": 0.0007213202770799398,
+ "MouthLowerDownLeft": 0.03537873178720474,
+ "MouthLowerDownRight": 0.0355040617287159,
+ "MouthUpperUpLeft": 0.0013188431039452553,
+ "BrowDownLeft": 0.00021175022993702441,
+ "BrowInnerUp": 0.024619033560156822,
+ "BrowOuterUpLeft": 0.046404238790273666,
+ "BrowOuterUpRight": 0.04671540483832359,
+ "CheekSquintLeft": 0.001347424928098917,
+ "NoseSneerLeft": 0.001272896770387888
+ }
+ },
+ {
+ "timeCode": 0.43333333333333335,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00003920631206710823,
+ "EyeWideLeft": 0.05322340130805969,
+ "EyeWideRight": 0.05333605781197548,
+ "JawLeft": 0.0258356723934412,
+ "JawRight": 0.012789641506969929,
+ "JawOpen": 0.17524926364421844,
+ "MouthClose": 0.06833981722593307,
+ "MouthFunnel": 0.23655104637145996,
+ "MouthPucker": 0.16716325283050537,
+ "MouthSmileRight": 0.0028060991317033768,
+ "MouthFrownLeft": 0.059942878782749176,
+ "MouthFrownRight": 0.06247877702116966,
+ "MouthDimpleLeft": 0.043837808072566986,
+ "MouthDimpleRight": 0.04276290535926819,
+ "MouthStretchRight": 0.00007595340866828337,
+ "MouthShrugLower": 0.0124956164509058,
+ "MouthShrugUpper": 0.051590681076049805,
+ "MouthPressLeft": 0.03076986037194729,
+ "MouthPressRight": 0.028048116713762283,
+ "MouthLowerDownLeft": 0.0010625921422615647,
+ "MouthUpperUpLeft": 0.00034899511956609786,
+ "BrowDownLeft": 0.00027394070639275014,
+ "BrowInnerUp": 0.047539301216602325,
+ "BrowOuterUpLeft": 0.05739229544997215,
+ "BrowOuterUpRight": 0.0578671395778656,
+ "CheekPuff": 0.0019287025788798928,
+ "CheekSquintLeft": 0.0011940390104427934,
+ "NoseSneerLeft": 0.0011921830009669065
+ }
+ },
+ {
+ "timeCode": 0.4666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00004944560714648105,
+ "EyeWideLeft": 0.05217621102929115,
+ "EyeWideRight": 0.05229198560118675,
+ "JawLeft": 0.028981680050492287,
+ "JawRight": 0.012796874158084393,
+ "JawOpen": 0.11448440700769424,
+ "MouthClose": 0.06376175582408905,
+ "MouthFunnel": 0.1184716746211052,
+ "MouthPucker": 0.1986718624830246,
+ "MouthSmileRight": 0.001958487555384636,
+ "MouthFrownLeft": 0.05957633629441261,
+ "MouthFrownRight": 0.062342751771211624,
+ "MouthDimpleLeft": 0.06491029262542725,
+ "MouthDimpleRight": 0.06270434707403183,
+ "MouthStretchRight": 0.00003322287739138119,
+ "MouthRollLower": 0.02069052867591381,
+ "MouthShrugLower": 0.10506346821784973,
+ "MouthShrugUpper": 0.036857109516859055,
+ "MouthPressLeft": 0.0028811143711209297,
+ "MouthLowerDownLeft": 0.002125414554029703,
+ "MouthLowerDownRight": 0.00019218008674215525,
+ "BrowDownLeft": 0.0002982250298373401,
+ "BrowInnerUp": 0.0499565564095974,
+ "BrowOuterUpLeft": 0.06586059182882309,
+ "BrowOuterUpRight": 0.0663822591304779,
+ "CheekPuff": 0.007049162872135639,
+ "CheekSquintLeft": 0.0010015107691287994,
+ "NoseSneerLeft": 0.0008748019463382661
+ }
+ },
+ {
+ "timeCode": 0.5,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00009094681445276365,
+ "EyeWideLeft": 0.05128447338938713,
+ "EyeWideRight": 0.051415372639894485,
+ "JawLeft": 0.024046001955866814,
+ "JawRight": 0.008744348771870136,
+ "JawOpen": 0.06595561653375626,
+ "MouthClose": 0.05971087887883186,
+ "MouthFunnel": 0.0799483060836792,
+ "MouthPucker": 0.1624756157398224,
+ "MouthLeft": 0.0009026562911458313,
+ "MouthSmileLeft": 0.01168419886380434,
+ "MouthSmileRight": 0.013099799863994122,
+ "MouthFrownLeft": 0.04743245244026184,
+ "MouthFrownRight": 0.04899781197309494,
+ "MouthDimpleLeft": 0.05569469556212425,
+ "MouthDimpleRight": 0.05438410863280296,
+ "MouthStretchRight": 0.0000362204882549122,
+ "MouthRollLower": 0.027147559449076653,
+ "MouthShrugLower": 0.08692283928394318,
+ "MouthShrugUpper": 0.015050656162202358,
+ "MouthPressLeft": 0.0016143802786245942,
+ "MouthLowerDownLeft": 0.021751515567302704,
+ "MouthLowerDownRight": 0.02039528638124466,
+ "BrowDownLeft": 0.0003925047058146447,
+ "BrowInnerUp": 0.053112246096134186,
+ "BrowOuterUpLeft": 0.07244732975959778,
+ "BrowOuterUpRight": 0.07304077595472336,
+ "CheekPuff": 0.01030629314482212,
+ "CheekSquintLeft": 0.00047086382983252406,
+ "NoseSneerLeft": 0.00044371929834596813
+ }
+ },
+ {
+ "timeCode": 0.5333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00011450730380602181,
+ "EyeWideLeft": 0.05138695240020752,
+ "EyeWideRight": 0.05153723806142807,
+ "JawLeft": 0.01750028133392334,
+ "JawRight": 0.004737684968858957,
+ "JawOpen": 0.04440927132964134,
+ "MouthClose": 0.047217197716236115,
+ "MouthFunnel": 0.06440270692110062,
+ "MouthPucker": 0.13631418347358704,
+ "MouthLeft": 0.0008305883384309709,
+ "MouthSmileLeft": 0.04407787695527077,
+ "MouthSmileRight": 0.04495618864893913,
+ "MouthFrownLeft": 0.03429189324378967,
+ "MouthFrownRight": 0.03543754667043686,
+ "MouthDimpleLeft": 0.04229430481791496,
+ "MouthDimpleRight": 0.04112578183412552,
+ "MouthStretchRight": 0.000026260520826326683,
+ "MouthRollLower": 0.01212532538920641,
+ "MouthShrugLower": 0.09457218647003174,
+ "MouthShrugUpper": 0.012365002185106277,
+ "MouthPressLeft": 0.0012266014236956835,
+ "MouthLowerDownLeft": 0.026599029079079628,
+ "MouthLowerDownRight": 0.025278229266405106,
+ "MouthUpperUpRight": 0.00007695997919654474,
+ "BrowDownLeft": 0.0004958502249792218,
+ "BrowInnerUp": 0.06544601172208786,
+ "BrowOuterUpLeft": 0.07836782187223434,
+ "BrowOuterUpRight": 0.07906456291675568,
+ "CheekPuff": 0.01179929543286562,
+ "CheekSquintLeft": 0.0002468158199917525,
+ "NoseSneerLeft": 0.00026589774643070996
+ }
+ },
+ {
+ "timeCode": 0.5666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00014179243589751422,
+ "EyeWideLeft": 0.05037366971373558,
+ "EyeWideRight": 0.050536517053842545,
+ "JawLeft": 0.014608800411224365,
+ "JawRight": 0.0030036629177629948,
+ "JawOpen": 0.027779042720794678,
+ "MouthClose": 0.03697945922613144,
+ "MouthFunnel": 0.043962106108665466,
+ "MouthPucker": 0.12605439126491547,
+ "MouthLeft": 0.000454522407380864,
+ "MouthSmileLeft": 0.044840093702077866,
+ "MouthSmileRight": 0.04540067911148071,
+ "MouthFrownLeft": 0.029083650559186935,
+ "MouthFrownRight": 0.030882898718118668,
+ "MouthDimpleLeft": 0.02779555320739746,
+ "MouthDimpleRight": 0.025590619072318077,
+ "MouthStretchRight": 0.000006495850811916171,
+ "MouthRollLower": 0.002697255462408066,
+ "MouthShrugLower": 0.08917269110679626,
+ "MouthShrugUpper": 0.002718421397730708,
+ "MouthPressLeft": 0.0018791946349665523,
+ "MouthLowerDownLeft": 0.0257452130317688,
+ "MouthLowerDownRight": 0.023666465654969215,
+ "MouthUpperUpRight": 0.00015075654664542526,
+ "BrowDownLeft": 0.000537832616828382,
+ "BrowInnerUp": 0.06274097412824631,
+ "BrowOuterUpLeft": 0.08448398113250732,
+ "BrowOuterUpRight": 0.08522108942270279,
+ "CheekPuff": 0.015130112878978252,
+ "CheekSquintLeft": 0.0005761317443102598,
+ "NoseSneerLeft": 0.0002577015256974846
+ }
+ },
+ {
+ "timeCode": 0.6,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00014960412227082998,
+ "EyeWideLeft": 0.05388586223125458,
+ "EyeWideRight": 0.05405860021710396,
+ "JawLeft": 0.008879541419446468,
+ "JawRight": 0.0009555444121360779,
+ "JawOpen": 0.008696000091731548,
+ "MouthClose": 0.028692884370684624,
+ "MouthFunnel": 0.04582735523581505,
+ "MouthPucker": 0.055525608360767365,
+ "MouthLeft": 0.0005225561326369643,
+ "MouthSmileLeft": 0.05295681580901146,
+ "MouthSmileRight": 0.054360564798116684,
+ "MouthFrownLeft": 0.02145511284470558,
+ "MouthFrownRight": 0.022766608744859695,
+ "MouthDimpleLeft": 0.016036449000239372,
+ "MouthDimpleRight": 0.014884171076118946,
+ "MouthStretchRight": 0.00007198055391199887,
+ "MouthShrugLower": 0.06266500055789948,
+ "MouthShrugUpper": 0.004574291408061981,
+ "MouthPressLeft": 0.0018114502308890224,
+ "MouthLowerDownLeft": 0.028934523463249207,
+ "MouthLowerDownRight": 0.028078872710466385,
+ "MouthUpperUpRight": 0.000060648646467598155,
+ "BrowDownLeft": 0.000571813085116446,
+ "BrowInnerUp": 0.06281480193138123,
+ "BrowOuterUpLeft": 0.09030161052942276,
+ "BrowOuterUpRight": 0.09104438871145248,
+ "CheekPuff": 0.011494711972773075,
+ "CheekSquintLeft": 0.0005550967762246728,
+ "NoseSneerLeft": 0.00032657626434229314
+ }
+ },
+ {
+ "timeCode": 0.6333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00013896363088861108,
+ "EyeWideLeft": 0.05819561332464218,
+ "EyeWideRight": 0.05836781859397888,
+ "JawLeft": 0.012542136013507843,
+ "JawRight": 0.0051801023073494434,
+ "MouthClose": 0.02136518619954586,
+ "MouthFunnel": 0.03411320596933365,
+ "MouthSmileLeft": 0.029168982058763504,
+ "MouthSmileRight": 0.030374612659215927,
+ "MouthFrownLeft": 0.012679493054747581,
+ "MouthFrownRight": 0.013459809124469757,
+ "MouthDimpleLeft": 0.006074885372072458,
+ "MouthDimpleRight": 0.005336166359484196,
+ "MouthStretchRight": 0.0000720712123438716,
+ "MouthRollUpper": 0.007705633528530598,
+ "MouthShrugLower": 0.051185015588998795,
+ "MouthPressLeft": 0.0014152113581076264,
+ "MouthLowerDownLeft": 0.030298074707388878,
+ "MouthLowerDownRight": 0.029768196865916252,
+ "MouthUpperUpLeft": 0.000022713535145157948,
+ "BrowDownLeft": 0.0006262306706048548,
+ "BrowInnerUp": 0.06637351214885712,
+ "BrowOuterUpLeft": 0.09882577508687973,
+ "BrowOuterUpRight": 0.09960000962018967,
+ "CheekPuff": 0.012648369185626507,
+ "CheekSquintLeft": 0.0007165097049437463,
+ "NoseSneerLeft": 0.0003865215403493494
+ }
+ },
+ {
+ "timeCode": 0.6666666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00008658033038955182,
+ "EyeWideLeft": 0.05830613896250725,
+ "EyeWideRight": 0.05846733599901199,
+ "JawForward": 0.0003087875375058502,
+ "JawLeft": 0.019359197467565536,
+ "JawRight": 0.013868443667888641,
+ "MouthClose": 0.010908069089055061,
+ "MouthLeft": 0.0003160345950163901,
+ "MouthSmileLeft": 0.015589704737067223,
+ "MouthSmileRight": 0.015715867280960083,
+ "MouthFrownLeft": 0.02165139652788639,
+ "MouthFrownRight": 0.022601960226893425,
+ "MouthDimpleLeft": 0.011891982518136501,
+ "MouthDimpleRight": 0.010760480538010597,
+ "MouthStretchLeft": 0.0012718366924673319,
+ "MouthStretchRight": 0.0012732179602608085,
+ "MouthRollUpper": 0.03260040655732155,
+ "MouthShrugLower": 0.05736304074525833,
+ "MouthPressLeft": 0.00029221142176538706,
+ "MouthLowerDownLeft": 0.038592662662267685,
+ "MouthLowerDownRight": 0.0375712588429451,
+ "MouthUpperUpLeft": 0.0006069311057217419,
+ "BrowDownLeft": 0.0005507554742507637,
+ "BrowInnerUp": 0.0576348602771759,
+ "BrowOuterUpLeft": 0.10197591781616211,
+ "BrowOuterUpRight": 0.10265427827835083,
+ "CheekPuff": 0.009204410016536713,
+ "CheekSquintLeft": 0.0010161976097151637,
+ "NoseSneerLeft": 0.0008003743714652956
+ }
+ },
+ {
+ "timeCode": 0.7,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000060420083173085004,
+ "EyeWideLeft": 0.06050930544734001,
+ "EyeWideRight": 0.06067107245326042,
+ "JawForward": 0.02015489526093006,
+ "JawLeft": 0.014059866778552532,
+ "JawRight": 0.010264432989060879,
+ "MouthClose": 0.007409484125673771,
+ "MouthLeft": 0.00032714931876398623,
+ "MouthSmileLeft": 0.01160480547696352,
+ "MouthSmileRight": 0.010752897709608078,
+ "MouthFrownLeft": 0.018571555614471436,
+ "MouthFrownRight": 0.020069357007741928,
+ "MouthDimpleLeft": 0.02203572355210781,
+ "MouthDimpleRight": 0.02005632594227791,
+ "MouthStretchLeft": 0.0033113330136984587,
+ "MouthStretchRight": 0.00324895023368299,
+ "MouthRollLower": 0.008537515066564083,
+ "MouthRollUpper": 0.030502423644065857,
+ "MouthShrugLower": 0.0662161335349083,
+ "MouthLowerDownLeft": 0.029112083837389946,
+ "MouthLowerDownRight": 0.02744230069220066,
+ "MouthUpperUpLeft": 0.0006030394579283893,
+ "BrowDownLeft": 0.0004633985226973891,
+ "BrowInnerUp": 0.04444563761353493,
+ "BrowOuterUpLeft": 0.10243071615695953,
+ "BrowOuterUpRight": 0.10301672667264938,
+ "CheekPuff": 0.0037963620852679014,
+ "CheekSquintLeft": 0.0011181080481037498,
+ "NoseSneerLeft": 0.0008012861362658441
+ }
+ },
+ {
+ "timeCode": 0.7333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000057829693105304614,
+ "EyeWideLeft": 0.06386114656925201,
+ "EyeWideRight": 0.06403321027755737,
+ "JawForward": 0.02712121605873108,
+ "JawLeft": 0.00931666512042284,
+ "JawRight": 0.007481846492737532,
+ "MouthClose": 0.005081003066152334,
+ "MouthLeft": 0.0006029164069332182,
+ "MouthSmileLeft": 0.013013076968491077,
+ "MouthSmileRight": 0.011955021880567074,
+ "MouthFrownLeft": 0.015285705216228962,
+ "MouthFrownRight": 0.017306573688983917,
+ "MouthDimpleLeft": 0.02610144019126892,
+ "MouthDimpleRight": 0.023735269904136658,
+ "MouthStretchLeft": 0.004114782903343439,
+ "MouthStretchRight": 0.004034502897411585,
+ "MouthRollLower": 0.019705060869455338,
+ "MouthRollUpper": 0.029831644147634506,
+ "MouthShrugLower": 0.06607893854379654,
+ "MouthLowerDownLeft": 0.02047811634838581,
+ "MouthLowerDownRight": 0.018669964745640755,
+ "MouthUpperUpLeft": 0.0008829586440697312,
+ "BrowDownLeft": 0.0004396965669002384,
+ "BrowInnerUp": 0.039623986929655075,
+ "BrowOuterUpLeft": 0.10663571208715439,
+ "BrowOuterUpRight": 0.1072225570678711,
+ "CheekPuff": 0.0008635992999188602,
+ "CheekSquintLeft": 0.0012678500497713685,
+ "NoseSneerLeft": 0.0009876906406134367
+ }
+ },
+ {
+ "timeCode": 0.7666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00004905332389171235,
+ "EyeWideLeft": 0.06535690277814865,
+ "EyeWideRight": 0.06552909314632416,
+ "JawForward": 0.03166479989886284,
+ "JawLeft": 0.008339337073266506,
+ "JawRight": 0.006537981331348419,
+ "MouthClose": 0.004606977570801973,
+ "MouthLeft": 0.00040678284130990505,
+ "MouthSmileLeft": 0.0038907232228666544,
+ "MouthSmileRight": 0.002906321082264185,
+ "MouthFrownLeft": 0.013922994956374168,
+ "MouthFrownRight": 0.016276706010103226,
+ "MouthDimpleLeft": 0.03003581240773201,
+ "MouthDimpleRight": 0.02738792635500431,
+ "MouthStretchLeft": 0.0039477902464568615,
+ "MouthStretchRight": 0.0038663477171212435,
+ "MouthRollLower": 0.02569706179201603,
+ "MouthRollUpper": 0.03420857712626457,
+ "MouthShrugLower": 0.08132851868867874,
+ "MouthPressLeft": 0.00016651779878884554,
+ "MouthLowerDownLeft": 0.01875080168247223,
+ "MouthLowerDownRight": 0.016838690266013145,
+ "MouthUpperUpLeft": 0.0007993743056431413,
+ "BrowDownLeft": 0.0004177710507065058,
+ "BrowInnerUp": 0.03397909551858902,
+ "BrowOuterUpLeft": 0.10405345261096954,
+ "BrowOuterUpRight": 0.10462651401758194,
+ "CheekPuff": 0.00011244475899729878,
+ "CheekSquintLeft": 0.0012846026802435517,
+ "NoseSneerLeft": 0.000993303838185966
+ }
+ },
+ {
+ "timeCode": 0.8,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00004824683128390461,
+ "EyeWideLeft": 0.0647880807518959,
+ "EyeWideRight": 0.06495911628007889,
+ "JawForward": 0.03459252044558525,
+ "JawLeft": 0.008764858357608318,
+ "JawRight": 0.007012029178440571,
+ "MouthClose": 0.0038680005818605423,
+ "MouthLeft": 0.00026761481421999633,
+ "MouthSmileLeft": 0.00100492883939296,
+ "MouthFrownLeft": 0.012565935961902142,
+ "MouthFrownRight": 0.014555400237441063,
+ "MouthDimpleLeft": 0.02934262529015541,
+ "MouthDimpleRight": 0.027052540332078934,
+ "MouthStretchLeft": 0.003398911328986287,
+ "MouthStretchRight": 0.003319501644000411,
+ "MouthRollLower": 0.029436251148581505,
+ "MouthRollUpper": 0.03685636445879936,
+ "MouthShrugLower": 0.08686419576406479,
+ "MouthLowerDownLeft": 0.025312134996056557,
+ "MouthLowerDownRight": 0.02355443686246872,
+ "MouthUpperUpLeft": 0.0006433987291529775,
+ "BrowDownLeft": 0.00041789939859881997,
+ "BrowInnerUp": 0.03404935076832771,
+ "BrowOuterUpLeft": 0.09967148303985596,
+ "BrowOuterUpRight": 0.10024082660675049,
+ "CheekPuff": 0.0015565133653581142,
+ "CheekSquintLeft": 0.0010617567459121346,
+ "NoseSneerLeft": 0.0008587919292040169
+ }
+ },
+ {
+ "timeCode": 0.8333333333333334,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000033512016671011224,
+ "EyeWideLeft": 0.06516481935977936,
+ "EyeWideRight": 0.06533562391996384,
+ "JawForward": 0.02423478104174137,
+ "JawLeft": 0.0057341428473591805,
+ "JawRight": 0.003535618307068944,
+ "MouthClose": 0.01475450862199068,
+ "MouthSmileLeft": 0.0015736501663923264,
+ "MouthSmileRight": 0.0005443593836389482,
+ "MouthFrownLeft": 0.006559924688190222,
+ "MouthFrownRight": 0.007880745455622673,
+ "MouthDimpleLeft": 0.012631773948669434,
+ "MouthDimpleRight": 0.011054015718400478,
+ "MouthStretchLeft": 0.00008917681407183409,
+ "MouthStretchRight": 0.000012481521480367519,
+ "MouthRollLower": 0.00842565018683672,
+ "MouthRollUpper": 0.015125952661037445,
+ "MouthShrugLower": 0.06450888514518738,
+ "MouthPressRight": 0.00004537903441814706,
+ "MouthLowerDownLeft": 0.016087068244814873,
+ "MouthLowerDownRight": 0.014510761015117168,
+ "MouthUpperUpLeft": 0.00028090644627809525,
+ "BrowDownLeft": 0.00039892055792734027,
+ "BrowInnerUp": 0.029785597696900368,
+ "BrowOuterUpLeft": 0.0950162336230278,
+ "BrowOuterUpRight": 0.09556377679109573,
+ "CheekPuff": 0.003241612110286951,
+ "CheekSquintLeft": 0.000530259043443948,
+ "NoseSneerLeft": 0.00044932178570888937
+ }
+ },
+ {
+ "timeCode": 0.8666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000007994812222023029,
+ "EyeWideLeft": 0.06203079596161842,
+ "EyeWideRight": 0.06218498572707176,
+ "JawForward": 0.011030352674424648,
+ "JawLeft": 0.007981290109455585,
+ "JawRight": 0.004716754890978336,
+ "MouthClose": 0.02012304589152336,
+ "MouthPucker": 0.054777633398771286,
+ "MouthRight": 0.0011346343671903014,
+ "MouthSmileLeft": 0.0011756867170333862,
+ "MouthFrownLeft": 0.012445468455553055,
+ "MouthFrownRight": 0.013532235287129879,
+ "MouthDimpleLeft": 0.0012009190395474434,
+ "MouthStretchLeft": 0.00009191757999360561,
+ "MouthShrugLower": 0.03560175746679306,
+ "MouthPressLeft": 0.01115319412201643,
+ "MouthPressRight": 0.011299301870167255,
+ "MouthLowerDownLeft": 0.003501737955957651,
+ "MouthLowerDownRight": 0.001966276904568076,
+ "MouthUpperUpLeft": 0.000149365485413,
+ "BrowDownLeft": 0.00034603383392095566,
+ "BrowInnerUp": 0.029270755127072334,
+ "BrowOuterUpLeft": 0.0881294310092926,
+ "BrowOuterUpRight": 0.08865009248256683,
+ "CheekPuff": 0.010881266556680202,
+ "CheekSquintLeft": 0.00012007978511974216,
+ "NoseSneerLeft": 0.0003189639246556908
+ }
+ },
+ {
+ "timeCode": 0.9,
+ "blendShapes": {
+ "EyeWideLeft": 0.06116638705134392,
+ "EyeWideRight": 0.061275601387023926,
+ "JawForward": 0.012847359292209148,
+ "JawLeft": 0.004574365448206663,
+ "MouthClose": 0.03474724292755127,
+ "MouthPucker": 0.2417418360710144,
+ "MouthRight": 0.0006470647640526295,
+ "MouthSmileLeft": 0.0017033960903063416,
+ "MouthFrownLeft": 0.029679395258426666,
+ "MouthFrownRight": 0.031431712210178375,
+ "MouthDimpleLeft": 0.001982049783691764,
+ "MouthStretchLeft": 0.00013474356092046946,
+ "MouthRollLower": 0.0019559592474251986,
+ "MouthShrugLower": 0.0415625162422657,
+ "MouthPressLeft": 0.00030253923614509404,
+ "MouthLowerDownLeft": 0.0019266930175945163,
+ "MouthUpperUpLeft": 0.0003687433782033622,
+ "BrowDownLeft": 0.0002446925500407815,
+ "BrowInnerUp": 0.04411075636744499,
+ "BrowOuterUpLeft": 0.09677502512931824,
+ "BrowOuterUpRight": 0.097196564078331,
+ "CheekPuff": 0.010698097757995129,
+ "CheekSquintLeft": 0.00001203107058245223,
+ "NoseSneerLeft": 0.0003913178516086191
+ }
+ },
+ {
+ "timeCode": 0.9333333333333333,
+ "blendShapes": {
+ "EyeWideLeft": 0.06269144266843796,
+ "EyeWideRight": 0.06278644502162933,
+ "JawForward": 0.005251280963420868,
+ "JawLeft": 0.005715241655707359,
+ "JawOpen": 0.0027128809597343206,
+ "MouthClose": 0.048398904502391815,
+ "MouthPucker": 0.4316233694553375,
+ "MouthLeft": 0.0031739454716444016,
+ "MouthRight": 0.005080774892121553,
+ "MouthSmileLeft": 0.002297589322552085,
+ "MouthFrownLeft": 0.05821596086025238,
+ "MouthFrownRight": 0.06091788038611412,
+ "MouthDimpleLeft": 0.0031147869303822517,
+ "MouthStretchLeft": 0.00017223738541360945,
+ "MouthPressLeft": 0.0009183743968605995,
+ "MouthLowerDownLeft": 0.0021475281100720167,
+ "MouthUpperUpLeft": 0.0006850537029094994,
+ "BrowDownLeft": 0.0003338312963023782,
+ "BrowInnerUp": 0.05603475868701935,
+ "BrowOuterUpLeft": 0.09953970462083817,
+ "BrowOuterUpRight": 0.10010309517383575,
+ "CheekPuff": 0.007359043695032597,
+ "CheekSquintLeft": 0.0002683202619664371,
+ "NoseSneerLeft": 0.0005991802900098264
+ }
+ },
+ {
+ "timeCode": 0.9666666666666667,
+ "blendShapes": {
+ "EyeWideLeft": 0.06817293912172318,
+ "EyeWideRight": 0.06826355308294296,
+ "JawForward": 0.01688072457909584,
+ "JawLeft": 0.008854260668158531,
+ "JawOpen": 0.01442556269466877,
+ "MouthClose": 0.06352249532938004,
+ "MouthPucker": 0.5431234836578369,
+ "MouthLeft": 0.004996455740183592,
+ "MouthRight": 0.0077641732059419155,
+ "MouthSmileLeft": 0.003415224840864539,
+ "MouthFrownLeft": 0.07247070223093033,
+ "MouthFrownRight": 0.07511913031339645,
+ "MouthDimpleLeft": 0.0038285297341644764,
+ "MouthStretchLeft": 0.00023496942594647408,
+ "MouthPressLeft": 0.0005559248384088278,
+ "MouthLowerDownLeft": 0.0030828944873064756,
+ "BrowDownLeft": 0.00037908824742771685,
+ "BrowInnerUp": 0.0746757984161377,
+ "BrowOuterUpLeft": 0.10505203157663345,
+ "BrowOuterUpRight": 0.10569965839385986,
+ "CheekPuff": 0.007669372018426657,
+ "CheekSquintLeft": 0.0000413757843489293,
+ "NoseSneerLeft": 0.000028197891879244708
+ }
+ },
+ {
+ "timeCode": 1,
+ "blendShapes": {
+ "EyeWideLeft": 0.07161469757556915,
+ "EyeWideRight": 0.07174871116876602,
+ "JawForward": 0.019463155418634415,
+ "JawLeft": 0.0187322236597538,
+ "JawOpen": 0.04531582444906235,
+ "MouthClose": 0.07366637885570526,
+ "MouthPucker": 0.6160411834716797,
+ "MouthLeft": 0.0011408469872549176,
+ "MouthRight": 0.005637623835355043,
+ "MouthSmileLeft": 0.004106561187654734,
+ "MouthFrownLeft": 0.07589434087276459,
+ "MouthFrownRight": 0.07748512923717499,
+ "MouthDimpleLeft": 0.003781437873840332,
+ "MouthStretchLeft": 0.0002649179077707231,
+ "MouthPressLeft": 0.00025621350505389273,
+ "MouthLowerDownLeft": 0.003987190779298544,
+ "MouthUpperUpRight": 0.001518221921287477,
+ "BrowDownLeft": 0.0005082398420199752,
+ "BrowInnerUp": 0.09151928871870041,
+ "BrowOuterUpLeft": 0.10456955432891846,
+ "BrowOuterUpRight": 0.10545191913843155,
+ "CheekPuff": 0.01323700975626707,
+ "CheekSquintRight": 0.00005400110239861533,
+ "NoseSneerRight": 0.001021627220325172
+ }
+ },
+ {
+ "timeCode": 1.0333333333333334,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000029473741960828193,
+ "EyeWideLeft": 0.06766669452190399,
+ "EyeWideRight": 0.06784052401781082,
+ "JawForward": 0.03355882689356804,
+ "JawLeft": 0.025927787646651268,
+ "JawRight": 0.004438170697540045,
+ "JawOpen": 0.060127805918455124,
+ "MouthClose": 0.06211496517062187,
+ "MouthFunnel": 0.02888193354010582,
+ "MouthPucker": 0.46319231390953064,
+ "MouthRight": 0.004422056954354048,
+ "MouthSmileLeft": 0.0029867677949368954,
+ "MouthFrownLeft": 0.05497053265571594,
+ "MouthFrownRight": 0.05387186259031296,
+ "MouthDimpleLeft": 0.0008364945533685386,
+ "MouthStretchLeft": 0.00017345440573990345,
+ "MouthShrugUpper": 0.02510940097272396,
+ "MouthPressLeft": 0.008928670547902584,
+ "MouthPressRight": 0.010385128669440746,
+ "MouthLowerDownLeft": 0.003539587138220668,
+ "MouthUpperUpRight": 0.002484007738530636,
+ "BrowDownLeft": 0.0005707819364033639,
+ "BrowInnerUp": 0.08619648963212967,
+ "BrowOuterUpLeft": 0.1019410714507103,
+ "BrowOuterUpRight": 0.10289626568555832,
+ "CheekPuff": 0.0313740000128746,
+ "CheekSquintRight": 0.0014677391154691577,
+ "NoseSneerRight": 0.001772219897247851
+ }
+ },
+ {
+ "timeCode": 1.0666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001637642562855035,
+ "EyeWideLeft": 0.060497187077999115,
+ "EyeWideRight": 0.06069164350628853,
+ "JawForward": 0.014943537302315235,
+ "JawLeft": 0.031186645850539207,
+ "JawRight": 0.007332438137382269,
+ "JawOpen": 0.046847738325595856,
+ "MouthClose": 0.04483503848314285,
+ "MouthFunnel": 0.3382986783981323,
+ "MouthPucker": 0.1897668093442917,
+ "MouthSmileLeft": 0.0014033473562449217,
+ "MouthFrownLeft": 0.03902585804462433,
+ "MouthFrownRight": 0.03743940591812134,
+ "MouthStretchLeft": 0.00007943491073092446,
+ "MouthRollUpper": 0.021536335349082947,
+ "MouthShrugUpper": 0.03197488561272621,
+ "MouthPressRight": 0.0013237731764093041,
+ "MouthLowerDownLeft": 0.0025277321692556143,
+ "MouthUpperUpRight": 0.0030445412266999483,
+ "BrowDownLeft": 0.0005504381842911243,
+ "BrowInnerUp": 0.07143332809209824,
+ "BrowOuterUpLeft": 0.09804406017065048,
+ "BrowOuterUpRight": 0.09893180429935455,
+ "CheekPuff": 0.026235708966851234,
+ "CheekSquintRight": 0.001697544939815998,
+ "NoseSneerRight": 0.001822716905735433
+ }
+ },
+ {
+ "timeCode": 1.1,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00027653525467030704,
+ "EyeWideLeft": 0.05467157065868378,
+ "EyeWideRight": 0.054876264184713364,
+ "JawForward": 0.02282373420894146,
+ "JawLeft": 0.03350050374865532,
+ "JawRight": 0.0193646103143692,
+ "JawOpen": 0.039121318608522415,
+ "MouthClose": 0.01208245474845171,
+ "MouthFunnel": 0.47181665897369385,
+ "MouthLeft": 0.0029637606348842382,
+ "MouthSmileLeft": 0.028255099430680275,
+ "MouthSmileRight": 0.028417104855179787,
+ "MouthFrownLeft": 0.03377692773938179,
+ "MouthFrownRight": 0.030847903341054916,
+ "MouthDimpleRight": 0.0034784500021487474,
+ "MouthStretchLeft": 0.0007282960577867925,
+ "MouthStretchRight": 0.0007677593966946006,
+ "MouthRollUpper": 0.03489106148481369,
+ "MouthShrugUpper": 0.027332592755556107,
+ "MouthPressRight": 0.003426420269533992,
+ "MouthLowerDownLeft": 0.08917158097028732,
+ "MouthLowerDownRight": 0.09029030054807663,
+ "MouthUpperUpLeft": 0.011156369931995869,
+ "MouthUpperUpRight": 0.012462168000638485,
+ "BrowDownLeft": 0.0005927210440859199,
+ "BrowInnerUp": 0.04306159168481827,
+ "BrowOuterUpLeft": 0.08726582676172256,
+ "BrowOuterUpRight": 0.08812624961137772,
+ "CheekPuff": 0.02006496675312519,
+ "CheekSquintLeft": 0.0077191926538944244,
+ "CheekSquintRight": 0.008680244907736778,
+ "NoseSneerRight": 0.0003988526004832238
+ }
+ },
+ {
+ "timeCode": 1.1333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00035996484803035855,
+ "EyeWideLeft": 0.05230975151062012,
+ "EyeWideRight": 0.052524179220199585,
+ "JawForward": 0.055240076035261154,
+ "JawLeft": 0.027082910761237144,
+ "JawRight": 0.02503703348338604,
+ "MouthFunnel": 0.452617347240448,
+ "MouthLeft": 0.002784900600090623,
+ "MouthSmileLeft": 0.0254108514636755,
+ "MouthSmileRight": 0.02823064848780632,
+ "MouthFrownLeft": 0.02405133843421936,
+ "MouthFrownRight": 0.021646732464432716,
+ "MouthDimpleLeft": 0.019591977819800377,
+ "MouthDimpleRight": 0.02482735738158226,
+ "MouthStretchLeft": 0.00367427128367126,
+ "MouthStretchRight": 0.0038723417092114687,
+ "MouthRollUpper": 0.01242507342249155,
+ "MouthShrugLower": 0.014152182266116142,
+ "MouthShrugUpper": 0.038089849054813385,
+ "MouthPressLeft": 0.0024115783162415028,
+ "MouthPressRight": 0.006154749542474747,
+ "MouthLowerDownLeft": 0.16234159469604492,
+ "MouthLowerDownRight": 0.16573473811149597,
+ "MouthUpperUpLeft": 0.06305040419101715,
+ "MouthUpperUpRight": 0.06290893256664276,
+ "BrowDownLeft": 0.0006047035567462444,
+ "BrowInnerUp": 0.023518554866313934,
+ "BrowOuterUpLeft": 0.07884364575147629,
+ "BrowOuterUpRight": 0.07965489476919174,
+ "CheekPuff": 0.017788780853152275,
+ "CheekSquintLeft": 0.004708160646259785,
+ "CheekSquintRight": 0.004756588954478502,
+ "NoseSneerLeft": 0.0007868115790188313
+ }
+ },
+ {
+ "timeCode": 1.1666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000395182374631986,
+ "EyeWideLeft": 0.04923444986343384,
+ "EyeWideRight": 0.049453843384981155,
+ "JawForward": 0.08650553226470947,
+ "JawLeft": 0.01407152134925127,
+ "JawRight": 0.01743653230369091,
+ "MouthFunnel": 0.46317142248153687,
+ "MouthLeft": 0.002071601338684559,
+ "MouthSmileRight": 0.004622089676558971,
+ "MouthFrownLeft": 0.0005935673252679408,
+ "MouthDimpleLeft": 0.04747966304421425,
+ "MouthDimpleRight": 0.05203787237405777,
+ "MouthStretchLeft": 0.004283826798200607,
+ "MouthStretchRight": 0.004579015541821718,
+ "MouthShrugLower": 0.08920994400978088,
+ "MouthShrugUpper": 0.05043581873178482,
+ "MouthPressRight": 0.0021677296608686447,
+ "MouthLowerDownLeft": 0.1722986400127411,
+ "MouthLowerDownRight": 0.1755814403295517,
+ "MouthUpperUpLeft": 0.10408766567707062,
+ "MouthUpperUpRight": 0.10362052917480469,
+ "BrowDownLeft": 0.0005972509388811886,
+ "BrowInnerUp": 0.01565047726035118,
+ "BrowOuterUpLeft": 0.07487938553094864,
+ "BrowOuterUpRight": 0.07564541697502136,
+ "CheekPuff": 0.015373091213405132,
+ "CheekSquintLeft": 0.007991058751940727,
+ "CheekSquintRight": 0.007416244130581617,
+ "NoseSneerLeft": 0.0013738680863752961
+ }
+ },
+ {
+ "timeCode": 1.2,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00033801322570070624,
+ "EyeWideLeft": 0.046693746000528336,
+ "EyeWideRight": 0.046887997537851334,
+ "JawForward": 0.0852188915014267,
+ "JawLeft": 0.015549582429230213,
+ "JawRight": 0.01733645610511303,
+ "MouthFunnel": 0.5471038222312927,
+ "MouthLeft": 0.0013227309100329876,
+ "MouthSmileRight": 0.004217255394905806,
+ "MouthFrownRight": 0.0004505754041019827,
+ "MouthDimpleLeft": 0.05241144448518753,
+ "MouthDimpleRight": 0.055424101650714874,
+ "MouthStretchLeft": 0.0033298989292234182,
+ "MouthStretchRight": 0.003582329023629427,
+ "MouthRollUpper": 0.0032801281195133924,
+ "MouthShrugLower": 0.10534703731536865,
+ "MouthShrugUpper": 0.03333888202905655,
+ "MouthPressRight": 0.0009229673305526376,
+ "MouthLowerDownLeft": 0.16910311579704285,
+ "MouthLowerDownRight": 0.17157359421253204,
+ "MouthUpperUpLeft": 0.06581532210111618,
+ "MouthUpperUpRight": 0.0644480511546135,
+ "BrowDownLeft": 0.0004538012726698071,
+ "BrowInnerUp": 0.012652588076889515,
+ "BrowOuterUpLeft": 0.06820716708898544,
+ "BrowOuterUpRight": 0.06878385692834854,
+ "CheekPuff": 0.024061469361186028,
+ "CheekSquintLeft": 0.008812534622848034,
+ "CheekSquintRight": 0.007548653520643711,
+ "NoseSneerLeft": 0.0018368551973253489
+ }
+ },
+ {
+ "timeCode": 1.2333333333333334,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00020160239364486188,
+ "EyeWideLeft": 0.05088109150528908,
+ "EyeWideRight": 0.05102004110813141,
+ "JawForward": 0.045487068593502045,
+ "JawLeft": 0.021886488422751427,
+ "JawRight": 0.017377151176333427,
+ "MouthFunnel": 0.6322818398475647,
+ "MouthPucker": 0.01652713119983673,
+ "MouthLeft": 0.003753936616703868,
+ "MouthSmileRight": 0.002677842741832137,
+ "MouthFrownLeft": 0.013129663653671741,
+ "MouthFrownRight": 0.014604168012738228,
+ "MouthDimpleLeft": 0.009515156969428062,
+ "MouthDimpleRight": 0.010931662283837795,
+ "MouthStretchRight": 0.00013214816863182932,
+ "MouthRollUpper": 0.009759970009326935,
+ "MouthShrugLower": 0.05306130647659302,
+ "MouthPressLeft": 0.014420109800994396,
+ "MouthPressRight": 0.015253308229148388,
+ "MouthLowerDownLeft": 0.0991603210568428,
+ "MouthLowerDownRight": 0.10072129219770432,
+ "MouthUpperUpLeft": 0.002178283641114831,
+ "BrowDownLeft": 0.00035915939952246845,
+ "BrowInnerUp": 0.035082343965768814,
+ "BrowOuterUpLeft": 0.07083489745855331,
+ "BrowOuterUpRight": 0.07133173942565918,
+ "CheekPuff": 0.032544638961553574,
+ "CheekSquintLeft": 0.0016393678961321712,
+ "NoseSneerLeft": 0.002179899252951145
+ }
+ },
+ {
+ "timeCode": 1.2666666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00004798225199920125,
+ "EyeWideLeft": 0.057431939989328384,
+ "EyeWideRight": 0.057521529495716095,
+ "JawForward": 0.03561705723404884,
+ "JawLeft": 0.030804095789790154,
+ "JawRight": 0.021086646243929863,
+ "MouthClose": 0.005299663171172142,
+ "MouthFunnel": 0.48430463671684265,
+ "MouthPucker": 0.2242451012134552,
+ "MouthLeft": 0.0032146889716386795,
+ "MouthSmileRight": 0.0022209894377738237,
+ "MouthFrownLeft": 0.05279679223895073,
+ "MouthFrownRight": 0.055128395557403564,
+ "MouthDimpleLeft": 0.0016929913545027375,
+ "MouthDimpleRight": 0.002391410991549492,
+ "MouthStretchRight": 0.00009632448927732185,
+ "MouthShrugLower": 0.04776369035243988,
+ "MouthPressLeft": 0.04423807933926582,
+ "MouthPressRight": 0.04503719136118889,
+ "MouthLowerDownLeft": 0.09210079908370972,
+ "MouthLowerDownRight": 0.09352418035268784,
+ "MouthUpperUpLeft": 0.0020988036412745714,
+ "BrowDownLeft": 0.0003683172690216452,
+ "BrowInnerUp": 0.05871216207742691,
+ "BrowOuterUpLeft": 0.07845935225486755,
+ "BrowOuterUpRight": 0.07900531589984894,
+ "CheekPuff": 0.03830895945429802,
+ "CheekSquintLeft": 0.0016425014473497868,
+ "NoseSneerLeft": 0.0027478786651045084
+ }
+ },
+ {
+ "timeCode": 1.3,
+ "blendShapes": {
+ "EyeWideLeft": 0.06583981215953827,
+ "EyeWideRight": 0.06590091437101364,
+ "JawForward": 0.02182195521891117,
+ "JawLeft": 0.030155593529343605,
+ "JawRight": 0.017200980335474014,
+ "MouthClose": 0.009111426770687103,
+ "MouthFunnel": 0.2839059829711914,
+ "MouthPucker": 0.44970229268074036,
+ "MouthLeft": 0.0038096809294074774,
+ "MouthSmileRight": 0.0026044759433716536,
+ "MouthFrownLeft": 0.05994883179664612,
+ "MouthFrownRight": 0.06258814036846161,
+ "MouthDimpleRight": 0.0004118302895221859,
+ "MouthStretchRight": 0.00012510099622886628,
+ "MouthShrugLower": 0.05174224078655243,
+ "MouthPressLeft": 0.05613594129681587,
+ "MouthPressRight": 0.056201089173555374,
+ "MouthLowerDownLeft": 0.04307128116488457,
+ "MouthLowerDownRight": 0.04473908245563507,
+ "MouthUpperUpLeft": 0.00117314828094095,
+ "BrowDownLeft": 0.000469924503704533,
+ "BrowInnerUp": 0.06709617376327515,
+ "BrowOuterUpLeft": 0.08363647758960724,
+ "BrowOuterUpRight": 0.08433216065168381,
+ "CheekPuff": 0.03746907785534859,
+ "CheekSquintLeft": 0.0010174789931625128,
+ "NoseSneerLeft": 0.0025317904073745012
+ }
+ },
+ {
+ "timeCode": 1.3333333333333333,
+ "blendShapes": {
+ "EyeWideLeft": 0.0733715146780014,
+ "EyeWideRight": 0.0734269767999649,
+ "JawForward": 0.011117007583379745,
+ "JawLeft": 0.024666456505656242,
+ "JawRight": 0.010876420885324478,
+ "MouthClose": 0.01384949591010809,
+ "MouthFunnel": 0.13621306419372559,
+ "MouthPucker": 0.6115238666534424,
+ "MouthLeft": 0.004222441930323839,
+ "MouthSmileRight": 0.0023305534850806,
+ "MouthFrownLeft": 0.05914508178830147,
+ "MouthFrownRight": 0.06183415651321411,
+ "MouthDimpleLeft": 0.000170914878253825,
+ "MouthStretchRight": 0.0001074649189831689,
+ "MouthRollLower": 0.008367683738470078,
+ "MouthShrugLower": 0.0473245307803154,
+ "MouthPressLeft": 0.046147238463163376,
+ "MouthPressRight": 0.04552610218524933,
+ "MouthLowerDownLeft": 0.0063226185739040375,
+ "MouthLowerDownRight": 0.00762080866843462,
+ "MouthUpperUpLeft": 0.0006649764254689217,
+ "BrowDownLeft": 0.00053126469720155,
+ "BrowInnerUp": 0.07675859332084656,
+ "BrowOuterUpLeft": 0.08686290681362152,
+ "BrowOuterUpRight": 0.08765853941440582,
+ "CheekPuff": 0.03569700941443443,
+ "CheekSquintLeft": 0.00061217718757689,
+ "NoseSneerLeft": 0.001940854243002832
+ }
+ },
+ {
+ "timeCode": 1.3666666666666667,
+ "blendShapes": {
+ "EyeWideLeft": 0.07930251955986023,
+ "EyeWideRight": 0.07937240600585938,
+ "JawForward": 0.011016787961125374,
+ "JawLeft": 0.02261204831302166,
+ "JawRight": 0.010226357728242874,
+ "MouthClose": 0.031701236963272095,
+ "MouthFunnel": 0.04668664187192917,
+ "MouthPucker": 0.679175615310669,
+ "MouthLeft": 0.002248649252578616,
+ "MouthSmileRight": 0.00130713009275496,
+ "MouthFrownLeft": 0.0606263130903244,
+ "MouthFrownRight": 0.06318952143192291,
+ "MouthDimpleLeft": 0.0010145987616851926,
+ "MouthStretchRight": 0.00003098841625615023,
+ "MouthRollLower": 0.028132176026701927,
+ "MouthShrugLower": 0.0061922576278448105,
+ "MouthPressLeft": 0.04843626171350479,
+ "MouthPressRight": 0.04746975749731064,
+ "MouthLowerDownRight": 0.0002467624726705253,
+ "MouthUpperUpLeft": 0.0006232893210835755,
+ "BrowDownLeft": 0.0005450639291666448,
+ "BrowInnerUp": 0.08165815472602844,
+ "BrowOuterUpLeft": 0.09136738628149033,
+ "BrowOuterUpRight": 0.0922250971198082,
+ "CheekPuff": 0.03457178175449371,
+ "CheekSquintLeft": 0.0005413711187429726,
+ "NoseSneerLeft": 0.00136257812846452
+ }
+ },
+ {
+ "timeCode": 1.4,
+ "blendShapes": {
+ "EyeWideLeft": 0.07678866386413574,
+ "EyeWideRight": 0.07687751203775406,
+ "JawForward": 0.0386432521045208,
+ "JawLeft": 0.01988699659705162,
+ "JawRight": 0.006748089101165533,
+ "JawOpen": 0.04398278146982193,
+ "MouthClose": 0.05377240478992462,
+ "MouthFunnel": 0.018774066120386124,
+ "MouthPucker": 0.7217093110084534,
+ "MouthSmileRight": 0.001185400877147913,
+ "MouthFrownLeft": 0.05740497261285782,
+ "MouthFrownRight": 0.05962060019373894,
+ "MouthDimpleLeft": 0.0013914733426645398,
+ "MouthStretchRight": 0.00001541081837785896,
+ "MouthShrugUpper": 0.003932057414203882,
+ "MouthPressLeft": 0.017260754480957985,
+ "MouthPressRight": 0.015072035603225231,
+ "MouthLowerDownLeft": 0.0008252104744315147,
+ "BrowDownLeft": 0.0005436281790025532,
+ "BrowInnerUp": 0.06009243428707123,
+ "BrowOuterUpLeft": 0.08448686450719833,
+ "BrowOuterUpRight": 0.08537854999303818,
+ "CheekPuff": 0.04101480171084404,
+ "NoseSneerLeft": 0.0006030379445292056
+ }
+ },
+ {
+ "timeCode": 1.4333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000015964480553520843,
+ "EyeWideLeft": 0.07177208364009857,
+ "EyeWideRight": 0.0718865841627121,
+ "JawForward": 0.058908671140670776,
+ "JawLeft": 0.0347571037709713,
+ "JawRight": 0.018680987879633904,
+ "JawOpen": 0.10889667272567749,
+ "MouthClose": 0.0724373385310173,
+ "MouthFunnel": 0.06341581046581268,
+ "MouthPucker": 0.6612865328788757,
+ "MouthRight": 0.001706284354440868,
+ "MouthSmileRight": 0.0010641621192917228,
+ "MouthFrownLeft": 0.08689118176698685,
+ "MouthFrownRight": 0.08922454714775085,
+ "MouthDimpleLeft": 0.0018349012825638056,
+ "MouthShrugUpper": 0.011650808155536652,
+ "MouthPressLeft": 0.008914108388125896,
+ "MouthPressRight": 0.0063515412621200085,
+ "MouthLowerDownLeft": 0.0019868973176926374,
+ "MouthUpperUpRight": 0.0004627241287380457,
+ "BrowDownLeft": 0.0005165276234038174,
+ "BrowInnerUp": 0.045247882604599,
+ "BrowOuterUpLeft": 0.07707996666431427,
+ "BrowOuterUpRight": 0.07798627018928528,
+ "CheekPuff": 0.04736856743693352,
+ "NoseSneerLeft": 0.00044885679380968213
+ }
+ },
+ {
+ "timeCode": 1.4666666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00001266584422410233,
+ "EyeWideLeft": 0.06600082665681839,
+ "EyeWideRight": 0.06611699610948563,
+ "JawForward": 0.056446515023708344,
+ "JawLeft": 0.04443588852882385,
+ "JawRight": 0.027778511866927147,
+ "JawOpen": 0.13976821303367615,
+ "MouthClose": 0.07706426084041595,
+ "MouthFunnel": 0.09974402189254761,
+ "MouthPucker": 0.6138561367988586,
+ "MouthRight": 0.0018438193947076797,
+ "MouthSmileRight": 0.0015157725429162383,
+ "MouthFrownLeft": 0.10998779535293579,
+ "MouthFrownRight": 0.11240649968385696,
+ "MouthDimpleLeft": 0.001481125596910715,
+ "MouthStretchRight": 0.000004431171873875428,
+ "MouthShrugUpper": 0.013842527754604816,
+ "MouthPressLeft": 0.006567955017089844,
+ "MouthPressRight": 0.004387384746223688,
+ "MouthLowerDownLeft": 0.0020156220998615026,
+ "MouthUpperUpRight": 0.0005548034096136689,
+ "BrowDownLeft": 0.0004626321024261415,
+ "BrowInnerUp": 0.043386925011873245,
+ "BrowOuterUpLeft": 0.0719788670539856,
+ "BrowOuterUpRight": 0.07284662872552872,
+ "CheekPuff": 0.04770314320921898,
+ "NoseSneerLeft": 0.000754521053750068
+ }
+ },
+ {
+ "timeCode": 1.5,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000020740953914355487,
+ "EyeWideLeft": 0.06408287584781647,
+ "EyeWideRight": 0.06420811265707016,
+ "JawForward": 0.025624999776482582,
+ "JawLeft": 0.059536274522542953,
+ "JawRight": 0.04441608116030693,
+ "JawOpen": 0.17957133054733276,
+ "MouthClose": 0.07665258646011353,
+ "MouthFunnel": 0.10769614577293396,
+ "MouthPucker": 0.5752567052841187,
+ "MouthRight": 0.0010142194805666804,
+ "MouthSmileRight": 0.002123105339705944,
+ "MouthFrownLeft": 0.14153869450092316,
+ "MouthFrownRight": 0.14418990910053253,
+ "MouthDimpleLeft": 0.0010502280201762915,
+ "MouthStretchRight": 0.000014060957255424,
+ "MouthShrugUpper": 0.03818381577730179,
+ "MouthPressLeft": 0.018993357196450233,
+ "MouthPressRight": 0.01752232387661934,
+ "MouthLowerDownLeft": 0.0020747901871800423,
+ "MouthUpperUpRight": 0.00044730582158081234,
+ "BrowDownLeft": 0.00040681942482478917,
+ "BrowInnerUp": 0.056442178785800934,
+ "BrowOuterUpLeft": 0.0756329819560051,
+ "BrowOuterUpRight": 0.07643787562847137,
+ "CheekPuff": 0.04186796024441719,
+ "NoseSneerLeft": 0.001231450936757028
+ }
+ },
+ {
+ "timeCode": 1.5333333333333334,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00003203513188054785,
+ "EyeWideLeft": 0.06552506238222122,
+ "EyeWideRight": 0.06565779447555542,
+ "JawLeft": 0.0500023178756237,
+ "JawRight": 0.03778820484876633,
+ "JawOpen": 0.1415000855922699,
+ "MouthClose": 0.06700734049081802,
+ "MouthFunnel": 0.09505584090948105,
+ "MouthPucker": 0.5762127041816711,
+ "MouthSmileRight": 0.0007499863277189434,
+ "MouthFrownLeft": 0.13149037957191467,
+ "MouthFrownRight": 0.13392363488674164,
+ "MouthDimpleLeft": 0.0012944716727361083,
+ "MouthStretchLeft": 0.000005872096608072752,
+ "MouthShrugUpper": 0.051661696285009384,
+ "MouthPressLeft": 0.04898613691329956,
+ "MouthPressRight": 0.04847509786486626,
+ "MouthLowerDownLeft": 0.0023148416075855494,
+ "BrowDownLeft": 0.00035839987685903907,
+ "BrowInnerUp": 0.06276214122772217,
+ "BrowOuterUpLeft": 0.08904080837965012,
+ "BrowOuterUpRight": 0.08976799994707108,
+ "CheekPuff": 0.03225311264395714,
+ "NoseSneerLeft": 0.0010954391909763217
+ }
+ },
+ {
+ "timeCode": 1.5666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00004006590461358428,
+ "EyeWideLeft": 0.06625568866729736,
+ "EyeWideRight": 0.06640229374170303,
+ "JawLeft": 0.04224986955523491,
+ "JawRight": 0.03218532353639603,
+ "JawOpen": 0.14740216732025146,
+ "MouthClose": 0.07545408606529236,
+ "MouthFunnel": 0.12733496725559235,
+ "MouthPucker": 0.5370420813560486,
+ "MouthSmileRight": 0.00045554025564342737,
+ "MouthFrownLeft": 0.11623789370059967,
+ "MouthFrownRight": 0.11876340210437775,
+ "MouthDimpleLeft": 0.0016318876296281815,
+ "MouthStretchLeft": 0.000030127221180009656,
+ "MouthShrugUpper": 0.050093889236450195,
+ "MouthPressLeft": 0.05165049061179161,
+ "MouthPressRight": 0.0511116161942482,
+ "MouthLowerDownLeft": 0.0030018652323633432,
+ "BrowDownLeft": 0.00034777558175846934,
+ "BrowInnerUp": 0.0627940371632576,
+ "BrowOuterUpLeft": 0.09636202454566956,
+ "BrowOuterUpRight": 0.09707312285900116,
+ "CheekPuff": 0.029141444712877274,
+ "NoseSneerLeft": 0.0006947751971893013
+ }
+ },
+ {
+ "timeCode": 1.6,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00009813423821469769,
+ "EyeWideLeft": 0.06540077924728394,
+ "EyeWideRight": 0.06557616591453552,
+ "JawLeft": 0.03376559540629387,
+ "JawRight": 0.02340075373649597,
+ "JawOpen": 0.1733064502477646,
+ "MouthClose": 0.08366450667381287,
+ "MouthFunnel": 0.1378786563873291,
+ "MouthPucker": 0.4953668713569641,
+ "MouthRight": 0.00025156818446703255,
+ "MouthSmileRight": 0.0008191275410354137,
+ "MouthFrownLeft": 0.09469051659107208,
+ "MouthFrownRight": 0.09699946641921997,
+ "MouthDimpleLeft": 0.0017740655457600951,
+ "MouthStretchLeft": 0.000003721567964021233,
+ "MouthShrugUpper": 0.04333319142460823,
+ "MouthPressLeft": 0.035445306450128555,
+ "MouthPressRight": 0.033922646194696426,
+ "MouthLowerDownLeft": 0.003444800153374672,
+ "MouthUpperUpRight": 0.0010953251039609313,
+ "BrowDownLeft": 0.0004747156344819814,
+ "BrowInnerUp": 0.06354650855064392,
+ "BrowOuterUpLeft": 0.10115192085504532,
+ "BrowOuterUpRight": 0.1020025834441185,
+ "CheekPuff": 0.026358766481280327
+ }
+ },
+ {
+ "timeCode": 1.6333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00009631818102207035,
+ "EyeWideLeft": 0.06650682538747787,
+ "EyeWideRight": 0.06669000536203384,
+ "JawLeft": 0.04616769775748253,
+ "JawRight": 0.03224119544029236,
+ "JawOpen": 0.18847326934337616,
+ "MouthClose": 0.08416928350925446,
+ "MouthFunnel": 0.14426544308662415,
+ "MouthPucker": 0.4965013861656189,
+ "MouthRight": 0.0016360993031412363,
+ "MouthSmileRight": 0.0004512766608968377,
+ "MouthFrownLeft": 0.11498996615409851,
+ "MouthFrownRight": 0.11667995899915695,
+ "MouthDimpleLeft": 0.0014470793539658189,
+ "MouthStretchLeft": 0.000004468139650271041,
+ "MouthShrugUpper": 0.032949067652225494,
+ "MouthPressLeft": 0.0013677756069228053,
+ "MouthLowerDownLeft": 0.003379215020686388,
+ "MouthUpperUpRight": 0.0017690776148810983,
+ "BrowDownLeft": 0.0005266025546006858,
+ "BrowInnerUp": 0.0700242891907692,
+ "BrowOuterUpLeft": 0.10920113325119019,
+ "BrowOuterUpRight": 0.11009397357702255,
+ "CheekPuff": 0.03292360529303551,
+ "CheekSquintRight": 0.00014983807341195643
+ }
+ },
+ {
+ "timeCode": 1.6666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00011314927542116493,
+ "EyeWideLeft": 0.06473816931247711,
+ "EyeWideRight": 0.06492295861244202,
+ "JawLeft": 0.04814263433218002,
+ "JawRight": 0.038046661764383316,
+ "JawOpen": 0.22302229702472687,
+ "MouthClose": 0.08425267040729523,
+ "MouthFunnel": 0.2791920304298401,
+ "MouthPucker": 0.36797744035720825,
+ "MouthSmileRight": 0.0005261133192107081,
+ "MouthFrownLeft": 0.11365389078855515,
+ "MouthFrownRight": 0.11576467007398605,
+ "MouthDimpleLeft": 0.0018106853822246194,
+ "MouthStretchLeft": 0.00001750482442730572,
+ "MouthShrugUpper": 0.039669401943683624,
+ "MouthPressLeft": 0.009754969738423824,
+ "MouthPressRight": 0.008517347276210785,
+ "MouthLowerDownLeft": 0.0037953138817101717,
+ "MouthUpperUpRight": 0.0010759471915662289,
+ "BrowDownLeft": 0.0005446820869110525,
+ "BrowInnerUp": 0.07824673503637314,
+ "BrowOuterUpLeft": 0.11191371828317642,
+ "BrowOuterUpRight": 0.11278271675109863,
+ "CheekPuff": 0.030021006241440773,
+ "NoseSneerLeft": 0.00021892358199693263
+ }
+ },
+ {
+ "timeCode": 1.7,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012088786024833098,
+ "EyeWideLeft": 0.06432263553142548,
+ "EyeWideRight": 0.0645102858543396,
+ "JawLeft": 0.04660171642899513,
+ "JawRight": 0.035934992134571075,
+ "JawOpen": 0.2242824286222458,
+ "MouthClose": 0.0831555426120758,
+ "MouthFunnel": 0.34995371103286743,
+ "MouthPucker": 0.2846023440361023,
+ "MouthSmileLeft": 0.00002355723518121522,
+ "MouthFrownLeft": 0.10672309249639511,
+ "MouthFrownRight": 0.10823993384838104,
+ "MouthDimpleLeft": 0.005856785457581282,
+ "MouthDimpleRight": 0.0037010477390140295,
+ "MouthStretchLeft": 0.0000928961526369676,
+ "MouthShrugUpper": 0.033437252044677734,
+ "MouthPressLeft": 0.00040833288221620023,
+ "MouthLowerDownLeft": 0.003832827555015683,
+ "MouthUpperUpRight": 0.000587677990552038,
+ "BrowDownLeft": 0.0005240672035142779,
+ "BrowInnerUp": 0.08475656062364578,
+ "BrowOuterUpLeft": 0.12004437297582626,
+ "BrowOuterUpRight": 0.12084239721298218,
+ "CheekPuff": 0.02267284132540226,
+ "NoseSneerLeft": 0.00015937768330331892
+ }
+ },
+ {
+ "timeCode": 1.7333333333333334,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00008325531234731898,
+ "EyeWideLeft": 0.060711272060871124,
+ "EyeWideRight": 0.06088043749332428,
+ "JawLeft": 0.03826627880334854,
+ "JawRight": 0.028150025755167007,
+ "JawOpen": 0.16383084654808044,
+ "MouthClose": 0.07367150485515594,
+ "MouthFunnel": 0.30166491866111755,
+ "MouthPucker": 0.21228240430355072,
+ "MouthSmileLeft": 0.0005718991160392761,
+ "MouthFrownLeft": 0.07819245010614395,
+ "MouthFrownRight": 0.08025363832712173,
+ "MouthDimpleLeft": 0.031245166435837746,
+ "MouthDimpleRight": 0.028453785926103592,
+ "MouthStretchLeft": 0.0001152461554738693,
+ "MouthShrugUpper": 0.026030853390693665,
+ "MouthPressLeft": 0.0007498104241676629,
+ "MouthLowerDownLeft": 0.004001985304057598,
+ "BrowDownLeft": 0.00042514674714766443,
+ "BrowInnerUp": 0.08010001480579376,
+ "BrowOuterUpLeft": 0.12150545418262482,
+ "BrowOuterUpRight": 0.12213247269392014,
+ "CheekPuff": 0.016771866008639336,
+ "CheekSquintLeft": 0.0006381293060258031,
+ "NoseSneerLeft": 0.0006239991635084152
+ }
+ },
+ {
+ "timeCode": 1.7666666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0000394575072277803,
+ "EyeWideLeft": 0.056388452649116516,
+ "EyeWideRight": 0.05653923749923706,
+ "JawLeft": 0.02551143243908882,
+ "JawRight": 0.01856510527431965,
+ "JawOpen": 0.12320026010274887,
+ "MouthClose": 0.05806773528456688,
+ "MouthFunnel": 0.23409846425056458,
+ "MouthPucker": 0.10124864429235458,
+ "MouthLeft": 0.0020047512371093035,
+ "MouthSmileLeft": 0.02345879375934601,
+ "MouthSmileRight": 0.0237199105322361,
+ "MouthFrownLeft": 0.05958107113838196,
+ "MouthFrownRight": 0.061577390879392624,
+ "MouthDimpleLeft": 0.045079555362463,
+ "MouthDimpleRight": 0.04329006001353264,
+ "MouthStretchLeft": 0.00003393088627490215,
+ "MouthPressLeft": 0.0006957699661143124,
+ "MouthLowerDownLeft": 0.04233027249574661,
+ "MouthLowerDownRight": 0.040155768394470215,
+ "MouthUpperUpLeft": 0.0008284130017273128,
+ "BrowDownLeft": 0.0003757681988645345,
+ "BrowInnerUp": 0.0727553591132164,
+ "BrowOuterUpLeft": 0.12629441916942596,
+ "BrowOuterUpRight": 0.1267995536327362,
+ "CheekPuff": 0.010323712602257729,
+ "CheekSquintLeft": 0.0010409920942038298,
+ "NoseSneerLeft": 0.0011686439393088222
+ }
+ },
+ {
+ "timeCode": 1.8,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00006223280070116743,
+ "EyeWideLeft": 0.05517934262752533,
+ "EyeWideRight": 0.055336322635412216,
+ "JawLeft": 0.01875591278076172,
+ "JawRight": 0.011548027396202087,
+ "JawOpen": 0.0925719290971756,
+ "MouthClose": 0.05440640076994896,
+ "MouthFunnel": 0.16452305018901825,
+ "MouthPucker": 0.12392189353704453,
+ "MouthLeft": 0.00234112236648798,
+ "MouthSmileLeft": 0.046411313116550446,
+ "MouthSmileRight": 0.04716308042407036,
+ "MouthFrownLeft": 0.047541987150907516,
+ "MouthFrownRight": 0.04975788667798042,
+ "MouthDimpleLeft": 0.046588923782110214,
+ "MouthDimpleRight": 0.044767096638679504,
+ "MouthShrugLower": 0.02679576352238655,
+ "MouthPressLeft": 0.0012974640121683478,
+ "MouthLowerDownLeft": 0.032065507024526596,
+ "MouthLowerDownRight": 0.029856860637664795,
+ "MouthUpperUpLeft": 0.00027765208506025374,
+ "BrowDownLeft": 0.00042257914901711047,
+ "BrowInnerUp": 0.07369177043437958,
+ "BrowOuterUpLeft": 0.12633296847343445,
+ "BrowOuterUpRight": 0.12686678767204285,
+ "CheekPuff": 0.009754804894328117,
+ "CheekSquintLeft": 0.0008256274159066379,
+ "NoseSneerLeft": 0.001018676208332181
+ }
+ },
+ {
+ "timeCode": 1.8333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000039165250200312585,
+ "EyeWideLeft": 0.05493322014808655,
+ "EyeWideRight": 0.05508807301521301,
+ "JawLeft": 0.008525582030415535,
+ "JawRight": 0.003988049458712339,
+ "JawOpen": 0.0464678518474102,
+ "MouthClose": 0.044742412865161896,
+ "MouthFunnel": 0.10060165822505951,
+ "MouthPucker": 0.06663446128368378,
+ "MouthLeft": 0.0017462074756622314,
+ "MouthSmileLeft": 0.06928486377000809,
+ "MouthSmileRight": 0.07012689113616943,
+ "MouthFrownLeft": 0.021519359201192856,
+ "MouthFrownRight": 0.022733749821782112,
+ "MouthDimpleLeft": 0.02774297073483467,
+ "MouthDimpleRight": 0.02708963118493557,
+ "MouthStretchRight": 0.00003646426921477541,
+ "MouthShrugLower": 0.008421231061220169,
+ "MouthPressLeft": 0.0006822963478043675,
+ "MouthLowerDownLeft": 0.030558306723833084,
+ "MouthLowerDownRight": 0.029199421405792236,
+ "MouthUpperUpLeft": 0.00020949370809830725,
+ "BrowDownLeft": 0.00048645868082530797,
+ "BrowInnerUp": 0.06692252308130264,
+ "BrowOuterUpLeft": 0.1273248940706253,
+ "BrowOuterUpRight": 0.12788614630699158,
+ "CheekPuff": 0.008970043621957302,
+ "CheekSquintLeft": 0.0004925813991576433,
+ "NoseSneerLeft": 0.0005505419685505331
+ }
+ },
+ {
+ "timeCode": 1.8666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00006052270327927545,
+ "EyeWideLeft": 0.05727725848555565,
+ "EyeWideRight": 0.05743936821818352,
+ "JawLeft": 0.005187424831092358,
+ "JawRight": 0.0013570468872785568,
+ "JawOpen": 0.01823445037007332,
+ "MouthClose": 0.035349760204553604,
+ "MouthFunnel": 0.06224074959754944,
+ "MouthPucker": 0.01133218314498663,
+ "MouthLeft": 0.0023981730919331312,
+ "MouthSmileLeft": 0.06851593405008316,
+ "MouthSmileRight": 0.0701846033334732,
+ "MouthFrownLeft": 0.015560360625386238,
+ "MouthFrownRight": 0.016414135694503784,
+ "MouthDimpleLeft": 0.026020905002951622,
+ "MouthDimpleRight": 0.025754516944289207,
+ "MouthStretchLeft": 0.0001939281792147085,
+ "MouthStretchRight": 0.0002884809800889343,
+ "MouthRollLower": 0.0006947200745344162,
+ "MouthShrugLower": 0.023168692365288734,
+ "MouthShrugUpper": 0.0006623195367865264,
+ "MouthPressLeft": 0.0009633296285755932,
+ "MouthLowerDownLeft": 0.026973167434334755,
+ "MouthLowerDownRight": 0.026369521394371986,
+ "BrowDownLeft": 0.0005214318516664207,
+ "BrowInnerUp": 0.05680321902036667,
+ "BrowOuterUpLeft": 0.12349256128072739,
+ "BrowOuterUpRight": 0.12409986555576324,
+ "CheekPuff": 0.005239627789705992,
+ "CheekSquintLeft": 0.0004783958138432354,
+ "NoseSneerLeft": 0.00024218000180553645
+ }
+ },
+ {
+ "timeCode": 1.9,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00004534221807261929,
+ "EyeWideLeft": 0.05877929925918579,
+ "EyeWideRight": 0.05893111974000931,
+ "JawLeft": 0.01129267830401659,
+ "JawRight": 0.006850023753941059,
+ "MouthClose": 0.027022413909435272,
+ "MouthFunnel": 0.010907361283898354,
+ "MouthLeft": 0.0015610603149980307,
+ "MouthSmileLeft": 0.0380009263753891,
+ "MouthSmileRight": 0.039151884615421295,
+ "MouthFrownLeft": 0.019857628270983696,
+ "MouthFrownRight": 0.021067803725600243,
+ "MouthDimpleLeft": 0.01610671915113926,
+ "MouthDimpleRight": 0.015012349002063274,
+ "MouthStretchRight": 0.00006181843491503969,
+ "MouthRollUpper": 0.004048324190080166,
+ "MouthShrugLower": 0.046683646738529205,
+ "MouthPressLeft": 0.0015331736067309976,
+ "MouthLowerDownLeft": 0.02982570230960846,
+ "MouthLowerDownRight": 0.02888871729373932,
+ "MouthUpperUpLeft": 0.00006006343392073177,
+ "BrowDownLeft": 0.00047375194844789803,
+ "BrowInnerUp": 0.059577520936727524,
+ "BrowOuterUpLeft": 0.11997758597135544,
+ "BrowOuterUpRight": 0.12054356187582016,
+ "CheekPuff": 0.008831518702208996,
+ "CheekSquintLeft": 0.000824394344817847,
+ "NoseSneerLeft": 0.00038108701119199395
+ }
+ },
+ {
+ "timeCode": 1.9333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00006389550253516063,
+ "EyeWideLeft": 0.05902896448969841,
+ "EyeWideRight": 0.05917791649699211,
+ "JawForward": 0.0018344956915825605,
+ "JawLeft": 0.017982173711061478,
+ "JawRight": 0.014931343495845795,
+ "MouthClose": 0.00990009680390358,
+ "MouthLeft": 0.001496800105087459,
+ "MouthSmileLeft": 0.011918892152607441,
+ "MouthSmileRight": 0.01241824496537447,
+ "MouthFrownLeft": 0.02980051375925541,
+ "MouthFrownRight": 0.03142226114869118,
+ "MouthDimpleLeft": 0.02505476586520672,
+ "MouthDimpleRight": 0.023491740226745605,
+ "MouthStretchLeft": 0.0013203579001128674,
+ "MouthStretchRight": 0.001335226814262569,
+ "MouthRollLower": 0.0002788252313621342,
+ "MouthRollUpper": 0.039444878697395325,
+ "MouthShrugLower": 0.08794759958982468,
+ "MouthPressLeft": 0.0008084266446530819,
+ "MouthLowerDownLeft": 0.03978367894887924,
+ "MouthLowerDownRight": 0.038467470556497574,
+ "MouthUpperUpLeft": 0.0005758706829510629,
+ "BrowDownLeft": 0.0004124213010072708,
+ "BrowInnerUp": 0.049501027911901474,
+ "BrowOuterUpLeft": 0.10785793513059616,
+ "BrowOuterUpRight": 0.10835595428943634,
+ "CheekPuff": 0.006394912488758564,
+ "CheekSquintLeft": 0.0012646674877032638,
+ "NoseSneerLeft": 0.0009279825026169419
+ }
+ },
+ {
+ "timeCode": 1.9666666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00005036048241890967,
+ "EyeWideLeft": 0.06094690412282944,
+ "EyeWideRight": 0.06109786033630371,
+ "JawForward": 0.02602536603808403,
+ "JawLeft": 0.014027860946953297,
+ "JawRight": 0.011941375210881233,
+ "MouthClose": 0.004729997366666794,
+ "MouthLeft": 0.0007566444692201912,
+ "MouthSmileLeft": 0.0003881521988660097,
+ "MouthFrownLeft": 0.021228551864624023,
+ "MouthFrownRight": 0.023318059742450714,
+ "MouthDimpleLeft": 0.03424232453107834,
+ "MouthDimpleRight": 0.03191071376204491,
+ "MouthStretchLeft": 0.0033153945114463568,
+ "MouthStretchRight": 0.003268751548603177,
+ "MouthRollLower": 0.02078741230070591,
+ "MouthRollUpper": 0.04224042966961861,
+ "MouthShrugLower": 0.08207301795482635,
+ "MouthPressLeft": 0.0004073462914675474,
+ "MouthLowerDownLeft": 0.032145678997039795,
+ "MouthLowerDownRight": 0.03026391565799713,
+ "MouthUpperUpLeft": 0.0008124581654556096,
+ "BrowDownLeft": 0.00035459393984638155,
+ "BrowInnerUp": 0.03706198185682297,
+ "BrowOuterUpLeft": 0.10035552084445953,
+ "BrowOuterUpRight": 0.10081552714109421,
+ "CheekPuff": 0.002421773737296462,
+ "CheekSquintLeft": 0.0014922169502824545,
+ "NoseSneerLeft": 0.00101079314481467
+ }
+ },
+ {
+ "timeCode": 2,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000051846745918737724,
+ "EyeWideLeft": 0.06191086396574974,
+ "EyeWideRight": 0.062070753425359726,
+ "JawForward": 0.03261835500597954,
+ "JawLeft": 0.007915263064205647,
+ "JawRight": 0.006896825972944498,
+ "MouthClose": 0.002844231901690364,
+ "MouthLeft": 0.0005443015834316611,
+ "MouthSmileLeft": 0.0008400097722187638,
+ "MouthFrownLeft": 0.014996287412941456,
+ "MouthFrownRight": 0.017175164073705673,
+ "MouthDimpleLeft": 0.030979612842202187,
+ "MouthDimpleRight": 0.028529351577162743,
+ "MouthStretchLeft": 0.00364757445640862,
+ "MouthStretchRight": 0.0035757895093411207,
+ "MouthRollLower": 0.028339777141809464,
+ "MouthRollUpper": 0.037833914160728455,
+ "MouthShrugLower": 0.07575596868991852,
+ "MouthPressLeft": 0.00008904850255930796,
+ "MouthLowerDownLeft": 0.022019175812602043,
+ "MouthLowerDownRight": 0.020147699862718582,
+ "MouthUpperUpLeft": 0.0008488975581713021,
+ "BrowDownLeft": 0.00038425883394666016,
+ "BrowInnerUp": 0.031104806810617447,
+ "BrowOuterUpLeft": 0.09334742277860641,
+ "BrowOuterUpRight": 0.09387722611427307,
+ "CheekPuff": 0.0005104508600197732,
+ "CheekSquintLeft": 0.0013463333016261458,
+ "NoseSneerLeft": 0.001001096679829061
+ }
+ },
+ {
+ "timeCode": 2.033333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000038478556234622374,
+ "EyeWideLeft": 0.06283119320869446,
+ "EyeWideRight": 0.06299228221178055,
+ "JawForward": 0.032719068229198456,
+ "JawLeft": 0.007689535617828369,
+ "JawRight": 0.006937698926776648,
+ "MouthClose": 0.004456375725567341,
+ "MouthLeft": 0.0006343020941130817,
+ "MouthSmileLeft": 0.0011583400191739202,
+ "MouthFrownLeft": 0.013876921497285366,
+ "MouthFrownRight": 0.016156448051333427,
+ "MouthDimpleLeft": 0.03133881092071533,
+ "MouthDimpleRight": 0.028669271618127823,
+ "MouthStretchLeft": 0.0033117576967924833,
+ "MouthStretchRight": 0.00321872322820127,
+ "MouthRollLower": 0.03013690747320652,
+ "MouthRollUpper": 0.037532903254032135,
+ "MouthShrugLower": 0.08170317113399506,
+ "MouthPressLeft": 0.000010403210580989253,
+ "MouthLowerDownLeft": 0.021430671215057373,
+ "MouthLowerDownRight": 0.019443821161985397,
+ "MouthUpperUpLeft": 0.0008981713326647878,
+ "BrowDownLeft": 0.00039884590660221875,
+ "BrowInnerUp": 0.028268134221434593,
+ "BrowOuterUpLeft": 0.09187877923250198,
+ "BrowOuterUpRight": 0.09243079274892807,
+ "CheekPuff": 0.0008104019216261804,
+ "CheekSquintLeft": 0.0013169321464374661,
+ "NoseSneerLeft": 0.0010015195002779365
+ }
+ },
+ {
+ "timeCode": 2.066666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000054171530791791156,
+ "EyeWideLeft": 0.06301861256361008,
+ "EyeWideRight": 0.0631842091679573,
+ "JawForward": 0.03197694569826126,
+ "JawLeft": 0.0095920255407691,
+ "JawRight": 0.007960811257362366,
+ "MouthClose": 0.005073712207376957,
+ "MouthLeft": 0.00040270751924254,
+ "MouthSmileLeft": 0.0013228930765762925,
+ "MouthFrownLeft": 0.013630199246108532,
+ "MouthFrownRight": 0.015710052102804184,
+ "MouthDimpleLeft": 0.031035644933581352,
+ "MouthDimpleRight": 0.02839452028274536,
+ "MouthStretchLeft": 0.002680146601051092,
+ "MouthStretchRight": 0.00257791462354362,
+ "MouthRollLower": 0.027445664629340172,
+ "MouthRollUpper": 0.036316439509391785,
+ "MouthShrugLower": 0.08880088478326797,
+ "MouthPressLeft": 0.000008582219379604794,
+ "MouthLowerDownLeft": 0.024971310049295425,
+ "MouthLowerDownRight": 0.02301056869328022,
+ "MouthUpperUpLeft": 0.0007451593410223722,
+ "BrowDownLeft": 0.0004190781037323177,
+ "BrowInnerUp": 0.030511928722262383,
+ "BrowOuterUpLeft": 0.0879865363240242,
+ "BrowOuterUpRight": 0.08856210112571716,
+ "CheekPuff": 0.0024781927932053804,
+ "CheekSquintLeft": 0.001165958121418953,
+ "NoseSneerLeft": 0.0008747630636207759
+ }
+ },
+ {
+ "timeCode": 2.1,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0000531779951415956,
+ "EyeWideLeft": 0.06231022998690605,
+ "EyeWideRight": 0.06247755140066147,
+ "JawForward": 0.02824551984667778,
+ "JawLeft": 0.008451186120510101,
+ "JawRight": 0.006643229629844427,
+ "MouthClose": 0.008087366819381714,
+ "MouthLeft": 0.00046105479123070836,
+ "MouthSmileLeft": 0.0015100045129656792,
+ "MouthFrownLeft": 0.011051992885768414,
+ "MouthFrownRight": 0.012980407103896141,
+ "MouthDimpleLeft": 0.02647063508629799,
+ "MouthDimpleRight": 0.02391142211854458,
+ "MouthStretchLeft": 0.0018802203703671694,
+ "MouthStretchRight": 0.001767478184774518,
+ "MouthRollLower": 0.022259075194597244,
+ "MouthRollUpper": 0.028073523193597794,
+ "MouthShrugLower": 0.0768921747803688,
+ "MouthLowerDownLeft": 0.02137630432844162,
+ "MouthLowerDownRight": 0.019433094188570976,
+ "MouthUpperUpLeft": 0.0006727884174324572,
+ "BrowDownLeft": 0.00043583096703514457,
+ "BrowInnerUp": 0.027266554534435272,
+ "BrowOuterUpLeft": 0.08501415699720383,
+ "BrowOuterUpRight": 0.08561331033706665,
+ "CheekPuff": 0.0028181388042867184,
+ "CheekSquintLeft": 0.0010388236260041595,
+ "NoseSneerLeft": 0.0007778608123771846
+ }
+ },
+ {
+ "timeCode": 2.1333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00003497229045024142,
+ "EyeWideLeft": 0.06137982755899429,
+ "EyeWideRight": 0.06153736263513565,
+ "JawForward": 0.03096345067024231,
+ "JawLeft": 0.008975234813988209,
+ "JawRight": 0.006782451178878546,
+ "MouthClose": 0.00844096764922142,
+ "MouthLeft": 0.00015361246187239885,
+ "MouthSmileLeft": 0.0015434277011081576,
+ "MouthFrownLeft": 0.01091821026057005,
+ "MouthFrownRight": 0.012641766108572483,
+ "MouthDimpleLeft": 0.02352292649447918,
+ "MouthDimpleRight": 0.02133583091199398,
+ "MouthStretchLeft": 0.001317421905696392,
+ "MouthStretchRight": 0.0012056011473760009,
+ "MouthRollLower": 0.018422696739435196,
+ "MouthRollUpper": 0.027346748858690262,
+ "MouthShrugLower": 0.07561801373958588,
+ "MouthPressRight": 0.00012075966515112668,
+ "MouthLowerDownLeft": 0.02785295806825161,
+ "MouthLowerDownRight": 0.026079991832375526,
+ "MouthUpperUpLeft": 0.0007678043912164867,
+ "BrowDownLeft": 0.00039504552842117846,
+ "BrowInnerUp": 0.023344622924923897,
+ "BrowOuterUpLeft": 0.08034654706716537,
+ "BrowOuterUpRight": 0.08089261502027512,
+ "CheekPuff": 0.005056511145085096,
+ "CheekSquintLeft": 0.000969317217823118,
+ "NoseSneerLeft": 0.0008001151727512479
+ }
+ },
+ {
+ "timeCode": 2.1666666666666665,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000009086492354981601,
+ "EyeWideLeft": 0.05896395072340965,
+ "EyeWideRight": 0.05910886451601982,
+ "JawForward": 0.02697915956377983,
+ "JawLeft": 0.002291131531819701,
+ "JawRight": 0.0014663831098005176,
+ "MouthClose": 0.02241293340921402,
+ "MouthPucker": 0.015072804875671864,
+ "MouthLeft": 0.0005240386235527694,
+ "MouthSmileLeft": 0.0009600679622963071,
+ "MouthFrownLeft": 0.005211852490901947,
+ "MouthFrownRight": 0.005904305260628462,
+ "MouthDimpleLeft": 0.0006687932764180005,
+ "MouthStretchLeft": 0.00007566035492345691,
+ "MouthRollLower": 0.00019884835637640208,
+ "MouthRollUpper": 0.008865945041179657,
+ "MouthShrugLower": 0.04199469834566116,
+ "MouthPressLeft": 0.004168723244220018,
+ "MouthPressRight": 0.005112774204462767,
+ "MouthLowerDownLeft": 0.025379328057169914,
+ "MouthLowerDownRight": 0.024098357185721397,
+ "MouthUpperUpLeft": 0.0001735477999318391,
+ "BrowDownLeft": 0.0002694924478419125,
+ "BrowInnerUp": 0.02583303488790989,
+ "BrowOuterUpLeft": 0.0845101848244667,
+ "BrowOuterUpRight": 0.08490844815969467,
+ "CheekPuff": 0.008889674209058285,
+ "CheekSquintLeft": 0.00003696484782267362,
+ "NoseSneerLeft": 0.00015505436749663204
+ }
+ },
+ {
+ "timeCode": 2.2,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000022196920326678082,
+ "EyeWideLeft": 0.059422869235277176,
+ "EyeWideRight": 0.0595717616379261,
+ "JawForward": 0.031563736498355865,
+ "JawRight": 0.003603024408221245,
+ "JawOpen": 0.03943760320544243,
+ "MouthClose": 0.056171953678131104,
+ "MouthFunnel": 0.0023567485623061657,
+ "MouthPucker": 0.1098458543419838,
+ "MouthSmileLeft": 0.0004557674692478031,
+ "MouthFrownLeft": 0.011083324439823627,
+ "MouthFrownRight": 0.011445336975157261,
+ "MouthDimpleRight": 0.00005600851363851689,
+ "MouthStretchLeft": 0.00006439806747948751,
+ "MouthRollUpper": 0.0013004367938265204,
+ "MouthShrugUpper": 0.011243934743106365,
+ "MouthPressRight": 0.001463617547415197,
+ "MouthLowerDownLeft": 0.020930465310811996,
+ "MouthLowerDownRight": 0.01973031274974346,
+ "MouthUpperUpLeft": 0.00027678493643179536,
+ "BrowDownLeft": 0.00017794818268157542,
+ "BrowInnerUp": 0.04316592961549759,
+ "BrowOuterUpLeft": 0.09287592768669128,
+ "BrowOuterUpRight": 0.09322462230920792,
+ "CheekPuff": 0.0051062884740531445
+ }
+ },
+ {
+ "timeCode": 2.2333333333333334,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00007533682946814224,
+ "EyeWideLeft": 0.06528979539871216,
+ "EyeWideRight": 0.06546914577484131,
+ "JawForward": 0.03019852750003338,
+ "JawLeft": 0.004008137620985508,
+ "JawRight": 0.004909905139356852,
+ "JawOpen": 0.0650191530585289,
+ "MouthClose": 0.07649128139019012,
+ "MouthPucker": 0.1863114982843399,
+ "MouthRight": 0.001810360001400113,
+ "MouthSmileLeft": 0.00003356220622663386,
+ "MouthFrownLeft": 0.02916882187128067,
+ "MouthFrownRight": 0.02906649187207222,
+ "MouthDimpleRight": 0.00036210744292475283,
+ "MouthStretchLeft": 0.00003944633135688491,
+ "MouthRollUpper": 0.0010240650735795498,
+ "MouthShrugUpper": 0.016110964119434357,
+ "MouthPressLeft": 0.020350903272628784,
+ "MouthPressRight": 0.021554311737418175,
+ "MouthLowerDownLeft": 0.001298171584494412,
+ "MouthUpperUpRight": 0.0007324767648242414,
+ "BrowDownLeft": 0.0002945468295365572,
+ "BrowInnerUp": 0.05800419673323631,
+ "BrowOuterUpLeft": 0.10814913362264633,
+ "BrowOuterUpRight": 0.10872069746255875,
+ "CheekPuff": 0.007434349041432142,
+ "CheekSquintRight": 0.0008301387424580753,
+ "NoseSneerRight": 0.0005158474086783826
+ }
+ },
+ {
+ "timeCode": 2.2666666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00013895997835788876,
+ "EyeWideLeft": 0.07084845006465912,
+ "EyeWideRight": 0.07106399536132812,
+ "JawForward": 0.028277091681957245,
+ "JawLeft": 0.012930992059409618,
+ "JawRight": 0.008620035834610462,
+ "JawOpen": 0.15574760735034943,
+ "MouthClose": 0.07593774795532227,
+ "MouthFunnel": 0.08985845744609833,
+ "MouthPucker": 0.29126688838005066,
+ "MouthRight": 0.001916930079460144,
+ "MouthSmileRight": 0.00008482900011586025,
+ "MouthFrownLeft": 0.055048808455467224,
+ "MouthFrownRight": 0.0561455674469471,
+ "MouthDimpleLeft": 0.0006749971653334796,
+ "MouthStretchLeft": 0.000041237839468522,
+ "MouthRollUpper": 0.013837014324963093,
+ "MouthShrugUpper": 0.022028062492609024,
+ "MouthPressRight": 0.00007379668386420235,
+ "MouthLowerDownLeft": 0.002441535471007228,
+ "MouthUpperUpRight": 0.001060791895724833,
+ "BrowDownLeft": 0.00042070241761393845,
+ "BrowInnerUp": 0.07598154991865158,
+ "BrowOuterUpLeft": 0.12384559214115143,
+ "BrowOuterUpRight": 0.12467365711927414,
+ "CheekPuff": 0.011431976221501827,
+ "CheekSquintRight": 0.0005097988178022206,
+ "NoseSneerRight": 0.00013808792573399842
+ }
+ },
+ {
+ "timeCode": 2.3,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001609231549082324,
+ "EyeWideLeft": 0.07713812589645386,
+ "EyeWideRight": 0.07737355679273605,
+ "JawForward": 0.04388422146439552,
+ "JawLeft": 0.01986422762274742,
+ "JawRight": 0.01154889166355133,
+ "JawOpen": 0.2103966325521469,
+ "MouthClose": 0.08473318815231323,
+ "MouthFunnel": 0.09010451287031174,
+ "MouthPucker": 0.3057469427585602,
+ "MouthRight": 0.004430948756635189,
+ "MouthSmileRight": 0.0008366255788132548,
+ "MouthFrownLeft": 0.06942261755466461,
+ "MouthFrownRight": 0.06984083354473114,
+ "MouthRollUpper": 0.01901376247406006,
+ "MouthShrugUpper": 0.025280267000198364,
+ "MouthPressLeft": 0.0003344230353832245,
+ "MouthLowerDownLeft": 0.0021479816641658545,
+ "MouthUpperUpRight": 0.002216096268966794,
+ "BrowDownLeft": 0.000566155300475657,
+ "BrowInnerUp": 0.0901421308517456,
+ "BrowOuterUpLeft": 0.1382221132516861,
+ "BrowOuterUpRight": 0.13923563063144684,
+ "CheekPuff": 0.01567465253174305,
+ "CheekSquintRight": 0.0010505982208997011,
+ "NoseSneerRight": 0.0006470709922723472
+ }
+ },
+ {
+ "timeCode": 2.3333333333333335,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001530300360172987,
+ "EyeWideLeft": 0.07370603084564209,
+ "EyeWideRight": 0.07393886148929596,
+ "JawForward": 0.06460548937320709,
+ "JawLeft": 0.007222733926028013,
+ "JawOpen": 0.2783920466899872,
+ "MouthClose": 0.07159477472305298,
+ "MouthFunnel": 0.23498065769672394,
+ "MouthPucker": 0.17920364439487457,
+ "MouthRight": 0.0007957115885801613,
+ "MouthFrownLeft": 0.04316747933626175,
+ "MouthFrownRight": 0.042775046080350876,
+ "MouthDimpleLeft": 0.011483678594231606,
+ "MouthDimpleRight": 0.011957729235291481,
+ "MouthStretchLeft": 0.000035709137591766194,
+ "MouthRollUpper": 0.03945452347397804,
+ "MouthShrugUpper": 0.019066451117396355,
+ "MouthPressRight": 0.0009865828324109316,
+ "MouthLowerDownLeft": 0.046297576278448105,
+ "MouthLowerDownRight": 0.04433419555425644,
+ "MouthUpperUpRight": 0.0015593600692227483,
+ "BrowDownLeft": 0.0005949877668172121,
+ "BrowInnerUp": 0.0795704573392868,
+ "BrowOuterUpLeft": 0.141033336520195,
+ "BrowOuterUpRight": 0.1419876217842102,
+ "CheekPuff": 0.013407634571194649,
+ "CheekSquintRight": 0.000794480845797807,
+ "NoseSneerRight": 0.00062562245875597
+ }
+ },
+ {
+ "timeCode": 2.3666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00013504961680155247,
+ "EyeWideLeft": 0.07075566053390503,
+ "EyeWideRight": 0.07096651196479797,
+ "JawForward": 0.036281768232584,
+ "JawLeft": 0.010975590907037258,
+ "JawRight": 0.0049363914877176285,
+ "JawOpen": 0.2519388496875763,
+ "MouthClose": 0.05769305303692818,
+ "MouthFunnel": 0.3564407527446747,
+ "MouthPucker": 0.08060309290885925,
+ "MouthLeft": 0.001237833988852799,
+ "MouthSmileRight": 0.0005051109474152327,
+ "MouthFrownLeft": 0.04429010674357414,
+ "MouthFrownRight": 0.04369645193219185,
+ "MouthDimpleLeft": 0.02611410617828369,
+ "MouthDimpleRight": 0.027540892362594604,
+ "MouthStretchLeft": 9.689431408332894e-7,
+ "MouthRollUpper": 0.041343994438648224,
+ "MouthShrugUpper": 0.014610526151955128,
+ "MouthPressRight": 0.001504888292402029,
+ "MouthLowerDownLeft": 0.06912720203399658,
+ "MouthLowerDownRight": 0.06855973601341248,
+ "MouthUpperUpRight": 0.000055263644753722474,
+ "BrowDownLeft": 0.0005160538712516427,
+ "BrowInnerUp": 0.08175695687532425,
+ "BrowOuterUpLeft": 0.14753437042236328,
+ "BrowOuterUpRight": 0.1483289897441864,
+ "CheekPuff": 0.00912737287580967,
+ "NoseSneerLeft": 0.00005366729965317063
+ }
+ },
+ {
+ "timeCode": 2.4,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00017696119903121144,
+ "EyeWideLeft": 0.06979767233133316,
+ "EyeWideRight": 0.07001647353172302,
+ "JawLeft": 0.03797277435660362,
+ "JawRight": 0.02946939878165722,
+ "JawOpen": 0.1274605244398117,
+ "MouthClose": 0.06445847451686859,
+ "MouthFunnel": 0.5381860136985779,
+ "MouthPucker": 0.08467469364404678,
+ "MouthLeft": 0.0013282408472150564,
+ "MouthSmileLeft": 0.0008522378630004823,
+ "MouthFrownLeft": 0.06400144845247269,
+ "MouthFrownRight": 0.06273266673088074,
+ "MouthDimpleLeft": 0.029996875673532486,
+ "MouthDimpleRight": 0.03126830980181694,
+ "MouthStretchLeft": 0.00008377871563425288,
+ "MouthRollUpper": 0.013196310959756374,
+ "MouthShrugUpper": 0.004638827871531248,
+ "MouthPressRight": 0.0028351035434752703,
+ "MouthLowerDownLeft": 0.058824341744184494,
+ "MouthLowerDownRight": 0.057626690715551376,
+ "MouthUpperUpRight": 0.0001391133846482262,
+ "BrowDownLeft": 0.0004774968547280878,
+ "BrowInnerUp": 0.10537178069353104,
+ "BrowOuterUpLeft": 0.1536419838666916,
+ "BrowOuterUpRight": 0.15438376367092133,
+ "CheekPuff": 0.019100451841950417
+ }
+ },
+ {
+ "timeCode": 2.433333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00023685209453105927,
+ "EyeWideLeft": 0.0640663132071495,
+ "EyeWideRight": 0.0642988532781601,
+ "JawLeft": 0.027099868282675743,
+ "JawRight": 0.02457605116069317,
+ "JawOpen": 0.040577858686447144,
+ "MouthClose": 0.04843183234333992,
+ "MouthFunnel": 0.5683956146240234,
+ "MouthPucker": 0.02668340690433979,
+ "MouthLeft": 0.003172255354002118,
+ "MouthSmileLeft": 0.09827737510204315,
+ "MouthSmileRight": 0.09931575506925583,
+ "MouthFrownLeft": 0.03087887540459633,
+ "MouthFrownRight": 0.030207853764295578,
+ "MouthDimpleLeft": 0.05232800170779228,
+ "MouthDimpleRight": 0.05429958179593086,
+ "MouthStretchRight": 0.000029895327315898612,
+ "MouthShrugUpper": 0.026113538071513176,
+ "MouthPressLeft": 0.013228097930550575,
+ "MouthPressRight": 0.015317903831601143,
+ "MouthLowerDownLeft": 0.05307164788246155,
+ "MouthLowerDownRight": 0.053303975611925125,
+ "MouthUpperUpLeft": 0.0008340712520293891,
+ "BrowDownLeft": 0.00047865640954114497,
+ "BrowInnerUp": 0.09409814327955246,
+ "BrowOuterUpLeft": 0.15438491106033325,
+ "BrowOuterUpRight": 0.1550663560628891,
+ "CheekPuff": 0.010360991582274437,
+ "CheekSquintLeft": 0.0004546733689494431,
+ "NoseSneerLeft": 0.000709874031599611
+ }
+ },
+ {
+ "timeCode": 2.466666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00025278565590269864,
+ "EyeWideLeft": 0.06325270235538483,
+ "EyeWideRight": 0.06349161267280579,
+ "JawLeft": 0.021018778905272484,
+ "JawRight": 0.02254880964756012,
+ "JawOpen": 0.015942895784974098,
+ "MouthClose": 0.03406171873211861,
+ "MouthFunnel": 0.5490844249725342,
+ "MouthPucker": 0.026735499501228333,
+ "MouthLeft": 0.0029219340067356825,
+ "MouthSmileLeft": 0.08302739262580872,
+ "MouthSmileRight": 0.08459555357694626,
+ "MouthFrownLeft": 0.02584723010659218,
+ "MouthFrownRight": 0.024628816172480583,
+ "MouthDimpleLeft": 0.023944878950715065,
+ "MouthDimpleRight": 0.027107402682304382,
+ "MouthStretchRight": 0.0000820443601696752,
+ "MouthRollUpper": 0.012752837501466274,
+ "MouthShrugUpper": 0.027554674074053764,
+ "MouthPressLeft": 0.020181136205792427,
+ "MouthPressRight": 0.023074395954608917,
+ "MouthLowerDownLeft": 0.05946052074432373,
+ "MouthLowerDownRight": 0.060544032603502274,
+ "MouthUpperUpLeft": 0.014118194580078125,
+ "MouthUpperUpRight": 0.013350802473723888,
+ "BrowDownLeft": 0.0005391462473198771,
+ "BrowInnerUp": 0.08462747931480408,
+ "BrowOuterUpLeft": 0.15308736264705658,
+ "BrowOuterUpRight": 0.15379028022289276,
+ "CheekPuff": 0.008367469534277916,
+ "CheekSquintLeft": 0.000209088422707282,
+ "NoseSneerLeft": 0.0006601566565223038
+ }
+ },
+ {
+ "timeCode": 2.5,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00018267064297106117,
+ "EyeWideLeft": 0.06124791502952576,
+ "EyeWideRight": 0.061477601528167725,
+ "JawForward": 0.03352153301239014,
+ "JawLeft": 0.005289498250931501,
+ "JawRight": 0.010835510678589344,
+ "JawOpen": 0.03881610929965973,
+ "MouthClose": 0.004469261039048433,
+ "MouthFunnel": 0.3088447153568268,
+ "MouthLeft": 0.0015490681398659945,
+ "MouthSmileLeft": 0.07254385203123093,
+ "MouthSmileRight": 0.07556156069040298,
+ "MouthFrownLeft": 0.0026170602068305016,
+ "MouthDimpleLeft": 0.01383169461041689,
+ "MouthDimpleRight": 0.019289789721369743,
+ "MouthStretchLeft": 0.0035197939723730087,
+ "MouthStretchRight": 0.003750497940927744,
+ "MouthRollUpper": 0.013512842357158661,
+ "MouthShrugUpper": 0.02597266249358654,
+ "MouthPressLeft": 0.00038162359851412475,
+ "MouthPressRight": 0.004155012313276529,
+ "MouthLowerDownLeft": 0.11275295168161392,
+ "MouthLowerDownRight": 0.11554868519306183,
+ "MouthUpperUpLeft": 0.10634392499923706,
+ "MouthUpperUpRight": 0.10714540630578995,
+ "BrowDownLeft": 0.0007369279628619552,
+ "BrowInnerUp": 0.05674692615866661,
+ "BrowOuterUpLeft": 0.1523231714963913,
+ "BrowOuterUpRight": 0.15321004390716553,
+ "CheekPuff": 0.0009517896105535328,
+ "CheekSquintLeft": 0.0024657947942614555,
+ "CheekSquintRight": 0.0036682544741779566,
+ "NoseSneerRight": 0.00001733430144668091
+ }
+ },
+ {
+ "timeCode": 2.533333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00020695311832241714,
+ "EyeWideLeft": 0.06274382025003433,
+ "EyeWideRight": 0.0629882961511612,
+ "JawForward": 0.05868031457066536,
+ "JawRight": 0.005678732879459858,
+ "JawOpen": 0.06473351269960403,
+ "MouthFunnel": 0.07223878800868988,
+ "MouthLeft": 0.0015375622315332294,
+ "MouthSmileLeft": 0.022028878331184387,
+ "MouthSmileRight": 0.02385813370347023,
+ "MouthFrownLeft": 0.0022766664624214172,
+ "MouthDimpleLeft": 0.024941474199295044,
+ "MouthDimpleRight": 0.029182499274611473,
+ "MouthStretchLeft": 0.009172191843390465,
+ "MouthStretchRight": 0.009348577819764614,
+ "MouthShrugUpper": 0.050853993743658066,
+ "MouthPressRight": 0.003420532215386629,
+ "MouthLowerDownLeft": 0.21131372451782227,
+ "MouthLowerDownRight": 0.21404175460338593,
+ "MouthUpperUpLeft": 0.1960110366344452,
+ "MouthUpperUpRight": 0.19671933352947235,
+ "BrowDownLeft": 0.0010098316706717014,
+ "BrowInnerUp": 0.07107347249984741,
+ "BrowOuterUpLeft": 0.162648007273674,
+ "BrowOuterUpRight": 0.16385477781295776,
+ "CheekSquintLeft": 0.011780733242630959,
+ "CheekSquintRight": 0.013467255048453808,
+ "NoseSneerLeft": 0.009708172641694546,
+ "NoseSneerRight": 0.010125230066478252
+ }
+ },
+ {
+ "timeCode": 2.566666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0002682059712242335,
+ "EyeWideLeft": 0.05874893441796303,
+ "EyeWideRight": 0.05900117754936218,
+ "JawForward": 0.03125160560011864,
+ "JawRight": 0.003173086792230606,
+ "JawOpen": 0.037133291363716125,
+ "MouthLeft": 0.0011401622323319316,
+ "MouthSmileLeft": 0.045427896082401276,
+ "MouthSmileRight": 0.04544195160269737,
+ "MouthFrownLeft": 0.001655452768318355,
+ "MouthDimpleLeft": 0.040311772376298904,
+ "MouthDimpleRight": 0.04259658232331276,
+ "MouthStretchLeft": 0.014839154668152332,
+ "MouthStretchRight": 0.014887097291648388,
+ "MouthShrugUpper": 0.0736432671546936,
+ "MouthPressRight": 0.0033602993935346603,
+ "MouthLowerDownLeft": 0.20440438389778137,
+ "MouthLowerDownRight": 0.2063508778810501,
+ "MouthUpperUpLeft": 0.2202722132205963,
+ "MouthUpperUpRight": 0.22048428654670715,
+ "BrowDownLeft": 0.0010880428599193692,
+ "BrowInnerUp": 0.08769000321626663,
+ "BrowOuterUpLeft": 0.16455160081386566,
+ "BrowOuterUpRight": 0.16586095094680786,
+ "CheekSquintRight": 0.0015778562519699335,
+ "NoseSneerLeft": 0.025434643030166626,
+ "NoseSneerRight": 0.025945425033569336
+ }
+ },
+ {
+ "timeCode": 2.6,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00024731457233428955,
+ "EyeWideLeft": 0.05493353679776192,
+ "EyeWideRight": 0.055150192230939865,
+ "JawRight": 0.004380025435239077,
+ "JawOpen": 0.01076484750956297,
+ "MouthLeft": 0.0020012434106320143,
+ "MouthRight": 0.0011107303434982896,
+ "MouthSmileLeft": 0.05869293957948685,
+ "MouthSmileRight": 0.05809935927391052,
+ "MouthFrownLeft": 0.0017910448368638754,
+ "MouthDimpleLeft": 0.05649171024560928,
+ "MouthDimpleRight": 0.058385808020830154,
+ "MouthStretchLeft": 0.019027525559067726,
+ "MouthStretchRight": 0.019036775454878807,
+ "MouthRollLower": 0.008471704088151455,
+ "MouthShrugUpper": 0.08006509393453598,
+ "MouthPressRight": 0.0038734376430511475,
+ "MouthLowerDownLeft": 0.1518383026123047,
+ "MouthLowerDownRight": 0.15364034473896027,
+ "MouthUpperUpLeft": 0.2151033729314804,
+ "MouthUpperUpRight": 0.21567025780677795,
+ "BrowDownLeft": 0.0009997943416237831,
+ "BrowInnerUp": 0.09446344524621964,
+ "BrowOuterUpLeft": 0.15567828714847565,
+ "BrowOuterUpRight": 0.15692071616649628,
+ "CheekSquintRight": 0.0019230389734730124,
+ "NoseSneerLeft": 0.048032812774181366,
+ "NoseSneerRight": 0.049079399555921555
+ }
+ },
+ {
+ "timeCode": 2.6333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00013579378719441593,
+ "EyeWideLeft": 0.054887983947992325,
+ "EyeWideRight": 0.05504477024078369,
+ "JawForward": 0.018901849165558815,
+ "JawRight": 0.008999836631119251,
+ "JawOpen": 0.10323835909366608,
+ "MouthLeft": 0.0035192195791751146,
+ "MouthRight": 0.0008039429085329175,
+ "MouthSmileLeft": 0.03880190849304199,
+ "MouthSmileRight": 0.03664325177669525,
+ "MouthFrownLeft": 0.0012676621554419398,
+ "MouthDimpleLeft": 0.07406580448150635,
+ "MouthDimpleRight": 0.07489826530218124,
+ "MouthStretchLeft": 0.02433122508227825,
+ "MouthStretchRight": 0.0242332611232996,
+ "MouthShrugUpper": 0.06626114994287491,
+ "MouthPressRight": 0.004666393157094717,
+ "MouthLowerDownLeft": 0.20342819392681122,
+ "MouthLowerDownRight": 0.2042936533689499,
+ "MouthUpperUpLeft": 0.2179378718137741,
+ "MouthUpperUpRight": 0.2173689901828766,
+ "BrowDownLeft": 0.00085444375872612,
+ "BrowInnerUp": 0.091990165412426,
+ "BrowOuterUpLeft": 0.1459629386663437,
+ "BrowOuterUpRight": 0.1470894068479538,
+ "CheekSquintRight": 0.001185684697702527,
+ "NoseSneerLeft": 0.07332470268011093,
+ "NoseSneerRight": 0.07394171506166458
+ }
+ },
+ {
+ "timeCode": 2.6666666666666665,
+ "blendShapes": {
+ "EyeWideLeft": 0.0604698620736599,
+ "EyeWideRight": 0.06058037281036377,
+ "JawForward": 0.05932252109050751,
+ "JawRight": 0.007155525032430887,
+ "JawOpen": 0.28168565034866333,
+ "MouthLeft": 0.004045248497277498,
+ "MouthSmileLeft": 0.08066089451313019,
+ "MouthSmileRight": 0.07829359173774719,
+ "MouthFrownLeft": 0.0006963465129956603,
+ "MouthDimpleLeft": 0.04603991284966469,
+ "MouthDimpleRight": 0.046641141176223755,
+ "MouthStretchLeft": 0.022135451436042786,
+ "MouthStretchRight": 0.022008536383509636,
+ "MouthShrugUpper": 0.05280337482690811,
+ "MouthPressRight": 0.004256912041455507,
+ "MouthLowerDownLeft": 0.23643635213375092,
+ "MouthLowerDownRight": 0.23732788860797882,
+ "MouthUpperUpLeft": 0.16553843021392822,
+ "MouthUpperUpRight": 0.1633053719997406,
+ "BrowDownLeft": 0.0005528631736524403,
+ "BrowInnerUp": 0.0537576787173748,
+ "BrowOuterUpLeft": 0.1275465488433838,
+ "BrowOuterUpRight": 0.12826645374298096,
+ "CheekSquintLeft": 0.00010342930181650445,
+ "NoseSneerLeft": 0.05547214299440384,
+ "NoseSneerRight": 0.05522583797574043
+ }
+ },
+ {
+ "timeCode": 2.7,
+ "blendShapes": {
+ "EyeWideLeft": 0.06389732658863068,
+ "EyeWideRight": 0.06397024542093277,
+ "JawForward": 0.08895184099674225,
+ "JawLeft": 0.012524898163974285,
+ "JawRight": 0.021965796127915382,
+ "JawOpen": 0.4409635066986084,
+ "MouthLeft": 0.005478552542626858,
+ "MouthSmileLeft": 0.1031462624669075,
+ "MouthSmileRight": 0.10108541697263718,
+ "MouthFrownLeft": 0.02992284670472145,
+ "MouthFrownRight": 0.031080447137355804,
+ "MouthDimpleLeft": 0.028297925367951393,
+ "MouthDimpleRight": 0.028545940294861794,
+ "MouthStretchLeft": 0.020668908953666687,
+ "MouthStretchRight": 0.020519275218248367,
+ "MouthShrugUpper": 0.05220514535903931,
+ "MouthPressRight": 0.00440265191718936,
+ "MouthLowerDownLeft": 0.30161455273628235,
+ "MouthLowerDownRight": 0.3026871979236603,
+ "MouthUpperUpLeft": 0.1489858478307724,
+ "MouthUpperUpRight": 0.1434132307767868,
+ "BrowDownLeft": 0.0003138496831525117,
+ "BrowInnerUp": 0.01866593398153782,
+ "BrowOuterUpLeft": 0.11109811067581177,
+ "BrowOuterUpRight": 0.1114882230758667,
+ "CheekPuff": 0.0021661710925400257,
+ "CheekSquintLeft": 0.0025564958341419697,
+ "NoseSneerLeft": 0.045062944293022156,
+ "NoseSneerRight": 0.04240313917398453
+ }
+ },
+ {
+ "timeCode": 2.7333333333333334,
+ "blendShapes": {
+ "EyeWideLeft": 0.060107968747615814,
+ "EyeWideRight": 0.06015833094716072,
+ "JawForward": 0.0855882540345192,
+ "JawLeft": 0.014810663647949696,
+ "JawRight": 0.027396926656365395,
+ "JawOpen": 0.4457630217075348,
+ "MouthLeft": 0.00646135164424777,
+ "MouthSmileLeft": 0.12665142118930817,
+ "MouthSmileRight": 0.12477251142263412,
+ "MouthFrownLeft": 0.039522357285022736,
+ "MouthFrownRight": 0.042014360427856445,
+ "MouthDimpleLeft": 0.03630279377102852,
+ "MouthDimpleRight": 0.03567972406744957,
+ "MouthStretchLeft": 0.020770085975527763,
+ "MouthStretchRight": 0.020591726526618004,
+ "MouthShrugUpper": 0.0498831644654274,
+ "MouthPressRight": 0.004454002715647221,
+ "MouthLowerDownLeft": 0.30390453338623047,
+ "MouthLowerDownRight": 0.30440279841423035,
+ "MouthUpperUpLeft": 0.1420411318540573,
+ "MouthUpperUpRight": 0.1347133368253708,
+ "BrowDownLeft": 0.0001950199221028015,
+ "BrowOuterUpLeft": 0.09998971223831177,
+ "BrowOuterUpRight": 0.1001877561211586,
+ "CheekSquintLeft": 0.004057057201862335,
+ "NoseSneerLeft": 0.040015529841184616,
+ "NoseSneerRight": 0.03600767254829407
+ }
+ },
+ {
+ "timeCode": 2.7666666666666666,
+ "blendShapes": {
+ "EyeWideLeft": 0.0510285310447216,
+ "EyeWideRight": 0.05104377493262291,
+ "JawForward": 0.06453559547662735,
+ "JawLeft": 0.01120914425700903,
+ "JawRight": 0.022957658395171165,
+ "JawOpen": 0.35625356435775757,
+ "MouthLeft": 0.0058033159002661705,
+ "MouthSmileLeft": 0.12364808470010757,
+ "MouthSmileRight": 0.12240570783615112,
+ "MouthFrownLeft": 0.031630102545022964,
+ "MouthFrownRight": 0.03394928202033043,
+ "MouthDimpleLeft": 0.05742121860384941,
+ "MouthDimpleRight": 0.05654359981417656,
+ "MouthStretchLeft": 0.019947905093431473,
+ "MouthStretchRight": 0.01979967951774597,
+ "MouthRollLower": 0.013835822232067585,
+ "MouthShrugUpper": 0.032665759325027466,
+ "MouthPressRight": 0.00368773122318089,
+ "MouthLowerDownLeft": 0.2799864113330841,
+ "MouthLowerDownRight": 0.28022831678390503,
+ "MouthUpperUpLeft": 0.1438479870557785,
+ "MouthUpperUpRight": 0.13726739585399628,
+ "BrowDownLeft": 0.00005793363743578084,
+ "BrowOuterUpLeft": 0.09004907310009003,
+ "BrowOuterUpRight": 0.09010853618383408,
+ "CheekSquintLeft": 0.0038897297345101833,
+ "NoseSneerLeft": 0.03024667501449585,
+ "NoseSneerRight": 0.026524914428591728
+ }
+ },
+ {
+ "timeCode": 2.8,
+ "blendShapes": {
+ "EyeWideLeft": 0.041394542902708054,
+ "EyeWideRight": 0.041388750076293945,
+ "JawForward": 0.010415397584438324,
+ "JawLeft": 0.007367386016994715,
+ "JawRight": 0.017005247995257378,
+ "JawOpen": 0.22452154755592346,
+ "MouthLeft": 0.004690675530582666,
+ "MouthSmileLeft": 0.10180088877677917,
+ "MouthSmileRight": 0.10048723220825195,
+ "MouthFrownLeft": 0.01615143194794655,
+ "MouthFrownRight": 0.01762772724032402,
+ "MouthDimpleLeft": 0.07261072099208832,
+ "MouthDimpleRight": 0.07170497626066208,
+ "MouthStretchLeft": 0.018910562619566917,
+ "MouthStretchRight": 0.01876620016992092,
+ "MouthRollLower": 0.02459140680730343,
+ "MouthShrugUpper": 0.02508140541613102,
+ "MouthPressRight": 0.0032947182189673185,
+ "MouthLowerDownLeft": 0.25385215878486633,
+ "MouthLowerDownRight": 0.2538544833660126,
+ "MouthUpperUpLeft": 0.15746444463729858,
+ "MouthUpperUpRight": 0.15247854590415955,
+ "BrowDownLeft": 0.00001934874671860598,
+ "BrowOuterUpLeft": 0.07643095403909683,
+ "BrowOuterUpRight": 0.07646649330854416,
+ "CheekSquintLeft": 0.002831569407135248,
+ "NoseSneerLeft": 0.025279855355620384,
+ "NoseSneerRight": 0.022702453657984734
+ }
+ },
+ {
+ "timeCode": 2.8333333333333335,
+ "blendShapes": {
+ "EyeSquintLeft": 0.0015759665984660387,
+ "EyeWideLeft": 0.04082978889346123,
+ "EyeWideRight": 0.04082281515002251,
+ "JawLeft": 0.005897836294025183,
+ "JawRight": 0.01367948204278946,
+ "JawOpen": 0.18103750050067902,
+ "MouthClose": 0.003827411215752363,
+ "MouthLeft": 0.003861793549731374,
+ "MouthSmileLeft": 0.08907318115234375,
+ "MouthSmileRight": 0.09086612612009048,
+ "MouthFrownLeft": 0.008521239273250103,
+ "MouthFrownRight": 0.010365083813667297,
+ "MouthDimpleLeft": 0.08002092689275742,
+ "MouthDimpleRight": 0.07971620559692383,
+ "MouthStretchLeft": 0.011822422035038471,
+ "MouthStretchRight": 0.011861233040690422,
+ "MouthRollLower": 0.06044933199882507,
+ "MouthShrugUpper": 0.026782825589179993,
+ "MouthPressRight": 0.0004096612974535674,
+ "MouthLowerDownLeft": 0.21828320622444153,
+ "MouthLowerDownRight": 0.21925175189971924,
+ "MouthUpperUpLeft": 0.14155177772045135,
+ "MouthUpperUpRight": 0.1376393884420395,
+ "BrowDownLeft": 0.013647696003317833,
+ "BrowDownRight": 0.013778327964246273,
+ "BrowOuterUpLeft": 0.06685333698987961,
+ "BrowOuterUpRight": 0.0666777715086937,
+ "CheekSquintLeft": 0.011552243493497372,
+ "CheekSquintRight": 0.008976273238658905,
+ "NoseSneerLeft": 0.00235805194824934
+ }
+ },
+ {
+ "timeCode": 2.8666666666666667,
+ "blendShapes": {
+ "EyeWideLeft": 0.045992836356163025,
+ "EyeWideRight": 0.04596830531954765,
+ "JawLeft": 0.0025292320642620325,
+ "JawRight": 0.0072232927195727825,
+ "JawOpen": 0.19495806097984314,
+ "MouthClose": 0.03724006563425064,
+ "MouthFunnel": 0.11800089478492737,
+ "MouthLeft": 0.004127326421439648,
+ "MouthSmileLeft": 0.0942133292555809,
+ "MouthSmileRight": 0.09724395722150803,
+ "MouthFrownLeft": 0.009354956448078156,
+ "MouthFrownRight": 0.011960807256400585,
+ "MouthDimpleLeft": 0.08555253595113754,
+ "MouthDimpleRight": 0.0845642238855362,
+ "MouthStretchLeft": 0.006966890301555395,
+ "MouthStretchRight": 0.007073358632624149,
+ "MouthRollLower": 0.035561125725507736,
+ "MouthShrugUpper": 0.017657099291682243,
+ "MouthPressLeft": 0.0021019787527620792,
+ "MouthLowerDownLeft": 0.13193683326244354,
+ "MouthLowerDownRight": 0.13279448449611664,
+ "MouthUpperUpLeft": 0.07782076299190521,
+ "MouthUpperUpRight": 0.07469197362661362,
+ "BrowDownLeft": 0.003413757076486945,
+ "BrowDownRight": 0.003542692866176367,
+ "BrowOuterUpLeft": 0.06110439822077751,
+ "BrowOuterUpRight": 0.06087538227438927,
+ "CheekSquintLeft": 0.0023196712136268616,
+ "NoseSneerLeft": 0.002067849738523364
+ }
+ },
+ {
+ "timeCode": 2.9,
+ "blendShapes": {
+ "EyeWideLeft": 0.05300286412239075,
+ "EyeWideRight": 0.05299421027302742,
+ "JawLeft": 0.012712276540696621,
+ "JawRight": 0.007804024498909712,
+ "JawOpen": 0.2134903520345688,
+ "MouthClose": 0.06066585332155228,
+ "MouthFunnel": 0.22166894376277924,
+ "MouthPucker": 0.08412691950798035,
+ "MouthLeft": 0.004244968295097351,
+ "MouthSmileLeft": 0.11728725582361221,
+ "MouthSmileRight": 0.12014086544513702,
+ "MouthFrownLeft": 0.03837227076292038,
+ "MouthFrownRight": 0.04253630340099335,
+ "MouthDimpleLeft": 0.07742799818515778,
+ "MouthDimpleRight": 0.07446836680173874,
+ "MouthStretchLeft": 0.003494084579870105,
+ "MouthStretchRight": 0.003552198875695467,
+ "MouthShrugLower": 0.03849497437477112,
+ "MouthShrugUpper": 0.026015320792794228,
+ "MouthPressLeft": 0.004386216402053833,
+ "MouthLowerDownLeft": 0.055541373789310455,
+ "MouthLowerDownRight": 0.05499257519841194,
+ "MouthUpperUpLeft": 0.025570252910256386,
+ "MouthUpperUpRight": 0.022641155868768692,
+ "BrowDownRight": 0.000038974023482296616,
+ "BrowOuterUpLeft": 0.051561374217271805,
+ "BrowOuterUpRight": 0.0514543317258358,
+ "CheekSquintLeft": 0.002875878708437085,
+ "NoseSneerLeft": 0.0025636269710958004
+ }
+ },
+ {
+ "timeCode": 2.933333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000008463677659165114,
+ "EyeWideLeft": 0.0622217021882534,
+ "EyeWideRight": 0.06223457306623459,
+ "JawLeft": 0.02298218570649624,
+ "JawRight": 0.012399154715240002,
+ "JawOpen": 0.19057916104793549,
+ "MouthClose": 0.07050272822380066,
+ "MouthFunnel": 0.23488575220108032,
+ "MouthPucker": 0.1337573379278183,
+ "MouthLeft": 0.002169871935620904,
+ "MouthSmileLeft": 0.11161858588457108,
+ "MouthSmileRight": 0.11487600207328796,
+ "MouthFrownLeft": 0.06020244210958481,
+ "MouthFrownRight": 0.06371435523033142,
+ "MouthDimpleLeft": 0.061373304575681686,
+ "MouthDimpleRight": 0.059105344116687775,
+ "MouthStretchLeft": 0.0015714926412329078,
+ "MouthStretchRight": 0.001669506193138659,
+ "MouthShrugLower": 0.02570311911404133,
+ "MouthShrugUpper": 0.026247579604387283,
+ "MouthPressLeft": 0.004494871478527784,
+ "MouthLowerDownLeft": 0.006191661115735769,
+ "MouthLowerDownRight": 0.005777759477496147,
+ "MouthUpperUpLeft": 0.002059048507362604,
+ "MouthUpperUpRight": 0.00035664575989358127,
+ "BrowOuterUpLeft": 0.0484616719186306,
+ "BrowOuterUpRight": 0.048452068120241165,
+ "CheekSquintLeft": 0.002224930562078953,
+ "NoseSneerLeft": 0.00203761481679976
+ }
+ },
+ {
+ "timeCode": 2.966666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000028822470994782634,
+ "EyeWideLeft": 0.06760743260383606,
+ "EyeWideRight": 0.06764360517263412,
+ "JawLeft": 0.028992190957069397,
+ "JawRight": 0.01774703525006771,
+ "JawOpen": 0.15032373368740082,
+ "MouthClose": 0.07530537992715836,
+ "MouthFunnel": 0.22731256484985352,
+ "MouthPucker": 0.12023672461509705,
+ "MouthLeft": 0.002784484764561057,
+ "MouthSmileLeft": 0.09677277505397797,
+ "MouthSmileRight": 0.09956809878349304,
+ "MouthFrownLeft": 0.06541290879249573,
+ "MouthFrownRight": 0.06834936141967773,
+ "MouthDimpleLeft": 0.06692778319120407,
+ "MouthDimpleRight": 0.06490244716405869,
+ "MouthStretchRight": 0.00007861257472541183,
+ "MouthShrugLower": 0.039108846336603165,
+ "MouthShrugUpper": 0.023863492533564568,
+ "MouthPressLeft": 0.0037415679544210434,
+ "MouthLowerDownLeft": 0.0018908098572865129,
+ "MouthLowerDownRight": 0.0011147171026095748,
+ "MouthUpperUpLeft": 0.0012147395173087716,
+ "BrowDownRight": 0.000006366257821355248,
+ "BrowOuterUpLeft": 0.06448547542095184,
+ "BrowOuterUpRight": 0.06445720046758652,
+ "CheekSquintLeft": 0.00192916055675596,
+ "NoseSneerLeft": 0.0015724425902590156
+ }
+ },
+ {
+ "timeCode": 3,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000046688030124641955,
+ "EyeWideLeft": 0.06885954737663269,
+ "EyeWideRight": 0.06891082227230072,
+ "JawLeft": 0.02986968867480755,
+ "JawRight": 0.01549876481294632,
+ "JawOpen": 0.08224493265151978,
+ "MouthClose": 0.08246885240077972,
+ "MouthFunnel": 0.12384620308876038,
+ "MouthPucker": 0.21150518953800201,
+ "MouthLeft": 0.0014701097970828414,
+ "MouthSmileLeft": 0.06995559483766556,
+ "MouthSmileRight": 0.07294099777936935,
+ "MouthFrownLeft": 0.06442677974700928,
+ "MouthFrownRight": 0.06768204271793365,
+ "MouthDimpleLeft": 0.04968060553073883,
+ "MouthDimpleRight": 0.04750657454133034,
+ "MouthStretchRight": 0.00009393693471793085,
+ "MouthRollLower": 0.009860214777290821,
+ "MouthShrugLower": 0.10291750729084015,
+ "MouthShrugUpper": 0.01962348259985447,
+ "MouthPressLeft": 0.00547701446339488,
+ "MouthPressRight": 0.001435337238945067,
+ "MouthLowerDownLeft": 0.0012060124427080154,
+ "MouthUpperUpLeft": 0.0006083561456762254,
+ "BrowInnerUp": 0.0061752814799547195,
+ "BrowOuterUpLeft": 0.07767091691493988,
+ "BrowOuterUpRight": 0.07769805938005447,
+ "CheekPuff": 0.0033665266819298267,
+ "CheekSquintLeft": 0.0014653530670329928,
+ "NoseSneerLeft": 0.0013427574886009097
+ }
+ },
+ {
+ "timeCode": 3.033333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00011689025268424302,
+ "EyeWideLeft": 0.06829884648323059,
+ "EyeWideRight": 0.06838057935237885,
+ "JawLeft": 0.03350982815027237,
+ "JawRight": 0.015780918300151825,
+ "JawOpen": 0.0478818416595459,
+ "MouthClose": 0.0736946240067482,
+ "MouthFunnel": 0.09089000523090363,
+ "MouthPucker": 0.3072555959224701,
+ "MouthSmileLeft": 0.03828310966491699,
+ "MouthSmileRight": 0.040424056351184845,
+ "MouthFrownLeft": 0.07613340765237808,
+ "MouthFrownRight": 0.07870752364397049,
+ "MouthDimpleLeft": 0.04045407101511955,
+ "MouthDimpleRight": 0.03894037380814552,
+ "MouthStretchRight": 0.000059682737628463656,
+ "MouthRollLower": 0.03190528601408005,
+ "MouthShrugLower": 0.14674274623394012,
+ "MouthShrugUpper": 0.02368163876235485,
+ "MouthPressLeft": 0.002223848132416606,
+ "MouthLowerDownLeft": 0.0016377477440983057,
+ "BrowDownLeft": 0.000017084585124393925,
+ "BrowInnerUp": 0.009348949417471886,
+ "BrowOuterUpLeft": 0.08646433800458908,
+ "BrowOuterUpRight": 0.08660166710615158,
+ "CheekPuff": 0.008793367072939873,
+ "CheekSquintLeft": 0.0005197274731472135,
+ "NoseSneerLeft": 0.0008478433010168374
+ }
+ },
+ {
+ "timeCode": 3.066666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00011471077596070245,
+ "EyeWideLeft": 0.06815727800130844,
+ "EyeWideRight": 0.06823818385601044,
+ "JawLeft": 0.027178078889846802,
+ "JawRight": 0.010996728204190731,
+ "JawOpen": 0.03468644246459007,
+ "MouthClose": 0.0664905533194542,
+ "MouthFunnel": 0.0716717317700386,
+ "MouthPucker": 0.3434958755970001,
+ "MouthLeft": 0.0010063316440209746,
+ "MouthSmileLeft": 0.05158907547593117,
+ "MouthSmileRight": 0.05366084352135658,
+ "MouthFrownLeft": 0.06316576153039932,
+ "MouthFrownRight": 0.06490660458803177,
+ "MouthDimpleLeft": 0.035877250134944916,
+ "MouthDimpleRight": 0.03541575372219086,
+ "MouthStretchRight": 0.00008092468488030136,
+ "MouthRollLower": 0.03397517278790474,
+ "MouthShrugLower": 0.14566242694854736,
+ "MouthShrugUpper": 0.019027797505259514,
+ "MouthPressLeft": 0.0013552247546613216,
+ "MouthLowerDownLeft": 0.0010690949857234955,
+ "MouthUpperUpRight": 0.0003353588981553912,
+ "BrowDownLeft": 0.00012525178317446262,
+ "BrowInnerUp": 0.01293788943439722,
+ "BrowOuterUpLeft": 0.09486199170351028,
+ "BrowOuterUpRight": 0.095098577439785,
+ "CheekPuff": 0.009091375395655632,
+ "NoseSneerLeft": 0.0005369338323362172
+ }
+ },
+ {
+ "timeCode": 3.1,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001242483122041449,
+ "EyeWideLeft": 0.06958742439746857,
+ "EyeWideRight": 0.0696849524974823,
+ "JawLeft": 0.02401687577366829,
+ "JawRight": 0.009031224995851517,
+ "JawOpen": 0.02366131730377674,
+ "MouthClose": 0.0635875016450882,
+ "MouthFunnel": 0.03992331027984619,
+ "MouthPucker": 0.38105565309524536,
+ "MouthLeft": 0.0007932482403703034,
+ "MouthSmileLeft": 0.050465378910303116,
+ "MouthSmileRight": 0.05157924070954323,
+ "MouthFrownLeft": 0.054313722997903824,
+ "MouthFrownRight": 0.055135682225227356,
+ "MouthDimpleLeft": 0.023242514580488205,
+ "MouthDimpleRight": 0.022904997691512108,
+ "MouthStretchRight": 0.00004301202352507971,
+ "MouthRollLower": 0.033450059592723846,
+ "MouthShrugLower": 0.14968620240688324,
+ "MouthShrugUpper": 0.020525505766272545,
+ "MouthPressLeft": 0.0007241663988679647,
+ "MouthLowerDownLeft": 0.0013952971203252673,
+ "MouthUpperUpRight": 0.0010745328618213534,
+ "BrowDownLeft": 0.00021937528799753636,
+ "BrowInnerUp": 0.01841128058731556,
+ "BrowOuterUpLeft": 0.1043456569314003,
+ "BrowOuterUpRight": 0.10468413680791855,
+ "CheekPuff": 0.010790769010782242,
+ "CheekSquintRight": 0.0001319005386903882
+ }
+ },
+ {
+ "timeCode": 3.1333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001301179436268285,
+ "EyeWideLeft": 0.07077331095933914,
+ "EyeWideRight": 0.07089342921972275,
+ "JawLeft": 0.015835249796509743,
+ "JawRight": 0.003474024822935462,
+ "JawOpen": 0.01828928291797638,
+ "MouthClose": 0.05901612341403961,
+ "MouthFunnel": 0.05016914755105972,
+ "MouthPucker": 0.4238467514514923,
+ "MouthLeft": 0.0021028609480708838,
+ "MouthSmileLeft": 0.05167986825108528,
+ "MouthSmileRight": 0.051885608583688736,
+ "MouthFrownLeft": 0.04195375367999077,
+ "MouthFrownRight": 0.04251564294099808,
+ "MouthDimpleLeft": 0.0006302680121734738,
+ "MouthStretchLeft": 0.0000012465651479942608,
+ "MouthRollLower": 0.011546293273568153,
+ "MouthShrugLower": 0.08751124888658524,
+ "MouthShrugUpper": 0.01644567959010601,
+ "MouthPressLeft": 0.0070234062150120735,
+ "MouthPressRight": 0.006575831677764654,
+ "MouthLowerDownLeft": 0.0016665917355567217,
+ "MouthUpperUpRight": 0.001036476343870163,
+ "BrowDownLeft": 0.00034040206810459495,
+ "BrowInnerUp": 0.027140196412801743,
+ "BrowOuterUpLeft": 0.11321880668401718,
+ "BrowOuterUpRight": 0.11365826427936554,
+ "CheekPuff": 0.011334962211549282,
+ "CheekSquintRight": 0.00048561269068159163,
+ "NoseSneerRight": 0.000050451992137823254
+ }
+ },
+ {
+ "timeCode": 3.1666666666666665,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00010470947745488957,
+ "EyeWideLeft": 0.07265515625476837,
+ "EyeWideRight": 0.07278323918581009,
+ "JawLeft": 0.02112068608403206,
+ "JawRight": 0.01028832420706749,
+ "JawOpen": 0.039661258459091187,
+ "MouthClose": 0.07551233470439911,
+ "MouthFunnel": 0.08199795335531235,
+ "MouthPucker": 0.3254091441631317,
+ "MouthSmileLeft": 0.02068290486931801,
+ "MouthSmileRight": 0.020961441099643707,
+ "MouthFrownLeft": 0.041886456310749054,
+ "MouthFrownRight": 0.040569037199020386,
+ "MouthDimpleRight": 0.0010981472441926599,
+ "MouthStretchRight": 0.000019261182387708686,
+ "MouthRollUpper": 0.010209541767835617,
+ "MouthShrugUpper": 0.008220382034778595,
+ "MouthPressLeft": 0.03398981690406799,
+ "MouthPressRight": 0.034542955458164215,
+ "MouthLowerDownLeft": 0.0005011064349673688,
+ "MouthUpperUpRight": 0.0013442764757201076,
+ "BrowDownLeft": 0.00034226267598569393,
+ "BrowInnerUp": 0.021852944046258926,
+ "BrowOuterUpLeft": 0.12080570310354233,
+ "BrowOuterUpRight": 0.12125017493963242,
+ "CheekPuff": 0.012690432369709015,
+ "CheekSquintRight": 0.001224645646288991,
+ "NoseSneerRight": 0.0007978952489793301
+ }
+ },
+ {
+ "timeCode": 3.2,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001232232607435435,
+ "EyeWideLeft": 0.07479704916477203,
+ "EyeWideRight": 0.07493692636489868,
+ "JawForward": 0.019084244966506958,
+ "JawLeft": 0.028759974986314774,
+ "JawRight": 0.01577303744852543,
+ "JawOpen": 0.05766819790005684,
+ "MouthClose": 0.07756181061267853,
+ "MouthFunnel": 0.10530637949705124,
+ "MouthPucker": 0.3154832124710083,
+ "MouthSmileRight": 0.0012739624362438917,
+ "MouthFrownLeft": 0.0499720424413681,
+ "MouthFrownRight": 0.04838216304779053,
+ "MouthDimpleRight": 0.0018575901631265879,
+ "MouthStretchRight": 0.0000762834315537475,
+ "MouthRollUpper": 0.00994699914008379,
+ "MouthShrugUpper": 0.01713709346950054,
+ "MouthPressLeft": 0.057320237159729004,
+ "MouthPressRight": 0.05787600204348564,
+ "MouthLowerDownLeft": 0.0003065642376895994,
+ "MouthUpperUpRight": 0.0019833820406347513,
+ "BrowDownLeft": 0.0003592647553887218,
+ "BrowInnerUp": 0.030740009620785713,
+ "BrowOuterUpLeft": 0.12823455035686493,
+ "BrowOuterUpRight": 0.12871210277080536,
+ "CheekPuff": 0.01957005076110363,
+ "CheekSquintRight": 0.00142945209518075,
+ "NoseSneerRight": 0.0008288733079098165
+ }
+ },
+ {
+ "timeCode": 3.2333333333333334,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001280117576243356,
+ "EyeWideLeft": 0.07853830605745316,
+ "EyeWideRight": 0.07868648320436478,
+ "JawForward": 0.01923968270421028,
+ "JawLeft": 0.0334005169570446,
+ "JawRight": 0.02204064466059208,
+ "JawOpen": 0.04372958466410637,
+ "MouthClose": 0.08350733667612076,
+ "MouthFunnel": 0.019170934334397316,
+ "MouthPucker": 0.34071698784828186,
+ "MouthRight": 0.0005266225780360401,
+ "MouthSmileRight": 0.001839691074565053,
+ "MouthFrownLeft": 0.06333591789007187,
+ "MouthFrownRight": 0.06164238974452019,
+ "MouthDimpleRight": 0.002397254342213273,
+ "MouthStretchRight": 0.00010933709563687444,
+ "MouthRollUpper": 0.0027346054557710886,
+ "MouthShrugUpper": 0.021415356546640396,
+ "MouthPressLeft": 0.09811031818389893,
+ "MouthPressRight": 0.09890168905258179,
+ "MouthUpperUpRight": 0.0019112771842628717,
+ "BrowDownLeft": 0.000409425440011546,
+ "BrowInnerUp": 0.04838695004582405,
+ "BrowOuterUpLeft": 0.13712534308433533,
+ "BrowOuterUpRight": 0.13769669830799103,
+ "CheekPuff": 0.02029632218182087,
+ "CheekSquintRight": 0.0014776671305298805,
+ "NoseSneerRight": 0.0005139996646903455
+ }
+ },
+ {
+ "timeCode": 3.2666666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001684441085672006,
+ "EyeWideLeft": 0.08309615403413773,
+ "EyeWideRight": 0.08326639235019684,
+ "JawForward": 0.009197195060551167,
+ "JawLeft": 0.025915473699569702,
+ "JawRight": 0.019275162369012833,
+ "MouthClose": 0.06583478301763535,
+ "MouthPucker": 0.32698023319244385,
+ "MouthSmileRight": 0.0005614601541310549,
+ "MouthFrownLeft": 0.05364174395799637,
+ "MouthFrownRight": 0.050261564552783966,
+ "MouthDimpleRight": 0.003645794466137886,
+ "MouthStretchRight": 0.00006169829430291429,
+ "MouthRollUpper": 0.021499814465641975,
+ "MouthShrugLower": 0.035311274230480194,
+ "MouthShrugUpper": 0.01942368783056736,
+ "MouthPressLeft": 0.16732777655124664,
+ "MouthPressRight": 0.17039982974529266,
+ "MouthLowerDownRight": 0.00010879454202950001,
+ "MouthUpperUpRight": 0.002423983532935381,
+ "BrowDownLeft": 0.0005182040622457862,
+ "BrowInnerUp": 0.0677485466003418,
+ "BrowOuterUpLeft": 0.1461450159549713,
+ "BrowOuterUpRight": 0.1468563824892044,
+ "CheekPuff": 0.015017722733318806,
+ "CheekSquintRight": 0.0024154859129339457,
+ "NoseSneerRight": 0.0012588583631440997
+ }
+ },
+ {
+ "timeCode": 3.3,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00024084387405309826,
+ "EyeWideLeft": 0.0839238315820694,
+ "EyeWideRight": 0.08413627743721008,
+ "JawForward": 0.0011912998743355274,
+ "JawLeft": 0.020981770008802414,
+ "JawRight": 0.009571069851517677,
+ "JawOpen": 0.004363833926618099,
+ "MouthClose": 0.05650530010461807,
+ "MouthPucker": 0.4226226806640625,
+ "MouthSmileLeft": 0.00006222465162863955,
+ "MouthFrownLeft": 0.059281330555677414,
+ "MouthFrownRight": 0.055642444640398026,
+ "MouthDimpleRight": 0.0035805252846330404,
+ "MouthStretchRight": 0.000030303775929496624,
+ "MouthRollUpper": 0.010256517678499222,
+ "MouthShrugUpper": 0.027933109551668167,
+ "MouthPressLeft": 0.11962814629077911,
+ "MouthPressRight": 0.12341082096099854,
+ "MouthUpperUpLeft": 0.013566592708230019,
+ "MouthUpperUpRight": 0.01689169742166996,
+ "BrowDownLeft": 0.0006588312098756433,
+ "BrowInnerUp": 0.06996633857488632,
+ "BrowOuterUpLeft": 0.1497681587934494,
+ "BrowOuterUpRight": 0.15068252384662628,
+ "CheekPuff": 0.010111424140632153,
+ "CheekSquintRight": 0.0030564710032194853,
+ "NoseSneerRight": 0.0019866160582751036
+ }
+ },
+ {
+ "timeCode": 3.3333333333333335,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00028673032647930086,
+ "EyeWideLeft": 0.0779079794883728,
+ "EyeWideRight": 0.07814069092273712,
+ "JawLeft": 0.020722413435578346,
+ "JawRight": 0.0013039952609688044,
+ "MouthClose": 0.038721270859241486,
+ "MouthFunnel": 0.17430491745471954,
+ "MouthPucker": 0.23032711446285248,
+ "MouthSmileLeft": 0.01789882779121399,
+ "MouthSmileRight": 0.017380734905600548,
+ "MouthFrownLeft": 0.04299815371632576,
+ "MouthFrownRight": 0.03969230875372887,
+ "MouthDimpleRight": 0.003070392645895481,
+ "MouthStretchRight": 0.000015491103113163263,
+ "MouthRollLower": 0.004210206679999828,
+ "MouthRollUpper": 0.02492566592991352,
+ "MouthShrugUpper": 0.02894987165927887,
+ "MouthPressLeft": 0.08305960148572922,
+ "MouthPressRight": 0.08634510636329651,
+ "MouthLowerDownLeft": 0.0004499706847127527,
+ "MouthUpperUpLeft": 0.01215430349111557,
+ "MouthUpperUpRight": 0.015679296106100082,
+ "BrowDownLeft": 0.0006859414279460907,
+ "BrowInnerUp": 0.06497792154550552,
+ "BrowOuterUpLeft": 0.15106791257858276,
+ "BrowOuterUpRight": 0.15193939208984375,
+ "CheekPuff": 0.0040335096418857574,
+ "CheekSquintLeft": 0.006008933763951063,
+ "CheekSquintRight": 0.00875293742865324,
+ "NoseSneerRight": 0.002275402657687664
+ }
+ },
+ {
+ "timeCode": 3.3666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0003448569623287767,
+ "EyeWideLeft": 0.07198277115821838,
+ "EyeWideRight": 0.07223676890134811,
+ "JawForward": 0.008840172551572323,
+ "JawLeft": 0.01921514794230461,
+ "MouthClose": 0.016282565891742706,
+ "MouthFunnel": 0.33530956506729126,
+ "MouthPucker": 0.07789900153875351,
+ "MouthLeft": 0.0009873000672087073,
+ "MouthSmileLeft": 0.03850732743740082,
+ "MouthSmileRight": 0.03939942643046379,
+ "MouthFrownLeft": 0.016613272950053215,
+ "MouthFrownRight": 0.01411343365907669,
+ "MouthDimpleRight": 0.0028694854117929935,
+ "MouthStretchRight": 0.00009821380081120878,
+ "MouthRollUpper": 0.05000055208802223,
+ "MouthShrugUpper": 0.02236274816095829,
+ "MouthPressLeft": 0.035104285925626755,
+ "MouthPressRight": 0.03711388632655144,
+ "MouthLowerDownLeft": 0.02652103081345558,
+ "MouthLowerDownRight": 0.02654176391661167,
+ "MouthUpperUpLeft": 0.02141372673213482,
+ "MouthUpperUpRight": 0.02460191585123539,
+ "BrowDownLeft": 0.0007671689381822944,
+ "BrowInnerUp": 0.05714308097958565,
+ "BrowOuterUpLeft": 0.1538391262292862,
+ "BrowOuterUpRight": 0.15476073324680328,
+ "CheekPuff": 0.00494731729850173,
+ "CheekSquintLeft": 0.02435329370200634,
+ "CheekSquintRight": 0.026274695992469788,
+ "NoseSneerRight": 0.0018026933539658785
+ }
+ },
+ {
+ "timeCode": 3.4,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00045908233732916415,
+ "EyeWideLeft": 0.06932644546031952,
+ "EyeWideRight": 0.06961596012115479,
+ "JawForward": 0.04709171503782272,
+ "JawLeft": 0.019557839259505272,
+ "JawRight": 0.005087417550384998,
+ "MouthFunnel": 0.3541470468044281,
+ "MouthLeft": 0.000578438863158226,
+ "MouthSmileLeft": 0.011698415502905846,
+ "MouthSmileRight": 0.016117669641971588,
+ "MouthFrownLeft": 0.0015084623591974378,
+ "MouthDimpleLeft": 0.03647271916270256,
+ "MouthDimpleRight": 0.040092114359140396,
+ "MouthStretchLeft": 0.005269171670079231,
+ "MouthStretchRight": 0.005582190118730068,
+ "MouthRollUpper": 0.04421031102538109,
+ "MouthShrugLower": 0.04628956690430641,
+ "MouthShrugUpper": 0.0232364684343338,
+ "MouthPressRight": 0.00016970971773844212,
+ "MouthLowerDownLeft": 0.11616841703653336,
+ "MouthLowerDownRight": 0.11811983585357666,
+ "MouthUpperUpLeft": 0.09376952052116394,
+ "MouthUpperUpRight": 0.09669742733240128,
+ "BrowDownLeft": 0.0008425982086919248,
+ "BrowInnerUp": 0.047566160559654236,
+ "BrowOuterUpLeft": 0.1579248607158661,
+ "BrowOuterUpRight": 0.15890514850616455,
+ "CheekPuff": 0.004626130219548941,
+ "CheekSquintLeft": 0.04078478738665581,
+ "CheekSquintRight": 0.042044952511787415,
+ "NoseSneerRight": 0.0009515712154097855
+ }
+ },
+ {
+ "timeCode": 3.433333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0004992930334992707,
+ "EyeWideLeft": 0.06961283087730408,
+ "EyeWideRight": 0.06991638243198395,
+ "JawForward": 0.07837098091840744,
+ "JawLeft": 0.0204851683229208,
+ "JawRight": 0.012413585558533669,
+ "MouthFunnel": 0.3811091184616089,
+ "MouthLeft": 0.0016082763904705644,
+ "MouthRight": 0.0018066419288516045,
+ "MouthSmileRight": 0.005005338229238987,
+ "MouthFrownLeft": 0.00008804314711596817,
+ "MouthDimpleLeft": 0.08681938797235489,
+ "MouthDimpleRight": 0.08935246616601944,
+ "MouthStretchLeft": 0.008133108727633953,
+ "MouthStretchRight": 0.008486623875796795,
+ "MouthShrugLower": 0.09361192584037781,
+ "MouthShrugUpper": 0.03918346017599106,
+ "MouthPressLeft": 0.0007300348370335996,
+ "MouthLowerDownLeft": 0.13637910783290863,
+ "MouthLowerDownRight": 0.13803993165493011,
+ "MouthUpperUpLeft": 0.15673236548900604,
+ "MouthUpperUpRight": 0.1594606339931488,
+ "BrowDownLeft": 0.0008767682011239231,
+ "BrowInnerUp": 0.0505918487906456,
+ "BrowOuterUpLeft": 0.16250170767307281,
+ "BrowOuterUpRight": 0.16351069509983063,
+ "CheekPuff": 0.006231825333088636,
+ "CheekSquintLeft": 0.05950923264026642,
+ "CheekSquintRight": 0.060455817729234695,
+ "NoseSneerLeft": 0.006750431843101978,
+ "NoseSneerRight": 0.007386631797999144
+ }
+ },
+ {
+ "timeCode": 3.466666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00044518118374980986,
+ "EyeWideLeft": 0.06879782676696777,
+ "EyeWideRight": 0.06909409910440445,
+ "JawForward": 0.09681983292102814,
+ "JawLeft": 0.012527020648121834,
+ "JawRight": 0.010958277620375156,
+ "MouthFunnel": 0.2541828751564026,
+ "MouthLeft": 0.00124061806127429,
+ "MouthRight": 0.0031575628090649843,
+ "MouthSmileRight": 0.005231192801147699,
+ "MouthFrownLeft": 0.00018256512703374028,
+ "MouthDimpleLeft": 0.08987829834222794,
+ "MouthDimpleRight": 0.09327369183301926,
+ "MouthStretchLeft": 0.01091603934764862,
+ "MouthStretchRight": 0.011300397105515003,
+ "MouthShrugLower": 0.06404739618301392,
+ "MouthShrugUpper": 0.06780564785003662,
+ "MouthPressLeft": 0.000010359263796999585,
+ "MouthLowerDownLeft": 0.19062218070030212,
+ "MouthLowerDownRight": 0.19339774549007416,
+ "MouthUpperUpLeft": 0.21005521714687347,
+ "MouthUpperUpRight": 0.2118716537952423,
+ "BrowDownLeft": 0.000929374189581722,
+ "BrowInnerUp": 0.07358280569314957,
+ "BrowOuterUpLeft": 0.1723792999982834,
+ "BrowOuterUpRight": 0.1734539121389389,
+ "CheekPuff": 0.0017365970415994525,
+ "CheekSquintLeft": 0.0382380448281765,
+ "CheekSquintRight": 0.03933626785874367,
+ "NoseSneerLeft": 0.03642938286066055,
+ "NoseSneerRight": 0.036936115473508835
+ }
+ },
+ {
+ "timeCode": 3.5,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0003975742438342422,
+ "EyeWideLeft": 0.06978198885917664,
+ "EyeWideRight": 0.07006807625293732,
+ "JawForward": 0.09770844876766205,
+ "JawLeft": 0.000951120164245367,
+ "JawRight": 0.0029616670217365026,
+ "MouthFunnel": 0.14149437844753265,
+ "MouthLeft": 0.00019203264673706144,
+ "MouthRight": 0.0020448111463338137,
+ "MouthSmileRight": 0.005371700506657362,
+ "MouthFrownLeft": 0.0009054711554199457,
+ "MouthDimpleLeft": 0.06347718089818954,
+ "MouthDimpleRight": 0.06805247068405151,
+ "MouthStretchLeft": 0.011994944885373116,
+ "MouthStretchRight": 0.012397549115121365,
+ "MouthShrugLower": 0.025056393817067146,
+ "MouthShrugUpper": 0.07371903210878372,
+ "MouthPressRight": 0.000520690344274044,
+ "MouthLowerDownLeft": 0.22818267345428467,
+ "MouthLowerDownRight": 0.2321876585483551,
+ "MouthUpperUpLeft": 0.23573605716228485,
+ "MouthUpperUpRight": 0.23721161484718323,
+ "BrowDownLeft": 0.0010121954837813973,
+ "BrowInnerUp": 0.09022761881351471,
+ "BrowOuterUpLeft": 0.17799805104732513,
+ "BrowOuterUpRight": 0.1791609674692154,
+ "CheekSquintLeft": 0.021328065544366837,
+ "CheekSquintRight": 0.02286098338663578,
+ "NoseSneerLeft": 0.04668460786342621,
+ "NoseSneerRight": 0.04722944647073746
+ }
+ },
+ {
+ "timeCode": 3.533333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0003616076137404889,
+ "EyeWideLeft": 0.07138112187385559,
+ "EyeWideRight": 0.07165076583623886,
+ "JawForward": 0.08892777562141418,
+ "JawRight": 0.004186882637441158,
+ "MouthFunnel": 0.06347397714853287,
+ "MouthLeft": 0.00029704233747906983,
+ "MouthRight": 0.0010500065982341766,
+ "MouthSmileRight": 0.0042908345349133015,
+ "MouthFrownLeft": 0.0009536361321806908,
+ "MouthDimpleLeft": 0.05170602723956108,
+ "MouthDimpleRight": 0.055893030017614365,
+ "MouthStretchLeft": 0.012484822422266006,
+ "MouthStretchRight": 0.012814970687031746,
+ "MouthRollLower": 0.0015046328771859407,
+ "MouthShrugUpper": 0.07471820712089539,
+ "MouthPressRight": 0.0011168746277689934,
+ "MouthLowerDownLeft": 0.2533680498600006,
+ "MouthLowerDownRight": 0.25713273882865906,
+ "MouthUpperUpLeft": 0.2506316304206848,
+ "MouthUpperUpRight": 0.25133612751960754,
+ "BrowDownLeft": 0.001087570795789361,
+ "BrowInnerUp": 0.09976869821548462,
+ "BrowOuterUpLeft": 0.18188154697418213,
+ "BrowOuterUpRight": 0.1831456869840622,
+ "CheekSquintLeft": 0.017799343913793564,
+ "CheekSquintRight": 0.01916784793138504,
+ "NoseSneerLeft": 0.048830337822437286,
+ "NoseSneerRight": 0.049178123474121094
+ }
+ },
+ {
+ "timeCode": 3.566666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0003162847424391657,
+ "EyeWideLeft": 0.07213951647281647,
+ "EyeWideRight": 0.07239200919866562,
+ "JawForward": 0.06937839090824127,
+ "JawRight": 0.0058027408085763454,
+ "JawOpen": 0.008226998150348663,
+ "MouthLeft": 0.0003906360943801701,
+ "MouthRight": 0.0005762669024989009,
+ "MouthSmileLeft": 0.01397060789167881,
+ "MouthSmileRight": 0.016607828438282013,
+ "MouthFrownLeft": 0.0008971556671895087,
+ "MouthDimpleLeft": 0.04217149317264557,
+ "MouthDimpleRight": 0.045215632766485214,
+ "MouthStretchLeft": 0.01653345860540867,
+ "MouthStretchRight": 0.01674753613770008,
+ "MouthShrugUpper": 0.07393813878297806,
+ "MouthPressRight": 0.0018131248652935028,
+ "MouthLowerDownLeft": 0.2618705630302429,
+ "MouthLowerDownRight": 0.26477137207984924,
+ "MouthUpperUpLeft": 0.25437644124031067,
+ "MouthUpperUpRight": 0.25487464666366577,
+ "BrowDownLeft": 0.0011272411793470383,
+ "BrowInnerUp": 0.11277452111244202,
+ "BrowOuterUpLeft": 0.18621410429477692,
+ "BrowOuterUpRight": 0.18753767013549805,
+ "CheekSquintLeft": 0.006646811496466398,
+ "CheekSquintRight": 0.008022918365895748,
+ "NoseSneerLeft": 0.057337190955877304,
+ "NoseSneerRight": 0.05783150717616081
+ }
+ },
+ {
+ "timeCode": 3.6,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000276808044873178,
+ "EyeWideLeft": 0.07083791494369507,
+ "EyeWideRight": 0.07108083367347717,
+ "JawForward": 0.04177310690283775,
+ "JawRight": 0.00677972286939621,
+ "JawOpen": 0.01865028403699398,
+ "MouthLeft": 0.0009153050486929715,
+ "MouthRight": 0.0006207634578458965,
+ "MouthSmileLeft": 0.01126409787684679,
+ "MouthSmileRight": 0.012194717302918434,
+ "MouthFrownLeft": 0.0012014592066407204,
+ "MouthDimpleLeft": 0.05303431302309036,
+ "MouthDimpleRight": 0.05518723279237747,
+ "MouthStretchLeft": 0.018495816737413406,
+ "MouthStretchRight": 0.01860327459871769,
+ "MouthShrugUpper": 0.07165732979774475,
+ "MouthPressRight": 0.002740617608651519,
+ "MouthLowerDownLeft": 0.25761929154396057,
+ "MouthLowerDownRight": 0.25953158736228943,
+ "MouthUpperUpLeft": 0.24822750687599182,
+ "MouthUpperUpRight": 0.2487396001815796,
+ "BrowDownLeft": 0.0011318214237689972,
+ "BrowInnerUp": 0.11551569402217865,
+ "BrowOuterUpLeft": 0.1904895007610321,
+ "BrowOuterUpRight": 0.19182729721069336,
+ "CheekSquintLeft": 0.007331627421081066,
+ "CheekSquintRight": 0.008786781691014767,
+ "NoseSneerLeft": 0.056185033172369,
+ "NoseSneerRight": 0.0569838285446167
+ }
+ },
+ {
+ "timeCode": 3.6333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00017491051403339952,
+ "EyeWideLeft": 0.07362660765647888,
+ "EyeWideRight": 0.07383881509304047,
+ "JawForward": 0.03654962033033371,
+ "JawRight": 0.008885460905730724,
+ "JawOpen": 0.08115606009960175,
+ "MouthLeft": 0.0021550708916038275,
+ "MouthRight": 0.0008747906540520489,
+ "MouthSmileLeft": 0.05034726485610008,
+ "MouthSmileRight": 0.04972586780786514,
+ "MouthFrownLeft": 0.001672182697802782,
+ "MouthDimpleLeft": 0.06464654952287674,
+ "MouthDimpleRight": 0.06601367145776749,
+ "MouthStretchLeft": 0.022532373666763306,
+ "MouthStretchRight": 0.0225436519831419,
+ "MouthShrugUpper": 0.05117812380194664,
+ "MouthPressRight": 0.0032616425305604935,
+ "MouthLowerDownLeft": 0.2352282851934433,
+ "MouthLowerDownRight": 0.23666350543498993,
+ "MouthUpperUpLeft": 0.20872004330158234,
+ "MouthUpperUpRight": 0.20895767211914062,
+ "BrowDownLeft": 0.0010764278704300523,
+ "BrowInnerUp": 0.1179339811205864,
+ "BrowOuterUpLeft": 0.1965150237083435,
+ "BrowOuterUpRight": 0.19782118499279022,
+ "CheekSquintLeft": 0.013117905706167221,
+ "CheekSquintRight": 0.014397832565009594,
+ "NoseSneerLeft": 0.05823618173599243,
+ "NoseSneerRight": 0.059305835515260696
+ }
+ },
+ {
+ "timeCode": 3.6666666666666665,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00008755809540161863,
+ "EyeWideLeft": 0.07552442699670792,
+ "EyeWideRight": 0.07571609318256378,
+ "JawForward": 0.05753672122955322,
+ "JawRight": 0.009699544869363308,
+ "JawOpen": 0.1852409690618515,
+ "MouthLeft": 0.0031872575636953115,
+ "MouthSmileLeft": 0.09142161160707474,
+ "MouthSmileRight": 0.09039735049009323,
+ "MouthFrownLeft": 0.0005885321879759431,
+ "MouthDimpleLeft": 0.06005480885505676,
+ "MouthDimpleRight": 0.06029115989804268,
+ "MouthStretchLeft": 0.022580623626708984,
+ "MouthStretchRight": 0.022532155737280846,
+ "MouthShrugUpper": 0.03810563310980797,
+ "MouthPressRight": 0.0025740840937942266,
+ "MouthLowerDownLeft": 0.2513366639614105,
+ "MouthLowerDownRight": 0.2524360418319702,
+ "MouthUpperUpLeft": 0.16990001499652863,
+ "MouthUpperUpRight": 0.1681140810251236,
+ "BrowDownLeft": 0.000875513011123985,
+ "BrowInnerUp": 0.09231212735176086,
+ "BrowOuterUpLeft": 0.19414818286895752,
+ "BrowOuterUpRight": 0.19518597424030304,
+ "CheekSquintLeft": 0.006656096316874027,
+ "CheekSquintRight": 0.006309794262051582,
+ "NoseSneerLeft": 0.03941155970096588,
+ "NoseSneerRight": 0.039251234382390976
+ }
+ },
+ {
+ "timeCode": 3.7,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.000012332242476986721,
+ "EyeWideLeft": 0.07797106355428696,
+ "EyeWideRight": 0.07815569639205933,
+ "JawForward": 0.07773293554782867,
+ "JawLeft": 0.00951963197439909,
+ "JawRight": 0.017316510900855064,
+ "JawOpen": 0.35477760434150696,
+ "MouthLeft": 0.004420911893248558,
+ "MouthSmileLeft": 0.10328467935323715,
+ "MouthSmileRight": 0.10227829962968826,
+ "MouthFrownLeft": 0.03446010872721672,
+ "MouthFrownRight": 0.03505373001098633,
+ "MouthDimpleLeft": 0.04368477687239647,
+ "MouthDimpleRight": 0.0439256988465786,
+ "MouthStretchLeft": 0.02104097791016102,
+ "MouthStretchRight": 0.020970342680811882,
+ "MouthShrugUpper": 0.042623620480298996,
+ "MouthPressRight": 0.0030028943438082933,
+ "MouthLowerDownLeft": 0.2962783873081207,
+ "MouthLowerDownRight": 0.29769742488861084,
+ "MouthUpperUpLeft": 0.13909965753555298,
+ "MouthUpperUpRight": 0.13489922881126404,
+ "BrowDownLeft": 0.0007303401944227517,
+ "BrowInnerUp": 0.06467363238334656,
+ "BrowOuterUpLeft": 0.19012027978897095,
+ "BrowOuterUpRight": 0.19093753397464752,
+ "CheekPuff": 0.002013936871662736,
+ "CheekSquintLeft": 0.0020149066112935543,
+ "NoseSneerLeft": 0.020864760503172874,
+ "NoseSneerRight": 0.01883893832564354
+ }
+ },
+ {
+ "timeCode": 3.7333333333333334,
+ "blendShapes": {
+ "EyeWideLeft": 0.07938330620527267,
+ "EyeWideRight": 0.07956370711326599,
+ "JawForward": 0.08896894007921219,
+ "JawLeft": 0.014764577150344849,
+ "JawRight": 0.022324712947010994,
+ "JawOpen": 0.41022273898124695,
+ "MouthLeft": 0.004391483962535858,
+ "MouthSmileLeft": 0.12337995320558548,
+ "MouthSmileRight": 0.12232888489961624,
+ "MouthFrownLeft": 0.05123354494571686,
+ "MouthFrownRight": 0.052441779524087906,
+ "MouthDimpleLeft": 0.043180882930755615,
+ "MouthDimpleRight": 0.04362501576542854,
+ "MouthStretchLeft": 0.0213277917355299,
+ "MouthStretchRight": 0.021240560337901115,
+ "MouthShrugUpper": 0.038192689418792725,
+ "MouthPressRight": 0.003597623435780406,
+ "MouthLowerDownLeft": 0.31309396028518677,
+ "MouthLowerDownRight": 0.31456026434898376,
+ "MouthUpperUpLeft": 0.12588419020175934,
+ "MouthUpperUpRight": 0.1203632727265358,
+ "BrowDownLeft": 0.0006484437035396695,
+ "BrowInnerUp": 0.054058194160461426,
+ "BrowOuterUpLeft": 0.18786336481571198,
+ "BrowOuterUpRight": 0.188551127910614,
+ "CheekPuff": 0.005120466463267803,
+ "CheekSquintLeft": 0.0028871092945337296,
+ "NoseSneerLeft": 0.012427332811057568,
+ "NoseSneerRight": 0.009261712431907654
+ }
+ },
+ {
+ "timeCode": 3.7666666666666666,
+ "blendShapes": {
+ "EyeWideLeft": 0.0755770206451416,
+ "EyeWideRight": 0.0757545530796051,
+ "JawForward": 0.08834269642829895,
+ "JawLeft": 0.014607617631554604,
+ "JawRight": 0.020769093185663223,
+ "JawOpen": 0.3809684216976166,
+ "MouthClose": 0.0014999423874542117,
+ "MouthLeft": 0.003752803197130561,
+ "MouthSmileLeft": 0.12918362021446228,
+ "MouthSmileRight": 0.12851080298423767,
+ "MouthFrownLeft": 0.05070830509066582,
+ "MouthFrownRight": 0.052126605063676834,
+ "MouthDimpleLeft": 0.05854232981801033,
+ "MouthDimpleRight": 0.05869917944073677,
+ "MouthStretchLeft": 0.020333847030997276,
+ "MouthStretchRight": 0.02025693655014038,
+ "MouthShrugUpper": 0.021110381931066513,
+ "MouthPressRight": 0.0033594612032175064,
+ "MouthLowerDownLeft": 0.29262393712997437,
+ "MouthLowerDownRight": 0.29349619150161743,
+ "MouthUpperUpLeft": 0.10112453997135162,
+ "MouthUpperUpRight": 0.09591716527938843,
+ "BrowDownLeft": 0.0005410452140495181,
+ "BrowInnerUp": 0.048704780638217926,
+ "BrowOuterUpLeft": 0.18491898477077484,
+ "BrowOuterUpRight": 0.18545940518379211,
+ "CheekPuff": 0.003377426415681839,
+ "CheekSquintLeft": 0.0030779715161770582,
+ "NoseSneerLeft": 0.003340608673170209
+ }
+ },
+ {
+ "timeCode": 3.8,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0000449971848865971,
+ "EyeWideLeft": 0.06737353652715683,
+ "EyeWideRight": 0.06756261736154556,
+ "JawForward": 0.049265921115875244,
+ "JawLeft": 0.010630677454173565,
+ "JawRight": 0.01399746723473072,
+ "JawOpen": 0.2396252155303955,
+ "MouthClose": 0.009886344894766808,
+ "MouthLeft": 0.0031491064000874758,
+ "MouthSmileLeft": 0.11754156649112701,
+ "MouthSmileRight": 0.11666879802942276,
+ "MouthFrownLeft": 0.03294886276125908,
+ "MouthFrownRight": 0.034381575882434845,
+ "MouthDimpleLeft": 0.0803949385881424,
+ "MouthDimpleRight": 0.0795263722538948,
+ "MouthStretchLeft": 0.0187064316123724,
+ "MouthStretchRight": 0.018611228093504906,
+ "MouthShrugUpper": 0.016009662300348282,
+ "MouthPressRight": 0.0026444701943546534,
+ "MouthLowerDownLeft": 0.2531546950340271,
+ "MouthLowerDownRight": 0.25289639830589294,
+ "MouthUpperUpLeft": 0.09468083083629608,
+ "MouthUpperUpRight": 0.09064026921987534,
+ "BrowDownLeft": 0.0005351350409910083,
+ "BrowInnerUp": 0.05824011564254761,
+ "BrowOuterUpLeft": 0.18280982971191406,
+ "BrowOuterUpRight": 0.18334577977657318,
+ "CheekSquintLeft": 0.00266803870908916,
+ "NoseSneerLeft": 0.0026552423369139433
+ }
+ },
+ {
+ "timeCode": 3.8333333333333335,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001059719652403146,
+ "EyeWideLeft": 0.06264190375804901,
+ "EyeWideRight": 0.06285347044467926,
+ "JawForward": 0.01525725144892931,
+ "JawLeft": 0.01055226381868124,
+ "JawRight": 0.011318579316139221,
+ "JawOpen": 0.11255420744419098,
+ "MouthClose": 0.01573437638580799,
+ "MouthLeft": 0.0024974949192255735,
+ "MouthSmileLeft": 0.134091317653656,
+ "MouthSmileRight": 0.1340509057044983,
+ "MouthFrownLeft": 0.027029410004615784,
+ "MouthFrownRight": 0.02805248089134693,
+ "MouthDimpleLeft": 0.08515208214521408,
+ "MouthDimpleRight": 0.0844331830739975,
+ "MouthStretchLeft": 0.017990555614233017,
+ "MouthStretchRight": 0.017950577661395073,
+ "MouthRollLower": 0.0214915182441473,
+ "MouthShrugUpper": 0.011338867247104645,
+ "MouthPressRight": 0.0017788643017411232,
+ "MouthLowerDownLeft": 0.19380390644073486,
+ "MouthLowerDownRight": 0.19363589584827423,
+ "MouthUpperUpLeft": 0.07333109527826309,
+ "MouthUpperUpRight": 0.0706707015633583,
+ "BrowDownLeft": 0.0005911242915317416,
+ "BrowInnerUp": 0.06880756467580795,
+ "BrowOuterUpLeft": 0.18259035050868988,
+ "BrowOuterUpRight": 0.1832052767276764,
+ "CheekSquintLeft": 0.001859948504716158,
+ "NoseSneerLeft": 0.0017112704226747155
+ }
+ },
+ {
+ "timeCode": 3.8666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00015940744196996093,
+ "EyeWideLeft": 0.06407929211854935,
+ "EyeWideRight": 0.06430650502443314,
+ "JawLeft": 0.012107736431062222,
+ "JawRight": 0.011200414970517159,
+ "JawOpen": 0.022575542330741882,
+ "MouthClose": 0.017711246386170387,
+ "MouthLeft": 0.0017601512372493744,
+ "MouthSmileLeft": 0.14472390711307526,
+ "MouthSmileRight": 0.1462407261133194,
+ "MouthFrownLeft": 0.025737199932336807,
+ "MouthFrownRight": 0.026993177831172943,
+ "MouthDimpleLeft": 0.08176259696483612,
+ "MouthDimpleRight": 0.08123961836099625,
+ "MouthStretchLeft": 0.016215139999985695,
+ "MouthStretchRight": 0.016269655898213387,
+ "MouthRollLower": 0.03238910064101219,
+ "MouthShrugUpper": 0.006171775050461292,
+ "MouthPressRight": 0.0002508914330974221,
+ "MouthLowerDownLeft": 0.14322315156459808,
+ "MouthLowerDownRight": 0.14370356500148773,
+ "MouthUpperUpLeft": 0.055010437965393066,
+ "MouthUpperUpRight": 0.05294375494122505,
+ "BrowDownLeft": 0.0006876001716591418,
+ "BrowInnerUp": 0.07644573599100113,
+ "BrowOuterUpLeft": 0.18284840881824493,
+ "BrowOuterUpRight": 0.1835794299840927,
+ "CheekSquintLeft": 0.0016476955497637391,
+ "NoseSneerLeft": 0.0015405882149934769
+ }
+ },
+ {
+ "timeCode": 3.9,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00018268970598001033,
+ "EyeWideLeft": 0.07010135799646378,
+ "EyeWideRight": 0.07034546136856079,
+ "JawForward": 0.002280926564708352,
+ "JawLeft": 0.022410346195101738,
+ "JawRight": 0.021686023101210594,
+ "MouthClose": 0.008923526853322983,
+ "MouthLeft": 0.002108583692461252,
+ "MouthSmileLeft": 0.12748417258262634,
+ "MouthSmileRight": 0.13003617525100708,
+ "MouthFrownLeft": 0.035358577966690063,
+ "MouthFrownRight": 0.03642769902944565,
+ "MouthDimpleLeft": 0.07636819034814835,
+ "MouthDimpleRight": 0.07660017162561417,
+ "MouthStretchLeft": 0.013423378579318523,
+ "MouthStretchRight": 0.013557324185967445,
+ "MouthRollLower": 0.062373097985982895,
+ "MouthRollUpper": 0.0325162373483181,
+ "MouthPressLeft": 0.00010248143371427432,
+ "MouthLowerDownLeft": 0.10295257717370987,
+ "MouthLowerDownRight": 0.10416506975889206,
+ "MouthUpperUpLeft": 0.009664992801845074,
+ "MouthUpperUpRight": 0.007681455463171005,
+ "BrowDownLeft": 0.0007422193884849548,
+ "BrowInnerUp": 0.0876229777932167,
+ "BrowOuterUpLeft": 0.18735235929489136,
+ "BrowOuterUpRight": 0.1881275326013565,
+ "CheekSquintLeft": 0.0015628638211637735,
+ "NoseSneerLeft": 0.0015176120214164257
+ }
+ },
+ {
+ "timeCode": 3.933333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001993167243199423,
+ "EyeWideLeft": 0.07593132555484772,
+ "EyeWideRight": 0.07619103044271469,
+ "JawForward": 0.020118482410907745,
+ "JawLeft": 0.02154678665101528,
+ "JawRight": 0.019977090880274773,
+ "MouthLeft": 0.0016721871215850115,
+ "MouthSmileLeft": 0.09175190329551697,
+ "MouthSmileRight": 0.09310848265886307,
+ "MouthFrownLeft": 0.03462264686822891,
+ "MouthFrownRight": 0.03620796278119087,
+ "MouthDimpleLeft": 0.06804518401622772,
+ "MouthDimpleRight": 0.06695614010095596,
+ "MouthStretchLeft": 0.011897376738488674,
+ "MouthStretchRight": 0.011957243084907532,
+ "MouthRollLower": 0.06854411214590073,
+ "MouthRollUpper": 0.04798778519034386,
+ "MouthShrugLower": 0.05371334031224251,
+ "MouthPressLeft": 0.00043151876889169216,
+ "MouthLowerDownLeft": 0.0721174106001854,
+ "MouthLowerDownRight": 0.0718311294913292,
+ "MouthUpperUpLeft": 0.0015159667236730456,
+ "BrowDownLeft": 0.0007435049628838897,
+ "BrowInnerUp": 0.0837031826376915,
+ "BrowOuterUpLeft": 0.1879548579454422,
+ "BrowOuterUpRight": 0.18872837722301483,
+ "CheekSquintLeft": 0.0015267214039340615,
+ "NoseSneerLeft": 0.0012027585180476308
+ }
+ },
+ {
+ "timeCode": 3.966666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00019466507364995778,
+ "EyeWideLeft": 0.07830638438463211,
+ "EyeWideRight": 0.07856651395559311,
+ "JawForward": 0.0326026976108551,
+ "JawLeft": 0.02172177843749523,
+ "JawRight": 0.020147403702139854,
+ "MouthLeft": 0.0017792594153434038,
+ "MouthSmileLeft": 0.06583712249994278,
+ "MouthSmileRight": 0.0666062980890274,
+ "MouthFrownLeft": 0.02870260179042816,
+ "MouthFrownRight": 0.03062157705426216,
+ "MouthDimpleLeft": 0.06785565614700317,
+ "MouthDimpleRight": 0.06592012941837311,
+ "MouthStretchLeft": 0.01060536690056324,
+ "MouthStretchRight": 0.01062800269573927,
+ "MouthRollLower": 0.05468295142054558,
+ "MouthRollUpper": 0.05199997127056122,
+ "MouthShrugLower": 0.0951298326253891,
+ "MouthPressLeft": 0.0008743274374864995,
+ "MouthLowerDownLeft": 0.05212242156267166,
+ "MouthLowerDownRight": 0.0509691946208477,
+ "MouthUpperUpLeft": 0.001245827996172011,
+ "BrowDownLeft": 0.0007020526682026684,
+ "BrowInnerUp": 0.07950840890407562,
+ "BrowOuterUpLeft": 0.1888132095336914,
+ "BrowOuterUpRight": 0.18956218659877777,
+ "CheekSquintLeft": 0.0015196551103144884,
+ "NoseSneerLeft": 0.0010351294185966253
+ }
+ },
+ {
+ "timeCode": 4,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00019172047905158252,
+ "EyeWideLeft": 0.07910371571779251,
+ "EyeWideRight": 0.07936543971300125,
+ "JawForward": 0.03769391030073166,
+ "JawLeft": 0.020041218027472496,
+ "JawRight": 0.01803651824593544,
+ "MouthLeft": 0.0011687248479574919,
+ "MouthSmileLeft": 0.05916878208518028,
+ "MouthSmileRight": 0.05997011810541153,
+ "MouthFrownLeft": 0.025384994223713875,
+ "MouthFrownRight": 0.027651511132717133,
+ "MouthDimpleLeft": 0.057034265249967575,
+ "MouthDimpleRight": 0.05466250702738762,
+ "MouthStretchLeft": 0.009406586177647114,
+ "MouthStretchRight": 0.009429732337594032,
+ "MouthRollLower": 0.04409993067383766,
+ "MouthRollUpper": 0.04914049431681633,
+ "MouthShrugLower": 0.09636444598436356,
+ "MouthPressLeft": 0.0014272478874772787,
+ "MouthLowerDownLeft": 0.04498622938990593,
+ "MouthLowerDownRight": 0.04366207867860794,
+ "MouthUpperUpLeft": 0.0011358073679730296,
+ "BrowDownLeft": 0.0006552060367539525,
+ "BrowInnerUp": 0.07773713767528534,
+ "BrowOuterUpLeft": 0.18910621106624603,
+ "BrowOuterUpRight": 0.18983426690101624,
+ "CheekPuff": 0.0003081770264543593,
+ "CheekSquintLeft": 0.001525181345641613,
+ "NoseSneerLeft": 0.0010425628861412406
+ }
+ },
+ {
+ "timeCode": 4.033333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00017128081526607275,
+ "EyeWideLeft": 0.08052733540534973,
+ "EyeWideRight": 0.08078327029943466,
+ "JawForward": 0.039204902946949005,
+ "JawLeft": 0.01932215504348278,
+ "JawRight": 0.01808653585612774,
+ "MouthLeft": 0.0013827178627252579,
+ "MouthSmileLeft": 0.05220835283398628,
+ "MouthSmileRight": 0.0525682158768177,
+ "MouthFrownLeft": 0.02497803047299385,
+ "MouthFrownRight": 0.027795040979981422,
+ "MouthDimpleLeft": 0.05561146140098572,
+ "MouthDimpleRight": 0.052483297884464264,
+ "MouthStretchLeft": 0.008982144296169281,
+ "MouthStretchRight": 0.008969685062766075,
+ "MouthRollLower": 0.03199947997927666,
+ "MouthRollUpper": 0.04726843908429146,
+ "MouthShrugLower": 0.09293762594461441,
+ "MouthPressLeft": 0.0016394120175391436,
+ "MouthLowerDownLeft": 0.03713890537619591,
+ "MouthLowerDownRight": 0.03531714901328087,
+ "MouthUpperUpLeft": 0.0013357893330976367,
+ "BrowDownLeft": 0.00064276676857844,
+ "BrowInnerUp": 0.0758616030216217,
+ "BrowOuterUpLeft": 0.1868249922990799,
+ "BrowOuterUpRight": 0.18756596744060516,
+ "CheekSquintLeft": 0.0017927909502759576,
+ "NoseSneerLeft": 0.0012624976225197315
+ }
+ },
+ {
+ "timeCode": 4.066666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012406110181473196,
+ "EyeWideLeft": 0.0803600549697876,
+ "EyeWideRight": 0.08060135692358017,
+ "JawForward": 0.035152941942214966,
+ "JawLeft": 0.014432794414460659,
+ "JawRight": 0.013169809244573116,
+ "MouthLeft": 0.0008315052837133408,
+ "MouthSmileLeft": 0.05705719441175461,
+ "MouthSmileRight": 0.056910280138254166,
+ "MouthFrownLeft": 0.020351383835077286,
+ "MouthFrownRight": 0.023194385692477226,
+ "MouthDimpleLeft": 0.048079103231430054,
+ "MouthDimpleRight": 0.044902022927999496,
+ "MouthStretchLeft": 0.008464285172522068,
+ "MouthStretchRight": 0.008423402905464172,
+ "MouthRollLower": 0.034834396094083786,
+ "MouthRollUpper": 0.04889480769634247,
+ "MouthShrugLower": 0.07784278690814972,
+ "MouthPressLeft": 0.0013492380967363715,
+ "MouthLowerDownLeft": 0.02740134671330452,
+ "MouthLowerDownRight": 0.025515524670481682,
+ "MouthUpperUpLeft": 0.0011844794498756528,
+ "BrowDownLeft": 0.0005669477977789938,
+ "BrowInnerUp": 0.06467559188604355,
+ "BrowOuterUpLeft": 0.17797556519508362,
+ "BrowOuterUpRight": 0.17864704132080078,
+ "CheekSquintLeft": 0.0016855263384059072,
+ "NoseSneerLeft": 0.0012151921400800347
+ }
+ },
+ {
+ "timeCode": 4.1,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00011989826452918351,
+ "EyeWideLeft": 0.07930146157741547,
+ "EyeWideRight": 0.0795367881655693,
+ "JawForward": 0.030293142423033714,
+ "JawLeft": 0.009537707082927227,
+ "JawRight": 0.007948742248117924,
+ "MouthClose": 0.0013097941409796476,
+ "MouthLeft": 0.0005547357141040266,
+ "MouthSmileLeft": 0.0668724849820137,
+ "MouthSmileRight": 0.06659931689500809,
+ "MouthFrownLeft": 0.015060271136462688,
+ "MouthFrownRight": 0.017242109403014183,
+ "MouthDimpleLeft": 0.033386316150426865,
+ "MouthDimpleRight": 0.03116578795015812,
+ "MouthStretchLeft": 0.007555882912129164,
+ "MouthStretchRight": 0.0075216530822217464,
+ "MouthRollLower": 0.02943839505314827,
+ "MouthRollUpper": 0.03805431351065636,
+ "MouthShrugLower": 0.0672847256064415,
+ "MouthPressLeft": 0.0004899518680758774,
+ "MouthLowerDownLeft": 0.012912020087242126,
+ "MouthLowerDownRight": 0.011510344222187996,
+ "MouthUpperUpLeft": 0.0008107108878903091,
+ "BrowDownLeft": 0.0005741832428611815,
+ "BrowInnerUp": 0.05917010083794594,
+ "BrowOuterUpLeft": 0.17093215882778168,
+ "BrowOuterUpRight": 0.17164179682731628,
+ "CheekSquintLeft": 0.0011743877548724413,
+ "NoseSneerLeft": 0.0010396186262369156
+ }
+ },
+ {
+ "timeCode": 4.133333333333334,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00010353667312301695,
+ "EyeWideLeft": 0.0797853171825409,
+ "EyeWideRight": 0.08001527935266495,
+ "JawForward": 0.027806567028164864,
+ "JawLeft": 0.008666393347084522,
+ "JawRight": 0.0066902972757816315,
+ "MouthClose": 0.0005382419913075864,
+ "MouthLeft": 0.0007638566894456744,
+ "MouthSmileLeft": 0.05902256444096565,
+ "MouthSmileRight": 0.058916158974170685,
+ "MouthFrownLeft": 0.014667816460132599,
+ "MouthFrownRight": 0.016881421208381653,
+ "MouthDimpleLeft": 0.029511062428355217,
+ "MouthDimpleRight": 0.027506990358233452,
+ "MouthStretchLeft": 0.0067146853543818,
+ "MouthStretchRight": 0.006692810449749231,
+ "MouthRollLower": 0.027164969593286514,
+ "MouthRollUpper": 0.03922700881958008,
+ "MouthShrugLower": 0.07630500942468643,
+ "MouthPressLeft": 0.00036636291770264506,
+ "MouthLowerDownLeft": 0.010498407296836376,
+ "MouthLowerDownRight": 0.009211838245391846,
+ "MouthUpperUpLeft": 0.0007192461634986103,
+ "BrowDownLeft": 0.0005597103154286742,
+ "BrowInnerUp": 0.056852616369724274,
+ "BrowOuterUpLeft": 0.17111460864543915,
+ "BrowOuterUpRight": 0.17182432115077972,
+ "CheekSquintLeft": 0.0011050010798498988,
+ "NoseSneerLeft": 0.0011057000374421477
+ }
+ },
+ {
+ "timeCode": 4.166666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0000899530277820304,
+ "EyeWideLeft": 0.08031339943408966,
+ "EyeWideRight": 0.08054047077894211,
+ "JawForward": 0.02898753620684147,
+ "JawLeft": 0.009651266038417816,
+ "JawRight": 0.007469509728252888,
+ "MouthLeft": 0.0008281624177470803,
+ "MouthSmileLeft": 0.05233825370669365,
+ "MouthSmileRight": 0.05219659581780434,
+ "MouthFrownLeft": 0.014309868216514587,
+ "MouthFrownRight": 0.016630439087748528,
+ "MouthDimpleLeft": 0.032439254224300385,
+ "MouthDimpleRight": 0.030334999784827232,
+ "MouthStretchLeft": 0.006663470063358545,
+ "MouthStretchRight": 0.006637026555836201,
+ "MouthRollLower": 0.025559011846780777,
+ "MouthRollUpper": 0.04027547687292099,
+ "MouthShrugLower": 0.08555226773023605,
+ "MouthPressLeft": 0.00034672493347898126,
+ "MouthLowerDownLeft": 0.012945850379765034,
+ "MouthLowerDownRight": 0.011545433662831783,
+ "MouthUpperUpLeft": 0.0006898584542796016,
+ "BrowDownLeft": 0.000547041476238519,
+ "BrowInnerUp": 0.057426780462265015,
+ "BrowOuterUpLeft": 0.173175647854805,
+ "BrowOuterUpRight": 0.17387497425079346,
+ "CheekSquintLeft": 0.0011180808069184422,
+ "NoseSneerLeft": 0.0011356566101312637
+ }
+ },
+ {
+ "timeCode": 4.2,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00010322404705220833,
+ "EyeWideLeft": 0.08082961291074753,
+ "EyeWideRight": 0.08106229454278946,
+ "JawForward": 0.025494862347841263,
+ "JawLeft": 0.010865827091038227,
+ "JawRight": 0.008448478765785694,
+ "MouthClose": 0.0006587316747754812,
+ "MouthLeft": 0.0008257137960754335,
+ "MouthSmileLeft": 0.051889464259147644,
+ "MouthSmileRight": 0.05175435170531273,
+ "MouthFrownLeft": 0.01604756899178028,
+ "MouthFrownRight": 0.01825731061398983,
+ "MouthDimpleLeft": 0.03132035955786705,
+ "MouthDimpleRight": 0.029318174347281456,
+ "MouthStretchLeft": 0.006142727565020323,
+ "MouthStretchRight": 0.006119045894593,
+ "MouthRollLower": 0.024416709318757057,
+ "MouthRollUpper": 0.04001789912581444,
+ "MouthShrugLower": 0.08676240593194962,
+ "MouthPressLeft": 0.00035152435884810984,
+ "MouthLowerDownLeft": 0.01051039807498455,
+ "MouthLowerDownRight": 0.00927810836583376,
+ "MouthUpperUpLeft": 0.0006688740104436874,
+ "BrowDownLeft": 0.0005851740716025233,
+ "BrowInnerUp": 0.06013861298561096,
+ "BrowOuterUpLeft": 0.1718626171350479,
+ "BrowOuterUpRight": 0.1726062297821045,
+ "CheekSquintLeft": 0.0010434745345264673,
+ "NoseSneerLeft": 0.0011438059154897928
+ }
+ },
+ {
+ "timeCode": 4.233333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012515365961007774,
+ "EyeWideLeft": 0.07839028537273407,
+ "EyeWideRight": 0.0786258801817894,
+ "JawForward": 0.021843301132321358,
+ "JawLeft": 0.012629659846425056,
+ "JawRight": 0.01067045982927084,
+ "MouthClose": 0.0020070672035217285,
+ "MouthLeft": 0.0009479629225097597,
+ "MouthSmileLeft": 0.053065549582242966,
+ "MouthSmileRight": 0.05311651900410652,
+ "MouthFrownLeft": 0.01921451836824417,
+ "MouthFrownRight": 0.021329300478100777,
+ "MouthDimpleLeft": 0.032349348068237305,
+ "MouthDimpleRight": 0.030576705932617188,
+ "MouthStretchLeft": 0.005864552687853575,
+ "MouthStretchRight": 0.005856548901647329,
+ "MouthRollLower": 0.017114046961069107,
+ "MouthRollUpper": 0.03390960022807121,
+ "MouthShrugLower": 0.08972836285829544,
+ "MouthPressLeft": 0.00034239349770359695,
+ "MouthLowerDownLeft": 0.008193905465304852,
+ "MouthLowerDownRight": 0.0073180231265723705,
+ "MouthUpperUpLeft": 0.0007382597541436553,
+ "BrowDownLeft": 0.0006279148510657251,
+ "BrowInnerUp": 0.05655805394053459,
+ "BrowOuterUpLeft": 0.16710658371448517,
+ "BrowOuterUpRight": 0.16789470613002777,
+ "CheekSquintLeft": 0.0010090150171890855,
+ "NoseSneerLeft": 0.0012391500640660524
+ }
+ },
+ {
+ "timeCode": 4.266666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012412687647156417,
+ "EyeWideLeft": 0.07795991003513336,
+ "EyeWideRight": 0.07819466292858124,
+ "JawForward": 0.02173304185271263,
+ "JawLeft": 0.012805650010704994,
+ "JawRight": 0.010841156356036663,
+ "MouthClose": 0.002035427140071988,
+ "MouthLeft": 0.0009487449424341321,
+ "MouthSmileLeft": 0.05233189836144447,
+ "MouthSmileRight": 0.052373386919498444,
+ "MouthFrownLeft": 0.0195689145475626,
+ "MouthFrownRight": 0.021670809015631676,
+ "MouthDimpleLeft": 0.032586678862571716,
+ "MouthDimpleRight": 0.030843764543533325,
+ "MouthStretchLeft": 0.005852923728525639,
+ "MouthStretchRight": 0.005844332277774811,
+ "MouthRollLower": 0.016744496300816536,
+ "MouthRollUpper": 0.033738862723112106,
+ "MouthShrugLower": 0.08891576528549194,
+ "MouthPressLeft": 0.0002877627848647535,
+ "MouthLowerDownLeft": 0.00915498286485672,
+ "MouthLowerDownRight": 0.008289419114589691,
+ "MouthUpperUpLeft": 0.0007447315729223192,
+ "BrowDownLeft": 0.0006272605969570577,
+ "BrowInnerUp": 0.0571988970041275,
+ "BrowOuterUpLeft": 0.16670945286750793,
+ "BrowOuterUpRight": 0.16750019788742065,
+ "CheekSquintLeft": 0.001014856854453683,
+ "NoseSneerLeft": 0.0012608426623046398
+ }
+ },
+ {
+ "timeCode": 4.3,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001239792472915724,
+ "EyeWideLeft": 0.07785875350236893,
+ "EyeWideRight": 0.07809337973594666,
+ "JawForward": 0.021695587784051895,
+ "JawLeft": 0.012975427322089672,
+ "JawRight": 0.011000998318195343,
+ "MouthClose": 0.0021575409919023514,
+ "MouthLeft": 0.0009756159852258861,
+ "MouthSmileLeft": 0.05109455808997154,
+ "MouthSmileRight": 0.05109480395913124,
+ "MouthFrownLeft": 0.01979663595557213,
+ "MouthFrownRight": 0.021950755268335342,
+ "MouthDimpleLeft": 0.033412326127290726,
+ "MouthDimpleRight": 0.031616225838661194,
+ "MouthStretchLeft": 0.0058506084606051445,
+ "MouthStretchRight": 0.005838641431182623,
+ "MouthRollLower": 0.016436994075775146,
+ "MouthRollUpper": 0.03374830260872841,
+ "MouthShrugLower": 0.088767409324646,
+ "MouthPressLeft": 0.0002812692546285689,
+ "MouthLowerDownLeft": 0.009266939014196396,
+ "MouthLowerDownRight": 0.008371627889573574,
+ "MouthUpperUpLeft": 0.0007855111034587026,
+ "BrowDownLeft": 0.0006309301243163645,
+ "BrowInnerUp": 0.056565992534160614,
+ "BrowOuterUpLeft": 0.16639117896556854,
+ "BrowOuterUpRight": 0.16718749701976776,
+ "CheekSquintLeft": 0.0010518208146095276,
+ "NoseSneerLeft": 0.001292302506044507
+ }
+ },
+ {
+ "timeCode": 4.333333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001243992883246392,
+ "EyeWideLeft": 0.07789342850446701,
+ "EyeWideRight": 0.07812879979610443,
+ "JawForward": 0.021718569099903107,
+ "JawLeft": 0.013033960945904255,
+ "JawRight": 0.011051570996642113,
+ "MouthClose": 0.002175364876165986,
+ "MouthLeft": 0.0009728033910505474,
+ "MouthSmileLeft": 0.051311299204826355,
+ "MouthSmileRight": 0.05131430923938751,
+ "MouthFrownLeft": 0.01982877217233181,
+ "MouthFrownRight": 0.02197473682463169,
+ "MouthDimpleLeft": 0.033507440239191055,
+ "MouthDimpleRight": 0.031719665974378586,
+ "MouthStretchLeft": 0.005858365911990404,
+ "MouthStretchRight": 0.005846729036420584,
+ "MouthRollLower": 0.0164740402251482,
+ "MouthRollUpper": 0.03369268774986267,
+ "MouthShrugLower": 0.08857746422290802,
+ "MouthPressLeft": 0.00027658784529194236,
+ "MouthLowerDownLeft": 0.009331240318715572,
+ "MouthLowerDownRight": 0.008439987897872925,
+ "MouthUpperUpLeft": 0.0007808363880030811,
+ "BrowDownLeft": 0.0006345885340124369,
+ "BrowInnerUp": 0.0570935495197773,
+ "BrowOuterUpLeft": 0.16692790389060974,
+ "BrowOuterUpRight": 0.16772843897342682,
+ "CheekSquintLeft": 0.0010466465028002858,
+ "NoseSneerLeft": 0.0012881509028375149
+ }
+ },
+ {
+ "timeCode": 4.366666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001236227253684774,
+ "EyeWideLeft": 0.0779629796743393,
+ "EyeWideRight": 0.0781988874077797,
+ "JawForward": 0.021714603528380394,
+ "JawLeft": 0.013089771382510662,
+ "JawRight": 0.011094450950622559,
+ "MouthClose": 0.00217900681309402,
+ "MouthLeft": 0.0009639346972107887,
+ "MouthSmileLeft": 0.05152113363146782,
+ "MouthSmileRight": 0.051522668451070786,
+ "MouthFrownLeft": 0.019860442727804184,
+ "MouthFrownRight": 0.022001178935170174,
+ "MouthDimpleLeft": 0.033545415848493576,
+ "MouthDimpleRight": 0.03176015987992287,
+ "MouthStretchLeft": 0.005871826317161322,
+ "MouthStretchRight": 0.0058602020144462585,
+ "MouthRollLower": 0.016450507566332817,
+ "MouthRollUpper": 0.033730071038007736,
+ "MouthShrugLower": 0.08851433545351028,
+ "MouthPressLeft": 0.0002742419019341469,
+ "MouthLowerDownLeft": 0.009375512599945068,
+ "MouthLowerDownRight": 0.008483788929879665,
+ "MouthUpperUpLeft": 0.0007748051430098712,
+ "BrowDownLeft": 0.0006349006434902549,
+ "BrowInnerUp": 0.05755533277988434,
+ "BrowOuterUpLeft": 0.16756856441497803,
+ "BrowOuterUpRight": 0.1683700680732727,
+ "CheekSquintLeft": 0.0010414846474304795,
+ "NoseSneerLeft": 0.0012838359689339995
+ }
+ },
+ {
+ "timeCode": 4.4,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012304825941100717,
+ "EyeWideLeft": 0.07804612815380096,
+ "EyeWideRight": 0.07828208804130554,
+ "JawForward": 0.021690482273697853,
+ "JawLeft": 0.013111770153045654,
+ "JawRight": 0.011100998148322105,
+ "MouthClose": 0.0021701150108128786,
+ "MouthLeft": 0.0009703405085019767,
+ "MouthSmileLeft": 0.051560547202825546,
+ "MouthSmileRight": 0.05156182125210762,
+ "MouthFrownLeft": 0.019884515553712845,
+ "MouthFrownRight": 0.022030701860785484,
+ "MouthDimpleLeft": 0.03359922021627426,
+ "MouthDimpleRight": 0.03181159123778343,
+ "MouthStretchLeft": 0.005874156020581722,
+ "MouthStretchRight": 0.005862455349415541,
+ "MouthRollLower": 0.01636713370680809,
+ "MouthRollUpper": 0.03377388045191765,
+ "MouthShrugLower": 0.08869464695453644,
+ "MouthPressLeft": 0.000273897428996861,
+ "MouthLowerDownLeft": 0.009455321356654167,
+ "MouthLowerDownRight": 0.00856387335807085,
+ "MouthUpperUpLeft": 0.0007826088112778962,
+ "BrowDownLeft": 0.0006371156196109951,
+ "BrowInnerUp": 0.0579659529030323,
+ "BrowOuterUpLeft": 0.16792865097522736,
+ "BrowOuterUpRight": 0.16873371601104736,
+ "CheekSquintLeft": 0.0010465268278494477,
+ "NoseSneerLeft": 0.001290205749683082
+ }
+ },
+ {
+ "timeCode": 4.433333333333334,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001246031461050734,
+ "EyeWideLeft": 0.07803694158792496,
+ "EyeWideRight": 0.0782741904258728,
+ "JawForward": 0.02177971415221691,
+ "JawLeft": 0.013114764355123043,
+ "JawRight": 0.011112983338534832,
+ "MouthClose": 0.0022200155071914196,
+ "MouthLeft": 0.0009606213425286114,
+ "MouthSmileLeft": 0.05167890712618828,
+ "MouthSmileRight": 0.051682282239198685,
+ "MouthFrownLeft": 0.019822418689727783,
+ "MouthFrownRight": 0.021959440782666206,
+ "MouthDimpleLeft": 0.033670708537101746,
+ "MouthDimpleRight": 0.03189252316951752,
+ "MouthStretchLeft": 0.005879225675016642,
+ "MouthStretchRight": 0.00586785888299346,
+ "MouthRollLower": 0.01640479639172554,
+ "MouthRollUpper": 0.033703163266181946,
+ "MouthShrugLower": 0.08845002949237823,
+ "MouthPressLeft": 0.00027354800840839744,
+ "MouthLowerDownLeft": 0.009532633237540722,
+ "MouthLowerDownRight": 0.008648211136460304,
+ "MouthUpperUpLeft": 0.0007744673057459295,
+ "BrowDownLeft": 0.0006388723268173635,
+ "BrowInnerUp": 0.0582549162209034,
+ "BrowOuterUpLeft": 0.16836562752723694,
+ "BrowOuterUpRight": 0.169172003865242,
+ "CheekSquintLeft": 0.0010363967157900333,
+ "NoseSneerLeft": 0.001283426652662456
+ }
+ },
+ {
+ "timeCode": 4.466666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012379656254779547,
+ "EyeWideLeft": 0.07810312509536743,
+ "EyeWideRight": 0.07834067195653915,
+ "JawForward": 0.02178078517317772,
+ "JawLeft": 0.013150312006473541,
+ "JawRight": 0.011135166510939598,
+ "MouthClose": 0.0022147742565721273,
+ "MouthLeft": 0.0009647145052440464,
+ "MouthSmileLeft": 0.05173813924193382,
+ "MouthSmileRight": 0.051738008856773376,
+ "MouthFrownLeft": 0.019878946244716644,
+ "MouthFrownRight": 0.022018974646925926,
+ "MouthDimpleLeft": 0.03367951139807701,
+ "MouthDimpleRight": 0.03189414367079735,
+ "MouthStretchLeft": 0.005886914674192667,
+ "MouthStretchRight": 0.005875281989574432,
+ "MouthRollLower": 0.01640116237103939,
+ "MouthRollUpper": 0.03366280347108841,
+ "MouthShrugLower": 0.0885356068611145,
+ "MouthPressLeft": 0.00027307032723911107,
+ "MouthLowerDownLeft": 0.009473062120378017,
+ "MouthLowerDownRight": 0.008582724258303642,
+ "MouthUpperUpLeft": 0.0007716398104093969,
+ "BrowDownLeft": 0.0006404587184078991,
+ "BrowInnerUp": 0.058506470173597336,
+ "BrowOuterUpLeft": 0.1685599535703659,
+ "BrowOuterUpRight": 0.1693686991930008,
+ "CheekSquintLeft": 0.0010357355931773782,
+ "NoseSneerLeft": 0.0012822194257751107
+ }
+ },
+ {
+ "timeCode": 4.5,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012418749975040555,
+ "EyeWideLeft": 0.07807265222072601,
+ "EyeWideRight": 0.07831063866615295,
+ "JawForward": 0.021771162748336792,
+ "JawLeft": 0.01317837554961443,
+ "JawRight": 0.011162208393216133,
+ "MouthClose": 0.002218120265752077,
+ "MouthLeft": 0.0009672643500380218,
+ "MouthSmileLeft": 0.05161215364933014,
+ "MouthSmileRight": 0.051611192524433136,
+ "MouthFrownLeft": 0.019909530878067017,
+ "MouthFrownRight": 0.022050069645047188,
+ "MouthDimpleLeft": 0.03375871106982231,
+ "MouthDimpleRight": 0.03197435662150383,
+ "MouthStretchLeft": 0.005884147249162197,
+ "MouthStretchRight": 0.005872553680092096,
+ "MouthRollLower": 0.016427991911768913,
+ "MouthRollUpper": 0.03372427448630333,
+ "MouthShrugLower": 0.08852387219667435,
+ "MouthPressLeft": 0.00027212078566662967,
+ "MouthLowerDownLeft": 0.009516899473965168,
+ "MouthLowerDownRight": 0.008627411909401417,
+ "MouthUpperUpLeft": 0.0007721918518655002,
+ "BrowDownLeft": 0.0006426370237022638,
+ "BrowInnerUp": 0.058683477342128754,
+ "BrowOuterUpLeft": 0.16871823370456696,
+ "BrowOuterUpRight": 0.16952957212924957,
+ "CheekSquintLeft": 0.0010336667764931917,
+ "NoseSneerLeft": 0.0012820085976272821
+ }
+ },
+ {
+ "timeCode": 4.533333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012524252815637738,
+ "EyeWideLeft": 0.07809490710496902,
+ "EyeWideRight": 0.07833368331193924,
+ "JawForward": 0.02179758809506893,
+ "JawLeft": 0.013167701661586761,
+ "JawRight": 0.011162316426634789,
+ "MouthClose": 0.002249984536319971,
+ "MouthLeft": 0.0009599367040209472,
+ "MouthSmileLeft": 0.05186309665441513,
+ "MouthSmileRight": 0.05186425894498825,
+ "MouthFrownLeft": 0.01985599845647812,
+ "MouthFrownRight": 0.021982889622449875,
+ "MouthDimpleLeft": 0.03371881693601608,
+ "MouthDimpleRight": 0.03194713592529297,
+ "MouthStretchLeft": 0.005885319784283638,
+ "MouthStretchRight": 0.005874043796211481,
+ "MouthRollLower": 0.016436530277132988,
+ "MouthRollUpper": 0.03364100679755211,
+ "MouthShrugLower": 0.08831701427698135,
+ "MouthPressLeft": 0.00026716155116446316,
+ "MouthLowerDownLeft": 0.009602771140635014,
+ "MouthLowerDownRight": 0.00872234907001257,
+ "MouthUpperUpLeft": 0.0007686144090257585,
+ "BrowDownLeft": 0.0006441198638640344,
+ "BrowInnerUp": 0.059157099574804306,
+ "BrowOuterUpLeft": 0.1691221445798874,
+ "BrowOuterUpRight": 0.16993509232997894,
+ "CheekSquintLeft": 0.0010248500620946288,
+ "NoseSneerLeft": 0.001277100876905024
+ }
+ },
+ {
+ "timeCode": 4.566666666666666,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012449790665414184,
+ "EyeWideLeft": 0.07812308520078659,
+ "EyeWideRight": 0.07836190611124039,
+ "JawForward": 0.021828636527061462,
+ "JawLeft": 0.013187120668590069,
+ "JawRight": 0.011173078790307045,
+ "MouthClose": 0.002258621621876955,
+ "MouthLeft": 0.0009599386830814183,
+ "MouthSmileLeft": 0.0518546923995018,
+ "MouthSmileRight": 0.05185370892286301,
+ "MouthFrownLeft": 0.01989540085196495,
+ "MouthFrownRight": 0.02202807553112507,
+ "MouthDimpleLeft": 0.03380590304732323,
+ "MouthDimpleRight": 0.0320255346596241,
+ "MouthStretchLeft": 0.005890912842005491,
+ "MouthStretchRight": 0.00587943010032177,
+ "MouthRollLower": 0.01648830436170101,
+ "MouthRollUpper": 0.0336604118347168,
+ "MouthShrugLower": 0.0884157195687294,
+ "MouthPressLeft": 0.00027072866214439273,
+ "MouthLowerDownLeft": 0.009589547291398048,
+ "MouthLowerDownRight": 0.008700541220605373,
+ "MouthUpperUpLeft": 0.0007674930966459215,
+ "BrowDownLeft": 0.0006468220381066203,
+ "BrowInnerUp": 0.05935800448060036,
+ "BrowOuterUpLeft": 0.169352188706398,
+ "BrowOuterUpRight": 0.17016902565956116,
+ "CheekSquintLeft": 0.0010295928223058581,
+ "NoseSneerLeft": 0.001278276671655476
+ }
+ },
+ {
+ "timeCode": 4.6,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.0001252431102329865,
+ "EyeWideLeft": 0.07811728864908218,
+ "EyeWideRight": 0.07835645228624344,
+ "JawForward": 0.021819140762090683,
+ "JawLeft": 0.01320945005863905,
+ "JawRight": 0.011187362484633923,
+ "MouthClose": 0.0022442496847361326,
+ "MouthLeft": 0.0009571497212164104,
+ "MouthSmileLeft": 0.0517638735473156,
+ "MouthSmileRight": 0.051758039742708206,
+ "MouthFrownLeft": 0.01990460231900215,
+ "MouthFrownRight": 0.022036924958229065,
+ "MouthDimpleLeft": 0.03385927900671959,
+ "MouthDimpleRight": 0.03207991644740105,
+ "MouthStretchLeft": 0.005893207620829344,
+ "MouthStretchRight": 0.005881417077034712,
+ "MouthRollLower": 0.016539713367819786,
+ "MouthRollUpper": 0.03374120593070984,
+ "MouthShrugLower": 0.08849859237670898,
+ "MouthPressLeft": 0.0002639943559188396,
+ "MouthLowerDownLeft": 0.00961766391992569,
+ "MouthLowerDownRight": 0.00872830580919981,
+ "MouthUpperUpLeft": 0.0007704905001446605,
+ "BrowDownLeft": 0.000647755921818316,
+ "BrowInnerUp": 0.059569139033555984,
+ "BrowOuterUpLeft": 0.16939230263233185,
+ "BrowOuterUpRight": 0.170210599899292,
+ "CheekSquintLeft": 0.00102952029556036,
+ "NoseSneerLeft": 0.0012790028704330325
+ }
+ },
+ {
+ "timeCode": 4.633333333333334,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012627449177671224,
+ "EyeWideLeft": 0.07814876735210419,
+ "EyeWideRight": 0.0783887505531311,
+ "JawForward": 0.021801522001624107,
+ "JawLeft": 0.013198347762227058,
+ "JawRight": 0.01118486374616623,
+ "MouthClose": 0.002296343445777893,
+ "MouthLeft": 0.0009586114319972694,
+ "MouthSmileLeft": 0.05199810117483139,
+ "MouthSmileRight": 0.05199996754527092,
+ "MouthFrownLeft": 0.019867243245244026,
+ "MouthFrownRight": 0.02199087105691433,
+ "MouthDimpleLeft": 0.03378383442759514,
+ "MouthDimpleRight": 0.032010357826948166,
+ "MouthStretchLeft": 0.005892598070204258,
+ "MouthStretchRight": 0.005881477613002062,
+ "MouthRollLower": 0.01649823598563671,
+ "MouthRollUpper": 0.03366651013493538,
+ "MouthShrugLower": 0.0883309468626976,
+ "MouthPressLeft": 0.00027132302056998014,
+ "MouthLowerDownLeft": 0.00969708152115345,
+ "MouthLowerDownRight": 0.008815542794764042,
+ "MouthUpperUpLeft": 0.0007638853276148438,
+ "BrowDownLeft": 0.0006489071529358625,
+ "BrowInnerUp": 0.05978494510054588,
+ "BrowOuterUpLeft": 0.16972513496875763,
+ "BrowOuterUpRight": 0.17054353654384613,
+ "CheekSquintLeft": 0.001022543292492628,
+ "NoseSneerLeft": 0.001273449044674635
+ }
+ },
+ {
+ "timeCode": 4.666666666666667,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012411137868184596,
+ "EyeWideLeft": 0.07815469801425934,
+ "EyeWideRight": 0.07839410752058029,
+ "JawForward": 0.02183610014617443,
+ "JawLeft": 0.013242405839264393,
+ "JawRight": 0.011217818595468998,
+ "MouthClose": 0.0022884593345224857,
+ "MouthLeft": 0.0009593269205652177,
+ "MouthSmileLeft": 0.052024636417627335,
+ "MouthSmileRight": 0.05202732980251312,
+ "MouthFrownLeft": 0.019918197765946388,
+ "MouthFrownRight": 0.02204093709588051,
+ "MouthDimpleLeft": 0.03386709839105606,
+ "MouthDimpleRight": 0.03209733963012695,
+ "MouthStretchLeft": 0.00589674711227417,
+ "MouthStretchRight": 0.005885657388716936,
+ "MouthRollLower": 0.016546202823519707,
+ "MouthRollUpper": 0.03368866443634033,
+ "MouthShrugLower": 0.08836673200130463,
+ "MouthPressLeft": 0.00026425503892824054,
+ "MouthLowerDownLeft": 0.00968302320688963,
+ "MouthLowerDownRight": 0.008800114504992962,
+ "MouthUpperUpLeft": 0.0007607191218994558,
+ "BrowDownLeft": 0.0006481503951363266,
+ "BrowInnerUp": 0.059797253459692,
+ "BrowOuterUpLeft": 0.16999022662639618,
+ "BrowOuterUpRight": 0.17080841958522797,
+ "CheekSquintLeft": 0.0010217026574537158,
+ "NoseSneerLeft": 0.001272727269679308
+ }
+ },
+ {
+ "timeCode": 4.7,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012392330972943455,
+ "EyeWideLeft": 0.07818900793790817,
+ "EyeWideRight": 0.07842865586280823,
+ "JawForward": 0.02185823582112789,
+ "JawLeft": 0.013250906951725483,
+ "JawRight": 0.011232203803956509,
+ "MouthClose": 0.0023012007586658,
+ "MouthLeft": 0.0009622963261790574,
+ "MouthSmileLeft": 0.05198955535888672,
+ "MouthSmileRight": 0.051984772086143494,
+ "MouthFrownLeft": 0.019938407465815544,
+ "MouthFrownRight": 0.02206212654709816,
+ "MouthDimpleLeft": 0.033935464918613434,
+ "MouthDimpleRight": 0.032162513583898544,
+ "MouthStretchLeft": 0.005896070506423712,
+ "MouthStretchRight": 0.005884532816708088,
+ "MouthRollLower": 0.01651095226407051,
+ "MouthRollUpper": 0.033705756068229675,
+ "MouthShrugLower": 0.08839983493089676,
+ "MouthPressLeft": 0.0002634864649735391,
+ "MouthLowerDownLeft": 0.009741122834384441,
+ "MouthLowerDownRight": 0.008857259526848793,
+ "MouthUpperUpLeft": 0.0007654145010747015,
+ "BrowDownLeft": 0.0006482991157099605,
+ "BrowInnerUp": 0.05994397774338722,
+ "BrowOuterUpLeft": 0.17009958624839783,
+ "BrowOuterUpRight": 0.17091873288154602,
+ "CheekSquintLeft": 0.001022145850583911,
+ "NoseSneerLeft": 0.001273300964385271
+ }
+ },
+ {
+ "timeCode": 4.733333333333333,
+ "blendShapes": {
+ "EyeBlinkLeft": 0.00012299568334128708,
+ "EyeWideLeft": 0.07817426323890686,
+ "EyeWideRight": 0.07841373980045319,
+ "JawForward": 0.021857205778360367,
+ "JawLeft": 0.013271729461848736,
+ "JawRight": 0.011245987378060818,
+ "MouthClose": 0.0022965222597122192,
+ "MouthLeft": 0.0009625682723708451,
+ "MouthSmileLeft": 0.0519942007958889,
+ "MouthSmileRight": 0.0519910492002964,
+ "MouthFrownLeft": 0.019958816468715668,
+ "MouthFrownRight": 0.022082511335611343,
+ "MouthDimpleLeft": 0.03394802287220955,
+ "MouthDimpleRight": 0.032172370702028275,
+ "MouthStretchLeft": 0.005898991134017706,
+ "MouthStretchRight": 0.0058875312097370625,
+ "MouthRollLower": 0.016571106389164925,
+ "MouthRollUpper": 0.033664505928754807,
+ "MouthShrugLower": 0.08842562139034271,
+ "MouthPressLeft": 0.00026604835875332355,
+ "MouthLowerDownLeft": 0.009669959545135498,
+ "MouthLowerDownRight": 0.008784749545156956,
+ "MouthUpperUpLeft": 0.0007608238374814391,
+ "BrowDownLeft": 0.0006489912047982216,
+ "BrowInnerUp": 0.06016208231449127,
+ "BrowOuterUpLeft": 0.17006884515285492,
+ "BrowOuterUpRight": 0.17088906466960907,
+ "CheekSquintLeft": 0.0010213882196694613,
+ "NoseSneerLeft": 0.0012711795279756188
+ }
+ }
+]
\ No newline at end of file
diff --git a/services/a2f_api/__pycache__/text_to_blendshapes_service.cpython-311.pyc b/services/a2f_api/__pycache__/text_to_blendshapes_service.cpython-311.pyc
index cd3751b..b15c76e 100644
Binary files a/services/a2f_api/__pycache__/text_to_blendshapes_service.cpython-311.pyc and b/services/a2f_api/__pycache__/text_to_blendshapes_service.cpython-311.pyc differ
diff --git a/services/a2f_api/text_to_blendshapes_service.py b/services/a2f_api/text_to_blendshapes_service.py
index 1d0e3f5..33dbb68 100644
--- a/services/a2f_api/text_to_blendshapes_service.py
+++ b/services/a2f_api/text_to_blendshapes_service.py
@@ -48,7 +48,7 @@ class TextToBlendShapesService:
output_dir, audio_path = self._prepare_output_paths(output_dir)
self.tts.text_to_audio(text, audio_path)
- csv_path = self.a2f.audio_to_csv(audio_path)
+ csv_path, temp_dir = self.a2f.audio_to_csv(audio_path)
frames = self.parser.csv_to_blend_shapes(csv_path)
return {