blob: 164bac8a019e9e2c211884e4a8c51a15eada67cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
|
// Choreo version 1
event stoppoint "stop"
{
time 89.760002 -1.000000
param "noaction"
}
actor "Breen"
{
channel "audio"
{
event speak "collaboration01"
{
time 0.193334 8.503719
param "breencast.br_collaboration01"
fixedlength
tags
{
"it" 0.010589
"has" 0.026714
"come" 0.060166
"to" 0.094099
"my" 0.113352
"attention" 0.145360
"that" 0.223094
"some" 0.272671
"have" 0.316953
"lately" 0.348961
"called" 0.390596
"me" 0.428861
"a" 0.468330
"collaborator" 0.496728
"as" 0.599250
"if" 0.625482
"such" 0.700088
"a" 0.739557
"term" 0.752071
"were" 0.799963
"shameful" 0.840635
}
cctype "cc_master"
cctoken ""
}
event speak "collaboration02"
{
time 8.453342 13.249397
param "breencast.br_collaboration02"
fixedlength
tags
{
"I" 0.016263
"ask" 0.058798
"you" 0.131358
"what" 0.171391
"greater" 0.246036
"endeavor" 0.332357
"exists" 0.438277
"than" 0.586315
"that" 0.630518
"of" 0.667215
"collaboration" 0.698491
}
cctype "cc_master"
cctoken ""
}
event speak "collaboration03"
{
time 13.100014 21.946045
param "breencast.br_collaboration03"
fixedlength
tags
{
"in" 0.009270
"our" 0.023966
"current" 0.043183
"unparelleled" 0.098349
"enterprise" 0.197151
"refusal" 0.278769
"to" 0.346370
"collaborate" 0.363101
"is" 0.438163
"simply" 0.453989
"refusal" 0.498303
"to" 0.555956
"grow" 0.569973
"an" 0.644583
"insistence" 0.658148
"on" 0.744289
"suicide" 0.771645
"if" 0.851455
"you" 0.863890
"will" 0.881525
}
cctype "cc_master"
cctoken ""
}
event speak "collaboration04"
{
time 22.013348 26.094572
param "breencast.br_collaboration04"
fixedlength
tags
{
"did" 0.021562
"the" 0.058316
"lungfish" 0.087719
"refuse" 0.260706
"to" 0.382238
"breathe" 0.405761
"air" 0.510631
"it" 0.650785
"did" 0.689989
"not" 0.736544
}
cctype "cc_master"
cctoken ""
}
event speak "collaboration05"
{
time 25.653347 38.526001
param "breencast.br_collaboration05"
fixedlength
tags
{
"it" 0.003107
"crept" 0.018800
"forth" 0.059817
"boldly" 0.098814
"while" 0.146668
"its" 0.166089
"brethren" 0.178207
"remained" 0.222798
"in" 0.269719
"blackest" 0.282459
"ocean" 0.335284
"abyss" 0.361386
"with" 0.440779
"lidless" 0.456161
"eyes" 0.501528
"forever" 0.532136
"staring" 0.570046
"at" 0.620540
"dark" 0.640272
"ignorant" 0.711275
"and" 0.752292
"doomed" 0.770005
"despite" 0.800923
"their" 0.843027
"eternal" 0.857632
"vigilance" 0.895542
}
cctype "cc_master"
cctoken ""
}
event speak "collaboration06"
{
time 38.395573 41.338364
param "breencast.br_collaboration06"
fixedlength
tags
{
"would" 0.009515
"we" 0.070002
"model" 0.120294
"ourselves" 0.254860
"on" 0.407776
"trilobyte" 0.473700
}
cctype "cc_master"
cctoken ""
}
event speak "collaboration07"
{
time 41.600014 55.274437
param "breencast.br_collaboration07"
fixedlength
tags
{
"are" 0.006435
"all" 0.020622
"accomplishments" 0.043439
"of" 0.095799
"humanity" 0.106622
"fated" 0.145381
"to" 0.175218
"be" 0.178289
"nothing" 0.185309
"more" 0.216463
"than" 0.230796
"layer" 0.248347
"broken" 0.282279
"plastic" 0.328204
"shards" 0.370765
"thinly" 0.441993
"strewn" 0.486017
"across" 0.519656
"fossil" 0.552711
"bed" 0.587959
"sandwiched" 0.632860
"between" 0.690779
"burgess" 0.734071
"shale" 0.776779
"and" 0.815537
"eon's" 0.842741
"worth" 0.881500
"mud" 0.913823
}
cctype "cc_master"
cctoken ""
}
event speak "collaboration08"
{
time 55.146683 70.206909
param "breencast.br_collaboration08"
fixedlength
tags
{
"in" 0.008632
"order" 0.016600
"to" 0.034130
"be" 0.041965
"true" 0.050464
"to" 0.069853
"our" 0.078485
"nature" 0.089640
"and" 0.143823
"our" 0.155907
"destiny" 0.168523
"we" 0.234127
"must" 0.243555
"aspire" 0.262015
"to" 0.293621
"greater" 0.303979
"things" 0.330141
"we" 0.392823
"have" 0.401322
"outgrown" 0.414204
"our" 0.473698
"cradle" 0.490962
"it" 0.549925
"is" 0.560151
"futile" 0.574095
"to" 0.607826
"cry" 0.616060
"for" 0.635316
"mothers" 0.645807
"milk" 0.672898
"when" 0.694545
"our" 0.706629
"true" 0.723628
"sustenance" 0.747930
"awaits" 0.805698
"us" 0.834516
"among" 0.869044
"the" 0.895604
"stars" 0.904767
}
cctype "cc_master"
cctoken ""
}
event speak "collaboration09"
{
time 69.773354 76.564079
param "breencast.br_collaboration09"
fixedlength
tags
{
"and" 0.012370
"only" 0.033870
"the" 0.075986
"universal" 0.096308
"union" 0.195266
"taht" 0.323677
"small" 0.359608
"minds" 0.441779
"call" 0.525423
"the" 0.581970
"combine" 0.595518
"can" 0.706552
"carry" 0.742778
"us" 0.799031
"there" 0.822592
}
cctype "cc_master"
cctoken ""
}
event speak "collaboration10"
{
time 76.580009 87.059921
param "breencast.br_collaboration10"
fixedlength
tags
{
"therefore" 0.007061
"I" 0.045802
"say" 0.059352
"yes" 0.083970
"I" 0.130726
"am" 0.160307
"a" 0.179773
"collaborator" 0.187025
"we" 0.280537
"must" 0.295232
"all" 0.325003
"collaborate" 0.393133
"willingly" 0.484546
"eagerly" 0.585310
"if" 0.666418
"we" 0.682258
"expect" 0.694663
"to" 0.733403
"reapp" 0.747335
"the" 0.774053
"bemefots" 0.785312
"of" 0.836649
"unification" 0.850198
}
cctype "cc_master"
cctoken ""
}
event speak "collaboration11"
{
time 86.513344 89.631844
param "breencast.br_collaboration11"
fixedlength
tags
{
"and" 0.181497
"reap" 0.266153
"we" 0.455988
"shall" 0.541285
}
cctype "cc_master"
cctoken ""
}
}
channel "look at"
{
event lookat "camera_tv_breen"
{
time 0.000000 90.633331
param "camera_tv_breen"
event_ramp
{
0.0020 0.0453
0.0200 0.0453
90.6053 0.0383
90.6253 0.0383
}
}
}
channel "move to"
{
}
channel "sit"
{
event sequence "sit"
{
time 0.000000 0.500000
param "sitpose"
fixedlength
}
}
channel "trigger"
{
event firetrigger "camera start"
{
time 0.080000 -1.000000
param "1"
}
event firetrigger "camera off"
{
time 90.120003 -1.000000
param "2"
}
}
channel "Facial Flex"
{
event flexanimation "Flex"
{
time 0.024446 96.780006
param ""
flexanimations samples_use_time
{
"lid_raiser" combo
{
11.5953 0.0300
11.7779 0.3400
12.0578 0.4100
12.4660 0.1400
12.7637 0.0200
16.1938 0.0200
16.3551 0.4000
16.6900 0.3800
16.8572 0.0800
17.8765 0.0100
18.0652 0.0100
18.1321 0.4000
18.4060 0.4300
18.7285 0.0100
19.1363 0.0200
24.5798 0.0300
24.7208 0.4400
25.2141 0.4500
25.4271 0.2700
25.5227 0.0500
26.6942 0.0300
26.8706 0.5100
27.1749 0.5100
27.4792 0.0200
30.0146 0.0100
30.2520 0.5000
30.6719 0.4700
31.0159 0.0100
32.6900 0.0100
32.9637 0.5900
33.5114 0.5800
33.9011 0.0200
35.3637 0.0300
35.5280 0.5700
35.8566 0.5300
36.0696 0.0300
39.6398 0.0200
39.7859 0.5400
40.4705 0.5400
40.8052 0.0100
48.9817 0.0100
49.0730 0.3500
49.3834 0.3100
49.5017 0.0600
53.8447 0.0200
53.9664 0.5500
54.2585 0.6000
54.5019 0.2900
54.7393 0.0400
61.1844 0.0300
61.3183 0.4700
61.5434 0.4700
61.8051 0.0200
68.0849 0.0200
68.2066 0.3800
68.5474 0.4400
68.9369 0.3300
69.2290 0.0400
73.6290 0.0200
73.8238 0.4500
74.4080 0.4700
74.7184 0.3200
75.0501 0.2200
75.2996 0.3100
75.5838 0.3300
75.8589 0.1900
76.0445 0.0500
77.2643 0.0200
77.3921 0.4300
77.7518 0.4200
77.9708 0.2500
78.1650 0.5000
78.4875 0.4500
78.6701 0.3000
78.9683 0.1700
79.4526 0.1700
79.7447 0.2000
79.8968 0.5400
80.2254 0.5200
80.4384 0.2100
80.6393 0.0800
81.4373 0.0300
81.5895 0.3900
81.9546 0.3800
82.1859 0.0300
82.5145 0.0500
82.5815 0.4400
82.9770 0.4800
83.1779 0.0300
87.1852 0.0200
87.2947 0.5600
87.6461 0.5100
87.8546 0.0200
}
{
}
"lid_tightener" combo
{
0.4625 0.2200
1.3145 0.2600
2.1848 0.1200
2.3491 0.3700
2.6838 0.3600
2.8656 0.1900
3.7745 0.1800
4.0226 0.4700
4.4000 0.4600
4.6373 0.2800
5.0085 0.0400
6.4417 0.0200
6.9346 0.5800
7.5432 0.5500
8.1213 0.0200
15.3959 0.0500
15.5409 0.1000
16.1725 0.4500
16.3916 0.1200
16.8420 0.2200
17.0369 0.1600
17.3532 0.0100
41.8610 0.0100
41.9584 0.2800
42.6400 0.2400
43.4859 0.2200
43.7354 0.0300
44.8049 0.0200
44.9631 0.2500
45.4743 0.2900
45.8638 0.1000
46.0403 0.2900
46.3141 0.1000
46.6793 0.0000
47.6058 0.1600
48.0197 0.0400
48.2813 0.1600
48.6830 0.0200
48.9629 0.0000
63.4897 0.0100
63.6723 0.1700
64.3782 0.1900
64.7312 0.0200
73.6351 0.0100
73.7994 0.2700
74.3715 0.2900
74.7001 0.0200
}
{
}
"lid_droop" combo
{
72.0172 0.0200
72.1876 0.2400
72.6136 0.3800
73.0153 0.2600
73.1613 0.0200
}
{
}
"lid_closer" combo
{
}
{
}
"half_closed"
{
}
"blink"
{
0.5295 0.0200
0.5660 0.7200
0.6451 0.0100
4.0896 0.0200
4.1147 0.7800
4.2174 0.0200
6.9148 0.0300
6.9635 0.7800
7.0913 0.0300
9.2556 0.0200
9.3043 0.7800
9.4386 0.0300
11.4458 0.0200
11.4762 0.6700
11.6239 0.0200
13.1150 0.0800
13.1515 0.6800
13.2806 0.0500
14.3608 0.0100
14.3912 0.7800
14.5387 0.0200
17.7566 0.0200
17.7931 0.7600
17.9452 0.0200
21.1240 0.0200
21.1909 0.8100
21.3378 0.0100
24.3602 0.0300
24.4089 0.7800
24.5732 0.0200
27.2600 0.0300
27.2904 0.7700
27.4608 0.0200
29.4462 0.0200
29.4888 0.7000
29.6592 0.0100
30.9616 0.0200
30.9920 0.8100
31.1928 0.0200
32.7828 0.0200
32.8250 0.7900
32.9720 0.0100
35.1562 0.0300
35.1866 0.7700
35.3448 0.0400
37.8757 0.0100
37.9304 0.7600
38.0826 0.0400
40.5569 0.0200
40.5873 0.7300
40.7709 0.0200
42.6584 0.0200
42.7010 0.8200
42.8410 0.0200
44.8735 0.0300
44.9161 0.8000
45.0865 0.0400
47.2613 0.0100
47.2978 0.8100
47.4560 0.0200
49.9956 0.0200
50.0321 0.7800
50.1721 0.0100
54.5950 0.0200
54.6559 0.8300
54.8029 0.0500
56.8918 0.0200
56.9283 0.7400
57.0926 0.0300
59.0303 0.0100
59.0851 0.6800
59.2555 0.0100
60.6536 0.0200
60.7083 0.7600
60.8726 0.0200
62.9585 0.0200
63.0072 0.7700
63.1655 0.0300
65.0505 0.0200
65.0931 0.8000
65.2452 0.0200
67.8863 0.0200
67.9289 0.7900
68.1176 0.0300
69.4889 0.0300
69.5376 0.6600
69.6897 0.0200
71.7199 0.0400
71.7625 0.7600
71.9451 0.0300
}
"inner_raiser" combo
{
0.3651 0.0200
0.5781 0.3700
0.6877 0.5100
1.1319 0.4300
1.3510 0.4000
1.5762 0.0800
2.2334 0.0300
2.3856 0.2900
2.7446 0.2900
2.9698 0.0100
3.9618 0.0200
4.1018 0.2400
4.2417 0.4100
4.9446 0.3700
5.1150 0.0400
8.4916 0.0300
8.6523 0.4000
9.0332 0.5800
9.3190 0.3300
9.5140 0.1500
9.6363 0.1500
10.0388 0.3000
10.4634 0.3200
10.6042 0.7100
11.1527 0.7000
11.4414 0.4200
11.7596 0.4000
12.6824 0.5900
13.0553 0.0700
13.6705 0.0200
15.1106 0.0300
15.5076 0.1100
15.7936 0.4100
16.1427 0.7100
16.7224 0.6200
16.9575 0.3200
17.3569 0.1500
17.8183 0.2300
17.9865 0.4200
18.0960 0.6900
18.6437 0.7600
18.8226 0.3000
19.2243 0.1200
19.6790 0.1400
19.8677 0.6900
20.3546 0.7600
20.6919 0.3800
20.8988 0.3300
21.3250 0.3100
21.6909 0.1300
23.5538 0.0100
23.7147 0.3600
24.0833 0.4800
24.4059 0.3400
24.6615 0.0200
32.6353 0.0300
32.8726 0.5200
33.5359 0.4200
33.9315 0.0200
34.6436 0.0100
34.7775 0.5500
35.3130 0.5200
35.5565 0.6900
35.9277 0.5700
36.4024 0.0200
39.4998 0.0200
39.6877 0.6500
40.6032 0.7100
41.0679 0.0400
41.8547 0.0400
42.0494 0.5400
43.1753 0.5400
43.9604 0.1300
44.8428 0.1600
44.9645 0.5500
45.5974 0.5000
46.0301 0.1900
46.3399 0.0700
46.6563 0.0700
47.3788 0.1000
47.6619 0.4500
48.2218 0.3600
48.6782 0.3400
49.0251 0.1100
49.2405 0.1500
49.4900 0.3500
49.9647 0.3000
50.1120 0.2500
50.3737 0.2000
50.7863 0.2000
51.3644 0.2100
51.5957 0.3600
51.9851 0.4500
52.1921 0.4400
52.4430 0.3600
52.9299 0.4300
53.6111 0.3200
53.8058 0.5500
54.0435 0.7800
54.5219 0.8000
55.0158 0.5000
55.2467 0.3300
55.4049 0.2800
55.6978 0.2300
56.1360 0.1900
56.4585 0.0500
59.4552 0.0200
59.6986 0.3500
59.9055 0.3800
60.0151 0.3100
60.1307 0.4100
60.4471 0.3700
60.7332 0.1400
60.9401 0.0400
63.5364 0.0100
63.7434 0.4000
64.2120 0.4000
64.3641 0.1500
64.6440 0.0000
65.8697 0.0100
66.0981 0.3100
66.7908 0.2600
67.0951 0.0000
70.1937 0.0200
70.4675 0.3400
71.9281 0.3300
72.5001 0.0300
76.9287 0.0300
77.1602 0.2000
77.3167 0.2800
77.4766 0.4500
77.7602 0.4700
77.9578 0.4800
78.1511 0.6100
78.4241 0.6100
78.5588 0.4900
78.8222 0.2900
79.4812 0.2700
79.7662 0.3100
79.9062 0.5900
80.2470 0.5700
80.4600 0.2700
80.7095 0.2000
81.4155 0.1800
81.5427 0.4800
81.8227 0.4600
81.9986 0.2300
82.4739 0.1800
82.6077 0.7200
83.0581 0.7400
83.2346 0.4300
83.4780 0.3300
83.7153 0.3600
84.2326 0.4200
84.3300 0.6200
84.6282 0.6600
85.0053 0.5300
85.2548 0.5900
85.5712 0.6000
86.3598 0.5600
86.6594 0.2500
87.0501 0.0300
87.4335 0.0300
}
{
}
"outer_raiser" combo
{
11.2545 0.0200
11.5953 0.0600
11.8422 0.3800
12.8029 0.4300
13.0337 0.0900
13.4812 0.5614
13.8293 0.7049
14.6071 0.7103
15.1000 0.3738
15.4773 0.2523
16.0859 0.2150
16.9333 0.0374
21.5524 0.0187
22.2157 0.2617
22.3314 0.5514
22.7939 0.7664
23.2564 0.7103
23.8156 0.5140
24.0407 0.3364
24.3998 0.3178
24.6797 0.0093
25.1848 0.0000
46.6634 0.0374
47.3572 0.0561
47.6798 0.5047
48.2153 0.4019
48.6778 0.3364
49.0308 0.1121
49.6178 0.0654
50.1594 0.1308
50.7193 0.3551
51.3340 0.2991
51.5896 0.1121
51.9669 0.0093
54.7927 0.0467
55.2248 0.1028
55.6810 0.5140
56.7141 0.5981
57.4018 0.4766
57.9434 0.4860
59.4378 0.4953
59.6995 0.6729
60.5149 0.5421
60.9470 0.4206
61.3061 0.4112
62.0303 0.4393
63.3600 0.4112
63.6886 0.4953
64.2059 0.5140
64.4676 0.3925
64.8266 0.3925
65.8027 0.4299
66.0218 0.3178
67.6406 0.2617
68.0179 0.2430
68.2066 0.0374
69.0281 0.0374
70.2484 0.0467
70.4797 0.3925
71.1613 0.4486
71.8490 0.3832
72.4730 0.0187
84.8957 0.0100
85.2791 0.3600
85.6869 0.4100
86.3746 0.4600
86.6667 0.3300
87.0440 0.3300
87.4609 0.5900
88.0117 0.5900
88.4267 0.5700
88.6762 0.6500
89.1387 0.7800
}
{
11.8137 0.4953
13.0126 0.4299
13.5360 0.0000
14.5523 0.0000
21.1264 0.0374
21.5280 0.2056
22.6722 0.2056
85.1769 0.4900
86.5097 0.4900
87.0209 0.2600
87.8303 0.1600
88.7979 0.1400
}
"lowerer" combo
{
6.9059 0.0200
7.1128 0.4500
7.5509 0.4300
8.2021 0.2700
8.3968 0.0500
15.1487 0.0200
15.4652 0.0200
16.5058 0.0100
24.3633 0.0200
24.6371 0.3500
25.0144 0.3800
26.1160 0.4200
26.4751 0.3100
26.7246 0.1800
26.9011 0.5000
27.2384 0.5000
27.4670 0.2100
27.8565 0.1900
28.9960 0.1700
29.2638 0.5100
29.6289 0.4900
29.8115 0.2000
30.1036 0.2400
30.2557 0.5500
30.5539 0.5700
30.9572 0.2800
31.4444 0.0500
32.2275 0.0200
32.6292 0.0300
32.7752 0.2700
33.5177 0.3000
33.9011 0.0200
34.6071 0.0200
34.8018 0.5300
35.3183 0.4900
35.5565 0.6600
35.9399 0.5600
36.5363 0.0200
41.6917 0.0300
41.8803 0.0300
42.0203 0.3100
43.1948 0.2600
44.0225 0.1500
44.4181 0.0300
44.8319 0.1300
44.9901 0.3900
45.5439 0.4100
46.0429 0.1200
49.9977 0.0100
50.3370 0.3400
50.7874 0.2000
51.2316 0.2100
51.6881 0.0800
53.6352 0.0300
53.9054 0.4800
54.0672 0.6600
54.3815 0.6100
54.7087 0.1400
55.3818 0.0300
55.6191 0.0100
71.8824 0.0100
72.2415 0.3200
72.6675 0.3600
73.4282 0.3300
73.6290 0.5400
74.1074 0.5500
74.3674 0.3600
74.5926 0.1600
74.8356 0.3000
75.3483 0.3300
76.1863 0.2200
76.5088 0.3000
76.7036 0.3900
77.3129 0.4400
77.5085 0.6100
77.7791 0.6300
77.9362 0.6800
78.1217 0.7900
78.3884 0.7500
78.5247 0.6300
78.7994 0.4200
79.4045 0.3300
79.7662 0.3700
79.8940 0.7200
80.2896 0.7000
80.4904 0.4200
80.7399 0.4000
81.1654 0.3400
81.4824 0.3800
81.6340 0.5600
81.8653 0.5600
82.0467 0.2900
82.5530 0.2200
82.6382 0.5000
82.9911 0.4900
83.1250 0.2600
83.4597 0.0200
83.8979 0.0400
}
{
}
"cheek_raiser" combo
{
14.2784 0.0100
14.7105 0.0200
14.8201 0.1100
15.6356 0.1300
20.2729 0.1700
20.6928 0.1700
21.0093 0.0200
24.4433 0.0200
24.6381 0.2100
24.9606 0.1700
25.1919 0.0400
34.1040 0.0200
34.2866 0.3400
35.1568 0.3900
36.1701 0.0200
36.8791 0.0100
39.5181 0.0200
39.7128 0.3000
40.6318 0.3200
40.9971 0.0000
53.6355 0.0400
54.0371 0.1700
54.8831 0.1300
55.3456 0.0300
57.3166 0.0200
57.5661 0.1500
57.9312 0.1700
58.3390 0.0500
58.6554 0.0300
61.2178 0.0200
61.3578 0.1600
62.2402 0.1800
62.4167 0.1000
62.7331 0.0200
69.0212 0.0200
69.3012 0.1700
69.7690 0.2800
70.3844 0.3200
70.9991 0.3500
71.3061 0.2200
71.5823 0.0600
72.0996 0.0600
77.1150 0.0100
77.4193 0.2200
77.6092 0.2300
77.8958 0.3000
78.1360 0.5600
78.5812 0.4900
78.7421 0.2700
79.2632 0.2000
79.7829 0.1800
79.8986 0.4700
80.3820 0.4800
80.6011 0.1900
80.8688 0.2000
87.7512 0.0200
87.9702 0.1700
88.3305 0.5700
88.9987 0.1900
89.5464 0.1200
}
{
}
"wrinkler"
{
}
"dilator"
{
}
"upper_raiser" combo
{
71.5669 0.0200
71.9685 0.1200
72.2302 0.1200
72.6927 0.0800
73.1066 0.0400
73.5082 0.1100
73.6360 0.2000
74.1107 0.2300
74.3176 0.0900
74.6219 0.0100
77.1880 0.0100
}
{
}
"corner_puller" combo
{
39.5069 0.0100
39.7077 0.2100
40.6997 0.2100
40.9626 0.0000
55.2718 0.0200
55.7221 0.1600
56.5498 0.2200
57.4383 0.2400
57.6513 0.3500
58.0043 0.3800
58.3207 0.1600
58.6554 0.1000
59.3249 0.1000
65.0777 0.0000
68.9178 0.0000
69.2281 0.1600
69.5750 0.3700
69.8671 0.3500
70.5061 0.3600
71.0198 0.3600
71.3122 0.2700
71.6137 0.0700
72.0823 0.0600
87.8972 0.0100
88.1262 0.1500
88.5429 0.5900
88.9014 0.2900
89.3882 0.1800
89.7168 0.2700
90.4493 0.2900
}
{
53.1357 0.5000
53.9694 0.4800
54.6145 0.5000
54.9918 0.6900
55.6917 0.7000
}
"corner_depressor" combo
{
}
{
}
"chin_raiser"
{
}
}
}
}
channel "Head Flex"
{
event flexanimation "Flex"
{
time -0.120002 96.580002
param ""
flexanimations samples_use_time
{
"head_rightleft" range 30.0 -30.0
{
6.3424 0.5000
7.0287 0.5000
7.1954 0.5000
7.3152 0.5400
7.4680 0.4700
7.7041 0.4900
8.7057 0.4900
9.3615 0.5000
12.4500 0.5200
13.5695 0.5100
13.9552 0.5900
14.1903 0.5900
14.9634 0.6000
15.3119 0.5700
15.6277 0.5500
15.7910 0.5600
17.0967 0.5600
17.3855 0.5500
17.5835 0.4600
17.7994 0.5500
18.2654 0.4900
18.7727 0.5000
20.0817 0.5400
20.7085 0.5300
21.2075 0.4600
21.8039 0.4500
22.5229 0.5000
23.2115 0.5100
24.2157 0.4900
32.1425 0.4900
33.1339 0.5000
33.2729 0.5100
33.3514 0.4600
33.5319 0.5000
34.9340 0.4700
35.1227 0.4900
39.2707 0.5000
39.5568 0.5000
39.7990 0.4900
39.9109 0.5200
40.0083 0.4600
40.1598 0.4900
40.3883 0.4800
40.8025 0.4800
47.2784 0.4900
47.6253 0.5000
47.8444 0.5200
48.2154 0.5000
48.5562 0.5000
53.6205 0.5000
54.0049 0.5000
54.1145 0.4800
54.2605 0.5200
54.4553 0.4900
54.5886 0.4900
63.5306 0.5000
63.8045 0.4900
63.9870 0.5200
64.1879 0.4700
64.3948 0.5000
64.6139 0.5000
64.9912 0.5000
69.6110 0.5200
69.8544 0.5100
70.1283 0.4300
70.6821 0.4300
71.1924 0.4800
71.7705 0.4900
73.6069 0.4600
73.9264 0.4100
74.2758 0.3900
74.9026 0.3700
75.2069 0.3700
75.4079 0.3700
75.6268 0.4600
76.2423 0.4800
76.6611 0.4800
77.1099 0.4500
77.5767 0.4900
78.3435 0.4900
85.1542 0.4900
85.5498 0.5000
86.6660 0.5000
}
"head_updown" range 15.0 -15.0
{
0.1428 0.5000
0.4511 0.4900
0.6380 0.4900
0.7481 0.5700
0.8377 0.6900
0.9726 0.6000
1.0966 0.6100
1.2787 0.6000
7.6436 0.5800
8.2729 0.6100
8.6441 0.5900
8.9058 0.4700
9.4657 0.4800
9.7639 0.5800
10.2065 0.5800
10.4980 0.5900
10.8884 0.7300
11.2128 0.7400
12.4647 0.7900
12.6966 0.7800
13.1785 0.5800
13.8992 0.5700
25.1358 0.5600
25.6287 0.5700
25.8660 0.5700
26.1034 0.7400
26.5555 0.8000
26.8841 0.7900
27.1214 0.6300
27.5900 0.6200
27.8779 0.7700
28.0830 0.6000
28.4603 0.5900
28.9228 0.5900
29.2514 0.7600
29.3792 0.7700
29.5618 0.6500
29.8600 0.6400
30.6773 0.6500
31.4362 0.7300
31.6431 0.7600
31.7527 0.6700
32.1178 0.6200
32.5499 0.6000
34.0165 0.5700
34.6920 0.5500
34.9050 0.7100
35.3249 0.7200
35.5927 0.7200
35.7769 0.5400
36.0552 0.4900
36.3108 0.6200
36.7246 0.6200
36.8950 0.5700
37.1141 0.5600
37.2967 0.6100
37.4610 0.5500
37.8806 0.4900
38.2396 0.4800
38.5500 0.6400
39.0368 0.6600
39.6880 0.6800
39.9248 0.5700
40.4542 0.5600
41.3893 0.5500
41.7727 0.5200
42.0100 0.4300
42.4786 0.4100
43.1907 0.4000
43.5436 0.3900
43.7566 0.5900
44.3104 0.5800
44.6634 0.6500
45.0519 0.6900
45.2223 0.5100
45.7152 0.5100
45.9586 0.4900
46.2021 0.5700
46.6707 0.5900
46.8818 0.5100
47.3687 0.5200
48.9520 0.5300
49.1893 0.5200
49.3475 0.6100
49.7857 0.6100
54.9054 0.6100
55.1914 0.6000
55.3800 0.6900
55.8004 0.6900
55.9431 0.6900
56.0584 0.6500
56.1555 0.7000
56.2752 0.6400
56.3779 0.6600
56.5117 0.6600
56.6243 0.6000
56.9104 0.6100
57.3607 0.6600
57.7076 0.6800
57.8165 0.6800
57.9192 0.6000
58.1443 0.6000
58.5247 0.6000
58.8091 0.7400
59.1803 0.7800
59.3811 0.7100
59.6185 0.7100
60.1765 0.7500
60.3392 0.5600
60.4522 0.5200
60.6191 0.5600
60.9634 0.5800
61.1483 0.5800
61.3627 0.5900
61.6066 0.7000
62.0995 0.7000
62.5859 0.7100
62.7928 0.6200
63.1413 0.6200
63.4537 0.7200
63.7702 0.7300
63.9846 0.5900
64.2706 0.5800
64.5043 0.6000
64.8469 0.6100
65.1007 0.6200
65.3502 0.7500
65.8006 0.7500
66.0475 0.7500
66.2301 0.5900
66.6926 0.6000
70.5177 0.6300
71.1324 0.6400
71.3393 0.5100
71.8870 0.5100
72.9032 0.5100
73.2440 0.6000
73.8708 0.5900
74.0412 0.4400
74.4733 0.4200
74.7715 0.4200
75.1488 0.5000
75.4105 0.5300
75.6235 0.4500
76.1347 0.4500
82.2297 0.4600
82.5705 0.4800
82.6940 0.5600
83.2732 0.5700
83.6817 0.5600
84.4207 0.5300
84.6274 0.6200
84.8317 0.6500
84.9717 0.5900
85.1725 0.6100
85.5236 0.6200
85.7082 0.6100
86.3835 0.6000
}
"head_tilt" range 15.0 -15.0
{
12.4292 0.4900
13.5950 0.4800
13.9871 0.4100
14.2049 0.4100
14.9579 0.3900
15.3010 0.4000
15.6549 0.4800
15.8673 0.4900
16.4717 0.4900
20.0817 0.5000
20.6476 0.5000
21.1588 0.5400
21.8587 0.5200
22.4855 0.5100
41.3710 0.5000
41.7666 0.5000
41.9918 0.4200
42.4604 0.4200
47.2175 0.4200
47.6679 0.4300
47.8748 0.4900
48.1917 0.4500
48.6233 0.4600
53.4996 0.5100
54.1568 0.5100
60.5963 0.5000
61.4179 0.5100
61.6248 0.4900
62.0691 0.4900
70.2682 0.5000
73.5194 0.5200
73.8708 0.5100
74.0755 0.5700
74.5343 0.5700
74.8040 0.5800
75.2239 0.5700
75.4166 0.5100
75.8730 0.5000
80.4841 0.4700
81.2919 0.4900
81.6388 0.4900
81.9568 0.4500
82.3402 0.4400
82.7115 0.4400
82.9427 0.5200
83.3322 0.5300
83.6815 0.4900
84.5700 0.4900
85.0630 0.5000
85.5315 0.5100
85.7202 0.5100
86.3410 0.5200
}
"body_rightleft" range 30.0 -30.0
{
}
"chest_rightleft" range 30.0 -30.0
{
}
"head_forwardback" range 0.2 -0.2
{
8.2549 0.5000
8.7205 0.5100
8.9744 0.4600
9.5851 0.4400
9.8579 0.4700
10.1231 0.5000
10.3711 0.5000
10.5686 0.4900
10.7614 0.6400
10.9777 0.7400
11.2389 0.7500
11.4552 0.6900
11.7374 0.5500
12.3816 0.4900
13.4322 0.4800
21.2215 0.4900
21.8849 0.4800
22.5421 0.4100
23.2054 0.4100
23.9967 0.4100
24.4532 0.4000
24.7940 0.4900
25.2200 0.4800
26.5433 0.4700
26.8719 0.4600
27.1519 0.3200
27.6083 0.3000
30.8950 0.3100
31.4123 0.3300
31.6070 0.4800
32.3190 0.4900
32.9398 0.4800
33.1710 0.3500
33.6883 0.3500
34.5946 0.3700
34.9172 0.4900
35.4101 0.5000
35.5927 0.5100
35.7371 0.3800
36.0309 0.3300
36.2379 0.4500
37.3024 0.4900
37.9718 0.5000
38.9699 0.5100
39.6750 0.5100
39.9923 0.3200
40.4365 0.3200
41.3650 0.3500
41.7970 0.3600
42.0100 0.4700
42.4847 0.4800
52.4041 0.5000
53.2379 0.5000
59.5819 0.5000
60.0688 0.5000
60.3061 0.2800
60.6378 0.2700
61.0364 0.5000
61.3692 0.5100
61.5957 0.3100
62.0137 0.3100
62.6543 0.3100
62.9707 0.3200
63.2385 0.4900
63.6219 0.4800
63.9749 0.3400
64.3217 0.3600
64.8243 0.3900
65.0920 0.3700
65.3050 0.5300
65.7919 0.5800
66.0597 0.5700
66.2666 0.3900
66.7352 0.3600
67.5537 0.4100
67.7485 0.4800
68.3327 0.5000
69.9333 0.4700
70.6453 0.4700
82.7200 0.4900
83.4442 0.4900
83.6754 0.7600
84.2292 0.7600
85.0690 0.7500
85.5437 0.7000
85.7263 0.5400
86.4322 0.5100
87.2563 0.5100
}
"gesture_updown" range -1.0 1.0
{
}
"gesture_rightleft" range -1.0 1.0
{
}
}
}
}
channel "Gestures"
{
event gesture "NULL"
{
time 0.000000 0.400000
param "null"
}
event gesture "acct"
{
time 6.011112 15.011276
param "B_gesture01"
event_ramp
{
0.1320 0.1394
0.5620 0.3772
1.1540 0.5344
1.7700 0.3066
2.0420 0.1549
}
absolutetags playback_time
{
"apex" 0.093332
"accent" 0.130887
"loop" 0.225557
"end" 0.855614
}
absolutetags shifted_time
{
"apex" 0.227273
"accent" 0.386364
"loop" 0.568182
"end" 0.681818
}
sequenceduration 2.966667
}
event gesture "NULL"
{
time 5.444444 5.944444
param "null"
}
event gesture "acct"
{
time 0.711111 4.898391
param "b_bg_dwnheadtiltrt"
event_ramp
{
0.0560 0.1464
0.7640 0.3520
1.6760 0.3085
}
absolutetags playback_time
{
"apex" 0.072699
"extreme" 0.165262
"loop" 0.259834
"end" 0.773825
}
absolutetags shifted_time
{
"apex" 0.132353
"extreme" 0.235294
"loop" 0.514706
"end" 0.588235
}
sequenceduration 2.300000
}
event gesture "acct"
{
time 3.333333 5.888889
param "B_hg_tiltroll"
event_ramp
{
0.0300 0.1707
1.0100 0.4553
1.8840 0.2073
}
absolutetags playback_time
{
"apex" 0.241826
"extreme" 0.399130
"accent" 0.509478
"loop" 0.586957
"end" 0.665217
}
absolutetags shifted_time
{
"apex" 0.147727
"extreme" 0.272727
"accent" 0.481928
"loop" 0.511364
"end" 0.568182
}
sequenceduration 2.966667
}
event gesture "acct"
{
time 13.177778 15.688890
param "B_bg_acctup"
event_ramp
{
0.0300 0.2724
1.0080 0.4837
1.9240 0.3008
}
absolutetags playback_time
{
"apex" 0.212655
"extreme" 0.373540
"loop" 0.561504
"end" 0.769380
}
absolutetags shifted_time
{
"apex" 0.117647
"extreme" 0.294118
"loop" 0.514706
"end" 0.588235
}
sequenceduration 2.300000
}
event gesture "NULL"
{
time 15.777778 16.277779
param "null"
}
event gesture "acct"
{
time 17.288889 20.126621
param "B_bg_leanfwd_chinout"
event_ramp
{
0.0160 0.3455
0.6520 0.5976
1.5620 0.3902
}
absolutetags playback_time
{
"apex" 0.107541
"extreme" 0.309402
"loop" 0.477960
"end" 0.820765
}
absolutetags shifted_time
{
"apex" 0.155172
"extreme" 0.413793
"loop" 0.689655
"end" 0.741379
}
sequenceduration 1.966667
}
event gesture "acct"
{
time 19.300001 24.555656
param "B_bg_leanfwd_chinout"
event_ramp
{
0.0940 0.1016
0.5623 0.3618
1.3514 0.2439
1.8800 0.1911
}
absolutetags playback_time
{
"apex" 0.060506
"extreme" 0.121393
"loop" 0.246972
"end" 0.547058
}
absolutetags shifted_time
{
"apex" 0.155172
"extreme" 0.413793
"loop" 0.689655
"end" 0.741379
}
sequenceduration 1.966667
}
event gesture "acct"
{
time 21.701149 25.338335
param "B_g_upshrug"
event_ramp
{
0.1000 0.2439
1.0771 0.5000
2.6114 0.3049
}
absolutetags playback_time
{
"apex" 0.130321
"accent" 0.244600
"loop" 0.510057
"end" 0.803956
}
absolutetags shifted_time
{
"apex" 0.216867
"accent" 0.481928
"loop" 0.602410
"end" 0.662651
}
sequenceduration 2.800000
}
event gesture "acct"
{
time 24.425287 27.409769
param "B_hg_hshake"
event_ramp
{
0.0385 0.0935
0.8057 0.2927
1.2808 0.2642
}
absolutetags playback_time
{
"apex" 0.067013
"extreme" 0.166378
"loop" 0.266898
"end" 0.722319
}
absolutetags shifted_time
{
"apex" 0.147727
"extreme" 0.454545
"loop" 0.625000
"end" 0.681818
}
sequenceduration 2.966667
}
event gesture "acct"
{
time 26.275862 28.920691
param "B_bg_leanfwd_chinout"
event_ramp
{
0.0914 0.2114
0.9257 0.4634
1.8886 0.2642
}
absolutetags playback_time
{
"apex" 0.115385
"extreme" 0.307692
"loop" 0.512820
"end" 0.551282
}
absolutetags shifted_time
{
"apex" 0.155172
"extreme" 0.413793
"loop" 0.689655
"end" 0.741379
}
sequenceduration 1.966667
}
event gesture "NULL"
{
time 29.160919 29.660919
param "null"
}
event gesture "acct"
{
time 30.011496 32.311497
param "b_bg_dwnheadtiltleft"
event_ramp
{
0.1971 0.2236
0.8914 0.3496
1.5657 0.2276
}
absolutetags playback_time
{
"apex" 0.047976
"extreme" 0.197901
"loop" 0.584707
"end" 0.902548
}
absolutetags shifted_time
{
"apex" 0.132353
"extreme" 0.235294
"loop" 0.514706
"end" 0.588235
}
sequenceduration 2.300000
}
event gesture "NULL"
{
time 32.896553 33.396553
param "null"
}
event gesture "acct"
{
time 34.034485 36.001152
param "B_bg_leanbk_chindwn"
absolutetags playback_time
{
"apex" 0.187610
"extreme" 0.380479
"loop" 0.599649
"end" 0.748685
}
absolutetags shifted_time
{
"apex" 0.137931
"extreme" 0.258621
"loop" 0.431034
"end" 0.517241
}
sequenceduration 1.966667
}
event gesture "NULL"
{
time 36.448277 36.948277
param "null"
}
event gesture "acct"
{
time 37.574715 40.374714
param "B_g_shrug"
absolutetags playback_time
{
"apex" 0.216867
"accent" 0.481928
"loop" 0.602410
"end" 0.662651
}
absolutetags shifted_time
{
"apex" 0.216867
"accent" 0.481928
"loop" 0.602410
"end" 0.662651
}
sequenceduration 2.800000
}
event gesture "NULL"
{
time 40.413795 40.913795
param "null"
}
event gesture "acct"
{
time 41.011494 43.811493
param "B_g_shrug"
event_ramp
{
0.0429 0.0569
0.8143 0.4187
1.6743 0.3537
2.5686 0.1098
}
absolutetags playback_time
{
"apex" 0.190887
"accent" 0.332512
"loop" 0.567734
"end" 0.662651
}
absolutetags shifted_time
{
"apex" 0.216867
"accent" 0.481928
"loop" 0.602410
"end" 0.662651
}
sequenceduration 2.800000
}
event gesture "NULL"
{
time 47.666668 48.166668
param "null"
}
event gesture "acct"
{
time 50.057472 54.297707
param "b_bg_dwnheadstrt"
event_ramp
{
0.0543 0.1382
0.5886 0.3618
1.6457 0.2683
}
absolutetags playback_time
{
"apex" 0.031716
"extreme" 0.115478
"loop" 0.230957
"end" 0.804012
}
absolutetags shifted_time
{
"apex" 0.132353
"extreme" 0.235294
"loop" 0.500000
"end" 0.588235
}
sequenceduration 2.300000
}
event gesture "acct"
{
time 52.701153 55.368969
param "B_bg_leanfwd_chinout"
event_ramp
{
0.0486 0.1098
0.8429 0.3171
2.2440 0.2154
}
absolutetags playback_time
{
"apex" 0.286945
"extreme" 0.515726
"loop" 0.674709
"end" 0.860836
}
absolutetags shifted_time
{
"apex" 0.155172
"extreme" 0.413793
"loop" 0.689655
"end" 0.741379
}
sequenceduration 1.966667
}
event gesture "NULL"
{
time 56.517242 57.017242
param "null"
}
event gesture "acct"
{
time 58.367817 62.805752
param "B_gesture01"
event_ramp
{
0.1886 0.3862
1.1000 0.5366
1.8857 0.3374
}
absolutetags playback_time
{
"apex" 0.109557
"extreme" 0.162393
"accent" 0.244079
"loop" 0.254079
"end" 0.650350
}
absolutetags shifted_time
{
"apex" 0.227273
"extreme" 0.294118
"accent" 0.386364
"loop" 0.568182
"end" 0.681818
}
sequenceduration 2.966667
}
event gesture "acct"
{
time 61.022991 62.822990
param "b_bg_dwnheadtiltleft"
event_ramp
{
0.0743 0.2276
0.7057 0.4187
1.3800 0.2642
}
absolutetags playback_time
{
"apex" 0.128353
"extreme" 0.283019
"loop" 0.469349
"end" 0.647510
}
absolutetags shifted_time
{
"apex" 0.132353
"extreme" 0.235294
"loop" 0.514706
"end" 0.588235
}
sequenceduration 2.300000
}
event gesture "NULL"
{
time 67.149429 67.649429
param "null"
}
event gesture "acct"
{
time 67.942520 69.909187
param "B_bg_leanfwd_chinout"
event_ramp
{
0.1229 0.2317
1.0200 0.5081
1.7943 0.1504
}
absolutetags playback_time
{
"apex" 0.155172
"extreme" 0.413793
"loop" 0.689655
"end" 0.741379
}
absolutetags shifted_time
{
"apex" 0.155172
"extreme" 0.413793
"loop" 0.689655
"end" 0.741379
}
sequenceduration 1.966667
}
event gesture "NULL"
{
time 70.068970 70.568970
param "null"
}
event gesture "acct"
{
time 71.770119 74.736786
param "B_hg_tiltrollup"
event_ramp
{
0.2343 0.2602
1.4171 0.3902
2.3971 0.2602
}
absolutetags playback_time
{
"apex" 0.147727
"extreme" 0.272727
"loop" 0.511364
"end" 0.568182
}
absolutetags shifted_time
{
"apex" 0.147727
"extreme" 0.272727
"loop" 0.511364
"end" 0.568182
}
sequenceduration 2.966667
}
event gesture "NULL"
{
time 74.793106 75.293106
param "null"
}
event gesture "acct"
{
time 76.011497 77.624138
param "B_gesture01"
event_ramp
{
0.1171 0.2724
0.6200 0.4228
1.1086 0.3252
}
absolutetags playback_time
{
"apex" 0.290806
"accent" 0.471183
"extreme" 0.504634
"loop" 0.754784
"end" 0.764789
}
absolutetags shifted_time
{
"apex" 0.227273
"accent" 0.386364
"extreme" 0.413793
"loop" 0.568182
"end" 0.681818
}
sequenceduration 2.966667
}
event gesture "acct"
{
time 77.172409 80.234489
param "B_bg_leanfwd_chinout"
event_ramp
{
0.0629 0.2561
1.1229 0.5894
2.3314 0.2967
}
absolutetags playback_time
{
"apex" 0.023649
"extreme" 0.129504
"loop" 0.400899
"end" 0.803677
}
absolutetags shifted_time
{
"apex" 0.155172
"extreme" 0.413793
"loop" 0.689655
"end" 0.741379
}
sequenceduration 1.966667
}
event gesture "acct"
{
time 79.057472 81.622993
param "B_bg_leanfwd_chinout"
event_ramp
{
0.0743 0.2683
0.8514 0.6423
1.6743 0.2805
}
absolutetags playback_time
{
"apex" 0.224462
"extreme" 0.372311
"loop" 0.528673
"end" 0.941755
}
absolutetags shifted_time
{
"apex" 0.155172
"extreme" 0.413793
"loop" 0.689655
"end" 0.741379
}
sequenceduration 1.966667
}
event gesture "acct"
{
time 80.804596 83.109200
param "B_bg_leanfwd_chinout"
event_ramp
{
0.0343 0.0854
0.5514 0.3049
1.3800 0.2398
}
absolutetags playback_time
{
"apex" 0.290274
"extreme" 0.371071
"loop" 0.477306
"end" 0.740649
}
absolutetags shifted_time
{
"apex" 0.155172
"extreme" 0.413793
"loop" 0.689655
"end" 0.741379
}
sequenceduration 1.966667
}
event gesture "acct"
{
time 82.390808 83.748283
param "B_bg_leanfwd_chinout"
event_ramp
{
0.0514 0.0407
0.3800 0.3171
1.0171 0.2602
}
absolutetags playback_time
{
"apex" 0.088907
"extreme" 0.259102
"loop" 0.594410
"end" 0.751903
}
absolutetags shifted_time
{
"apex" 0.155172
"extreme" 0.413793
"loop" 0.689655
"end" 0.741379
}
sequenceduration 1.966667
}
event gesture "NULL"
{
time 83.781616 84.235641
param "null"
}
event gesture "acct"
{
time 84.275864 89.245911
param "b_bg_dwnheadtiltrt"
event_ramp
{
0.1229 0.1341
0.9429 0.3089
2.1907 0.2114
}
absolutetags playback_time
{
"apex" 0.061249
"extreme" 0.108888
"loop" 0.238192
"end" 0.735441
}
absolutetags shifted_time
{
"apex" 0.132353
"extreme" 0.235294
"loop" 0.514706
"end" 0.588235
}
sequenceduration 2.300000
}
event gesture "acct"
{
time 87.310349 90.110352
param "B_gesture01"
event_ramp
{
0.0114 0.2276
0.7743 0.4797
2.1400 0.2480
}
absolutetags playback_time
{
"apex" 0.221675
"accent" 0.337438
"loop" 0.602410
"end" 0.662651
}
absolutetags shifted_time
{
"apex" 0.227273
"accent" 0.386364
"loop" 0.568182
"end" 0.681818
}
sequenceduration 2.966667
}
}
faceposermodel "U:\HL2\hl2\models\breen.mdl"
}
scalesettings
{
"CChoreoView" "8"
"SceneRampTool" "100"
"ExpressionTool" "34"
"GestureTool" "58"
"RampTool" "70"
}
fps 60
snap off
|