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
|
fileFormatVersion: 2
guid: 163c4a91f8597be44b4438b9d55275e0
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: //RootNode
100002: Ankle_L
100004: Ankle_R
100006: Brow
100008: catearL1
100010: catearL2
100012: catearR1
100014: catearR2
100016: cheek
100018: Chest_L
100020: Chest_M
100022: Chest_R
100024: Cup_L
100026: Cup_R
100028: Elbow_L
100030: Elbow_R
100032: Eye
100034: Eye1_L
100036: Eye1_R
100038: Eye_base
100040: EyeEnd_L
100042: EyeEnd_R
100044: Face_A
100046: FaceB
100048: Hair_Root
100050: Head_M
100052: HeadEnd_M
100054: Hip_L
100056: Hip_R
100058: IndexFinger1_L
100060: IndexFinger1_R
100062: IndexFinger2_L
100064: IndexFinger2_R
100066: IndexFinger3_L
100068: IndexFinger3_R
100070: IndexFinger4_L
100072: IndexFinger4_R
100074: Jaw_M
100076: JawEnd_M
100078: joint10
100080: joint11
100082: joint12
100084: joint13
100086: joint14
100088: joint15
100090: joint16
100092: joint17
100094: joint18
100096: joint2
100098: joint21
100100: joint22
100102: joint23
100104: joint24
100106: joint25
100108: joint26
100110: joint27
100112: joint28
100114: joint29
100116: joint3
100118: joint30
100120: joint31
100122: joint32
100124: joint33
100126: joint34
100128: joint35
100130: joint36
100132: joint37
100134: joint38
100136: joint39
100138: joint4
100140: joint40
100142: joint41
100144: joint42
100146: joint43
100148: joint44
100150: joint45
100152: joint46
100154: joint47
100156: joint5
100158: joint6
100160: joint7
100162: joint8
100164: joint9
100166: Knee_L
100168: Knee_R
100170: Lash
100172: MiddleFinger1_L
100174: MiddleFinger1_R
100176: MiddleFinger2_L
100178: MiddleFinger2_R
100180: MiddleFinger3_L
100182: MiddleFinger3_R
100184: MiddleFinger4_L
100186: MiddleFinger4_R
100188: Neck_M
100190: nurbsCircle1
100192: nurbsCircle10
100194: nurbsCircle12
100196: nurbsCircle13
100198: nurbsCircle14
100200: nurbsCircle15
100202: nurbsCircle16
100204: nurbsCircle17
100206: nurbsCircle2
100208: nurbsCircle20
100210: nurbsCircle21
100212: nurbsCircle22
100214: nurbsCircle23
100216: nurbsCircle24
100218: nurbsCircle25
100220: nurbsCircle26
100222: nurbsCircle27
100224: nurbsCircle28
100226: nurbsCircle29
100228: nurbsCircle3
100230: nurbsCircle4
100232: nurbsCircle5
100234: nurbsCircle6
100236: nurbsCircle8
100238: nurbsCircle9
100240: PinkyFinger1_L
100242: PinkyFinger1_R
100244: PinkyFinger2_L
100246: PinkyFinger2_R
100248: PinkyFinger3_L
100250: PinkyFinger3_R
100252: PinkyFinger4_L
100254: PinkyFinger4_R
100256: RingFinger1_L
100258: RingFinger1_R
100260: RingFinger2_L
100262: RingFinger2_R
100264: RingFinger3_L
100266: RingFinger3_R
100268: RingFinger4_L
100270: RingFinger4_R
100272: Root_catear
100274: Root_M
100276: RootPart1_M
100278: Scapula_L
100280: Scapula_R
100282: Shoulder_L
100284: Shoulder_R
100286: Skirt_La
100288: Skirt_Ra
100290: SkirtLb
100292: SkirtLc
100294: SkirtRb
100296: SkirtRc
100298: Spine1_M
100300: ThumbFinger1_L
100302: ThumbFinger1_R
100304: ThumbFinger2_L
100306: ThumbFinger2_R
100308: ThumbFinger3_L
100310: ThumbFinger3_R
100312: ThumbFinger4_L
100314: ThumbFinger4_R
100316: Toes_L
100318: Toes_R
100320: ToesEnd_L
100322: ToesEnd_R
100324: Wrist_L
100326: Wrist_R
400000: //RootNode
400002: Ankle_L
400004: Ankle_R
400006: Brow
400008: catearL1
400010: catearL2
400012: catearR1
400014: catearR2
400016: cheek
400018: Chest_L
400020: Chest_M
400022: Chest_R
400024: Cup_L
400026: Cup_R
400028: Elbow_L
400030: Elbow_R
400032: Eye
400034: Eye1_L
400036: Eye1_R
400038: Eye_base
400040: EyeEnd_L
400042: EyeEnd_R
400044: Face_A
400046: FaceB
400048: Hair_Root
400050: Head_M
400052: HeadEnd_M
400054: Hip_L
400056: Hip_R
400058: IndexFinger1_L
400060: IndexFinger1_R
400062: IndexFinger2_L
400064: IndexFinger2_R
400066: IndexFinger3_L
400068: IndexFinger3_R
400070: IndexFinger4_L
400072: IndexFinger4_R
400074: Jaw_M
400076: JawEnd_M
400078: joint10
400080: joint11
400082: joint12
400084: joint13
400086: joint14
400088: joint15
400090: joint16
400092: joint17
400094: joint18
400096: joint2
400098: joint21
400100: joint22
400102: joint23
400104: joint24
400106: joint25
400108: joint26
400110: joint27
400112: joint28
400114: joint29
400116: joint3
400118: joint30
400120: joint31
400122: joint32
400124: joint33
400126: joint34
400128: joint35
400130: joint36
400132: joint37
400134: joint38
400136: joint39
400138: joint4
400140: joint40
400142: joint41
400144: joint42
400146: joint43
400148: joint44
400150: joint45
400152: joint46
400154: joint47
400156: joint5
400158: joint6
400160: joint7
400162: joint8
400164: joint9
400166: Knee_L
400168: Knee_R
400170: Lash
400172: MiddleFinger1_L
400174: MiddleFinger1_R
400176: MiddleFinger2_L
400178: MiddleFinger2_R
400180: MiddleFinger3_L
400182: MiddleFinger3_R
400184: MiddleFinger4_L
400186: MiddleFinger4_R
400188: Neck_M
400190: nurbsCircle1
400192: nurbsCircle10
400194: nurbsCircle12
400196: nurbsCircle13
400198: nurbsCircle14
400200: nurbsCircle15
400202: nurbsCircle16
400204: nurbsCircle17
400206: nurbsCircle2
400208: nurbsCircle20
400210: nurbsCircle21
400212: nurbsCircle22
400214: nurbsCircle23
400216: nurbsCircle24
400218: nurbsCircle25
400220: nurbsCircle26
400222: nurbsCircle27
400224: nurbsCircle28
400226: nurbsCircle29
400228: nurbsCircle3
400230: nurbsCircle4
400232: nurbsCircle5
400234: nurbsCircle6
400236: nurbsCircle8
400238: nurbsCircle9
400240: PinkyFinger1_L
400242: PinkyFinger1_R
400244: PinkyFinger2_L
400246: PinkyFinger2_R
400248: PinkyFinger3_L
400250: PinkyFinger3_R
400252: PinkyFinger4_L
400254: PinkyFinger4_R
400256: RingFinger1_L
400258: RingFinger1_R
400260: RingFinger2_L
400262: RingFinger2_R
400264: RingFinger3_L
400266: RingFinger3_R
400268: RingFinger4_L
400270: RingFinger4_R
400272: Root_catear
400274: Root_M
400276: RootPart1_M
400278: Scapula_L
400280: Scapula_R
400282: Shoulder_L
400284: Shoulder_R
400286: Skirt_La
400288: Skirt_Ra
400290: SkirtLb
400292: SkirtLc
400294: SkirtRb
400296: SkirtRc
400298: Spine1_M
400300: ThumbFinger1_L
400302: ThumbFinger1_R
400304: ThumbFinger2_L
400306: ThumbFinger2_R
400308: ThumbFinger3_L
400310: ThumbFinger3_R
400312: ThumbFinger4_L
400314: ThumbFinger4_R
400316: Toes_L
400318: Toes_R
400320: ToesEnd_L
400322: ToesEnd_R
400324: Wrist_L
400326: Wrist_R
2300000: Brow
2300002: cheek
2300004: Eye
2300006: Eye_base
2300008: Face_A
2300010: FaceB
2300012: Lash
3300000: Brow
3300002: cheek
3300004: Eye
3300006: Eye_base
3300008: Face_A
3300010: FaceB
3300012: Lash
4300000: Brow
4300002: cheek
4300004: Eye
4300006: Eye_base
4300008: Face_A
4300010: FaceB
4300012: Lash
7400000: Rei
9500000: //RootNode
2186277476908879412: ImportLogs
externalObjects: {}
materials:
importMaterials: 0
materialName: 0
materialSearch: 1
materialLocation: 0
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings: "\nClip 'Anim@Rei' has import animation warnings that
might lower retargeting quality:\nNote: Activate translation DOF on avatar to
improve retargeting quality.\n\t'RootPart1_M' is inbetween humanoid transforms
and has rotation animation that will be discarded.\n"
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 3
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations:
- serializedVersion: 16
name: Rei
takeName: Anim@Rei
firstFrame: 121
lastFrame: 180
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 1
loopBlend: 1
loopBlendOrientation: 1
loopBlendPositionY: 1
loopBlendPositionXZ: 1
keepOriginalOrientation: 1
keepOriginalPositionY: 1
keepOriginalPositionXZ: 1
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask:
- path:
weight: 1
- path: Group
weight: 1
- path: Group/Main
weight: 1
- path: Group/Main/MotionSystem
weight: 1
- path: Group/Main/MotionSystem/FKIKSystem
weight: 1
- path: Group/Main/MotionSystem/FKIKSystem/FKIKParentConstraintSpine_M
weight: 1
- path: Group/Main/MotionSystem/FKIKSystem/FKIKParentConstraintSpine_M/FKIKSpine_M
weight: 1
- path: Group/Main/MotionSystem/FKSystem
weight: 1
- path: Group/Main/MotionSystem/FKSystem/FKOffsetRoot_M
weight: 1
- path: Group/Main/MotionSystem/FKSystem/FKOffsetRoot_M/FKExtraRoot_M
weight: 1
- path: Group/Main/MotionSystem/FKSystem/FKOffsetRoot_M/FKExtraRoot_M/FKXRoot_M
weight: 1
- path: Group/Main/MotionSystem/FKSystem/FKOffsetRoot_M/FKExtraRoot_M/HipSwingerStabilizer
weight: 1
- path: Group/Main/MotionSystem/FKSystem/FKOffsetRoot_M/FKExtraRoot_M/HipSwingerStabilizer/FKRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine1_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine1_M/IKExtraSpine1_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine1_M/IKExtraSpine1_M/IKSpine1_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine2_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine2_M/IKExtraSpine2_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKRootConstraint/IKOffsetSpine2_M/IKExtraSpine2_M/IKSpine2_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKHandle/IKScalerRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKParentConstraintRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKParentConstraintRoot_M/IKXOffsetRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKParentConstraintRoot_M/IKXOffsetRoot_M/IKXRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKSpSpineOffset_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKSpSpineOffset_M/IKSpRoot_M
weight: 1
- path: Group/Main/MotionSystem/IKSystem/IKJoints/IKSpSpineOffset_M/IKSpRoot_M/IKSpRootFollowOffset_M
weight: 1
- path: Root_M
weight: 1
- path: Root_M/Hip_L
weight: 1
- path: Root_M/Hip_L/Knee_L
weight: 1
- path: Root_M/Hip_L/Knee_L/Ankle_L
weight: 1
- path: Root_M/Hip_L/Knee_L/Ankle_L/Toes_L
weight: 1
- path: Root_M/Hip_L/Knee_L/Ankle_L/Toes_L/ToesEnd_L
weight: 1
- path: Root_M/Hip_R
weight: 1
- path: Root_M/Hip_R/Knee_R
weight: 1
- path: Root_M/Hip_R/Knee_R/Ankle_R
weight: 1
- path: Root_M/Hip_R/Knee_R/Ankle_R/Toes_R
weight: 1
- path: Root_M/Hip_R/Knee_R/Ankle_R/Toes_R/ToesEnd_R
weight: 1
- path: Root_M/RootPart1_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Chest_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Chest_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Brow
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/cheek
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye1_L/EyeEnd_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye1_R/EyeEnd_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Eye_base
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Face_A
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/FaceB
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/FaceB/Lash
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2/joint3
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2/joint3/joint4
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2/joint3/joint4/joint5
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2/joint3/joint4/joint5/joint6
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint2/joint3/joint4/joint5/joint6/joint7
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint8
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint8/joint9
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint8/joint9/joint10
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint8/joint9/joint10/joint11
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint8/joint9/joint10/joint11/joint12
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint13
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint13/joint14
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint13/joint14/joint15
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint13/joint14/joint15/joint16
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint17
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint17/joint18
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint17/joint18/joint28
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint17/joint18/joint28/joint29
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint17/joint18/joint28/joint29/joint30
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint21
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint21/joint22
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint21/joint22/joint23
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint24
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint24/joint25
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint24/joint25/joint26
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint24/joint25/joint26/joint27
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint31
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint31/joint32
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint31/joint32/joint33
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint31/joint32/joint33/joint34
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint31/joint32/joint33/joint34/joint35
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint36
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint36/joint37
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint36/joint37/joint38
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint36/joint37/joint38/joint39
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint40
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint40/joint41
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint40/joint41/joint42
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint40/joint41/joint42/joint43
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint40/joint41/joint42/joint43/joint44
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint45
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint45/joint46
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/HeadEnd_M/Hair_Root/joint45/joint46/joint47
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Jaw_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Neck_M/Head_M/Jaw_M/JawEnd_M
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/PinkyFinger1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/PinkyFinger1_L/PinkyFinger2_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/PinkyFinger1_L/PinkyFinger2_L/PinkyFinger3_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/PinkyFinger1_L/PinkyFinger2_L/PinkyFinger3_L/PinkyFinger4_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/RingFinger1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/RingFinger1_L/RingFinger2_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/RingFinger1_L/RingFinger2_L/RingFinger3_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/Cup_L/RingFinger1_L/RingFinger2_L/RingFinger3_L/RingFinger4_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/IndexFinger1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/IndexFinger1_L/IndexFinger2_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/IndexFinger1_L/IndexFinger2_L/IndexFinger3_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/IndexFinger1_L/IndexFinger2_L/IndexFinger3_L/IndexFinger4_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/MiddleFinger1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/MiddleFinger1_L/MiddleFinger2_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/MiddleFinger1_L/MiddleFinger2_L/MiddleFinger3_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/MiddleFinger1_L/MiddleFinger2_L/MiddleFinger3_L/MiddleFinger4_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/ThumbFinger1_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/ThumbFinger1_L/ThumbFinger2_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/ThumbFinger1_L/ThumbFinger2_L/ThumbFinger3_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_L/Shoulder_L/Elbow_L/Wrist_L/ThumbFinger1_L/ThumbFinger2_L/ThumbFinger3_L/ThumbFinger4_L
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/PinkyFinger1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/PinkyFinger1_R/PinkyFinger2_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/PinkyFinger1_R/PinkyFinger2_R/PinkyFinger3_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/PinkyFinger1_R/PinkyFinger2_R/PinkyFinger3_R/PinkyFinger4_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/RingFinger1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/RingFinger1_R/RingFinger2_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/RingFinger1_R/RingFinger2_R/RingFinger3_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/Cup_R/RingFinger1_R/RingFinger2_R/RingFinger3_R/RingFinger4_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/IndexFinger1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/IndexFinger1_R/IndexFinger2_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/IndexFinger1_R/IndexFinger2_R/IndexFinger3_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/IndexFinger1_R/IndexFinger2_R/IndexFinger3_R/IndexFinger4_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/MiddleFinger1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/MiddleFinger1_R/MiddleFinger2_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/MiddleFinger1_R/MiddleFinger2_R/MiddleFinger3_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/MiddleFinger1_R/MiddleFinger2_R/MiddleFinger3_R/MiddleFinger4_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/ThumbFinger1_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/ThumbFinger1_R/ThumbFinger2_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/ThumbFinger1_R/ThumbFinger2_R/ThumbFinger3_R
weight: 1
- path: Root_M/RootPart1_M/Spine1_M/Chest_M/Scapula_R/Shoulder_R/Elbow_R/Wrist_R/ThumbFinger1_R/ThumbFinger2_R/ThumbFinger3_R/ThumbFinger4_R
weight: 1
- path: Root_M/Skirt_La
weight: 1
- path: Root_M/Skirt_Ra
weight: 1
- path: Root_M/SkirtLb
weight: 1
- path: Root_M/SkirtLc
weight: 1
- path: Root_M/SkirtRb
weight: 1
- path: Root_M/SkirtRc
weight: 1
maskType: 1
maskSource: {fileID: 101100000, guid: fb40a6d6e1dd07d4c93e8332d8cddbb7, type: 2}
additiveReferencePoseFrame: 120.96
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 13
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
importVisibility: 0
importBlendShapes: 1
importCameras: 0
importLights: 0
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
preserveHierarchy: 0
indexFormat: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
previousCalculatedGlobalScale: 0.13
hasPreviousCalculatedGlobalScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 0
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
importAnimation: 1
copyAvatar: 1
humanDescription:
serializedVersion: 2
human:
- boneName: Root_M
humanName: Hips
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Hip_L
humanName: LeftUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Hip_R
humanName: RightUpperLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Knee_L
humanName: LeftLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Knee_R
humanName: RightLowerLeg
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Ankle_L
humanName: LeftFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Ankle_R
humanName: RightFoot
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Spine1_M
humanName: Spine
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Chest_M
humanName: Chest
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Neck_M
humanName: Neck
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Head_M
humanName: Head
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Scapula_L
humanName: LeftShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Scapula_R
humanName: RightShoulder
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Shoulder_L
humanName: LeftUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Shoulder_R
humanName: RightUpperArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Elbow_L
humanName: LeftLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Elbow_R
humanName: RightLowerArm
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Wrist_L
humanName: LeftHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Wrist_R
humanName: RightHand
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Toes_L
humanName: LeftToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: Toes_R
humanName: RightToes
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: ThumbFinger1_L
humanName: Left Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: ThumbFinger2_L
humanName: Left Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: ThumbFinger3_L
humanName: Left Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger1_L
humanName: Left Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger2_L
humanName: Left Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger3_L
humanName: Left Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger1_L
humanName: Left Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger2_L
humanName: Left Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger3_L
humanName: Left Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger1_L
humanName: Left Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger2_L
humanName: Left Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger3_L
humanName: Left Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: PinkyFinger1_L
humanName: Left Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: PinkyFinger2_L
humanName: Left Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: PinkyFinger3_L
humanName: Left Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: ThumbFinger1_R
humanName: Right Thumb Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: ThumbFinger2_R
humanName: Right Thumb Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: ThumbFinger3_R
humanName: Right Thumb Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger1_R
humanName: Right Index Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger2_R
humanName: Right Index Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: IndexFinger3_R
humanName: Right Index Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger1_R
humanName: Right Middle Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger2_R
humanName: Right Middle Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: MiddleFinger3_R
humanName: Right Middle Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger1_R
humanName: Right Ring Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger2_R
humanName: Right Ring Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: RingFinger3_R
humanName: Right Ring Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: PinkyFinger1_R
humanName: Right Little Proximal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: PinkyFinger2_R
humanName: Right Little Intermediate
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
- boneName: PinkyFinger3_R
humanName: Right Little Distal
limit:
min: {x: 0, y: 0, z: 0}
max: {x: 0, y: 0, z: 0}
value: {x: 0, y: 0, z: 0}
length: 0
modified: 0
skeleton:
- name: AvatarA_v1.0(Clone)
parentName:
position: {x: 0, y: 0, z: 0}
rotation: {x: 0, y: 0, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Group
parentName: AvatarA_v1.0(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Main
parentName: Group
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: MotionSystem
parentName: Main
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: FKIKSystem
parentName: MotionSystem
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: FKIKParentConstraintSpine_M
parentName: FKIKSystem
position: {x: 9.7433525e-17, y: 0.8878011, z: -0.039552037}
rotation: {x: 0.57842696, y: -0.4067214, z: -0.57842696, w: 0.4067214}
scale: {x: 1, y: 1, z: 1}
- name: FKIKSpine_M
parentName: FKIKParentConstraintSpine_M
position: {x: -0.09199261, y: 5.7731595e-17, z: 0.17161858}
rotation: {x: 0.57842696, y: -0.4067214, z: -0.57842696, w: -0.4067214}
scale: {x: 1, y: 1, z: 1}
- name: FKSystem
parentName: MotionSystem
position: {x: -0, y: 0, z: -1.4432899e-17}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: FKOffsetRoot_M
parentName: FKSystem
position: {x: 9.7433525e-17, y: 0.8878011, z: -0.039552037}
rotation: {x: 0.57842696, y: -0.4067214, z: -0.57842696, w: 0.4067214}
scale: {x: 1, y: 1, z: 1}
- name: FKExtraRoot_M
parentName: FKOffsetRoot_M
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: FKXRoot_M
parentName: FKExtraRoot_M
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HipSwingerStabilizer
parentName: FKExtraRoot_M
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: FKRoot_M
parentName: HipSwingerStabilizer
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -2.7755576e-17, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKSystem
parentName: MotionSystem
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKHandle
parentName: IKSystem
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKRootConstraint
parentName: IKHandle
position: {x: -0, y: 0, z: -1.4432899e-17}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKOffsetSpine1_M
parentName: IKRootConstraint
position: {x: -1.7764046e-17, y: 0.8878011, z: -0.039552037}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKExtraSpine1_M
parentName: IKOffsetSpine1_M
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKSpine1_M
parentName: IKExtraSpine1_M
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKOffsetSpine2_M
parentName: IKRootConstraint
position: {x: -1.7462866e-17, y: 1.1721382, z: 0.013396618}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKExtraSpine2_M
parentName: IKOffsetSpine2_M
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKSpine2_M
parentName: IKExtraSpine2_M
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKScalerRoot_M
parentName: IKHandle
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKJoints
parentName: IKSystem
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKParentConstraintRoot_M
parentName: IKJoints
position: {x: -1.7764046e-17, y: 0.8878011, z: -0.039552037}
rotation: {x: -0.57842696, y: 0.4067214, z: 0.57842696, w: -0.4067214}
scale: {x: 1, y: 1, z: 1}
- name: IKXOffsetRoot_M
parentName: IKParentConstraintRoot_M
position: {x: -0, y: 0, z: 0}
rotation: {x: -2.4651903e-32, y: 1.2325952e-32, z: 0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKXRoot_M
parentName: IKXOffsetRoot_M
position: {x: -0, y: -5.7731595e-17, z: -2.0510383e-31}
rotation: {x: 0, y: -0, z: -9.7144515e-17, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKSpSpineOffset_M
parentName: IKJoints
position: {x: -1.7764046e-17, y: 0.8878011, z: -0.039552037}
rotation: {x: -0.5438453, y: 0.4519207, z: 0.5438453, w: -0.4519207}
scale: {x: 1, y: 1, z: 1}
- name: IKSpRoot_M
parentName: IKSpSpineOffset_M
position: {x: -0, y: -2.8865798e-17, z: 0}
rotation: {x: -3.0531133e-16, y: -1.2212453e-15, z: 2.7755576e-17, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IKSpRootFollowOffset_M
parentName: IKSpRoot_M
position: {x: -0, y: 0, z: 0}
rotation: {x: 3.8355425e-17, y: 8.1704856e-16, z: -0.08041918, w: 0.99676114}
scale: {x: 1, y: 1, z: 1}
- name: Root_M
parentName: AvatarA_v1.0(Clone)
position: {x: 9.7433525e-17, y: 0.8878011, z: -0.039552037}
rotation: {x: 0.57842696, y: -0.4067214, z: -0.57842696, w: 0.4067214}
scale: {x: 1, y: 1, z: 1}
- name: Hip_L
parentName: Root_M
position: {x: 0.016870413, y: -0.009464632, z: 0.07376578}
rotation: {x: 0.98593235, y: 0.16357476, z: -0.012882409, w: 0.03185659}
scale: {x: 1, y: 1, z: 1}
- name: Knee_L
parentName: Hip_L
position: {x: 0.33850485, y: -6.4948046e-16, z: 3.8968825e-16}
rotation: {x: 0, y: 0, z: 0.0074699377, w: 0.9999721}
scale: {x: 1, y: 1, z: 1}
- name: Ankle_L
parentName: Knee_L
position: {x: 0.33611748, y: -6.9277914e-16, z: 3.5360603e-16}
rotation: {x: 0.022163536, y: 0.018053727, z: -0.015481046, w: 0.9994715}
scale: {x: 1, y: 1, z: 1}
- name: Toes_L
parentName: Ankle_L
position: {x: 0.14422522, y: -0.10233539, z: -6.278311e-16}
rotation: {x: 0.0066125956, y: 0.0027137587, z: -0.37965432, w: 0.92510086}
scale: {x: 1, y: 1, z: 1}
- name: ToesEnd_L
parentName: Toes_L
position: {x: 0.079581514, y: -1.7319479e-16, z: 1.3927747e-15}
rotation: {x: 0.00000046410594, y: 0.0000011101814, z: -5.152418e-13, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Hip_R
parentName: Root_M
position: {x: 0.016870413, y: -0.009464632, z: -0.07376578}
rotation: {x: -0.16357476, y: 0.98593235, z: 0.03185659, w: 0.012882409}
scale: {x: 1, y: 1, z: 1}
- name: Knee_R
parentName: Hip_R
position: {x: -0.33850485, y: 6.639133e-16, z: -3.8247182e-16}
rotation: {x: 0, y: 0, z: 0.0074699377, w: 0.9999721}
scale: {x: 1, y: 1, z: 1}
- name: Ankle_R
parentName: Knee_R
position: {x: -0.33611748, y: 4.4741985e-16, z: -1.0824674e-16}
rotation: {x: 0.022163536, y: 0.018053727, z: -0.015481046, w: 0.9994715}
scale: {x: 1, y: 1, z: 1}
- name: Toes_R
parentName: Ankle_R
position: {x: -0.14422522, y: 0.10233539, z: 7.2164497e-16}
rotation: {x: 0.006611389, y: 0.0027132635, z: -0.37965432, w: 0.92510086}
scale: {x: 1, y: 1, z: 1}
- name: ToesEnd_R
parentName: Toes_R
position: {x: -0.079581514, y: -1.3530843e-13, z: 0.00000014581947}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RootPart1_M
parentName: Root_M
position: {x: -0.083147995, y: 1.1546319e-16, z: -5.759879e-17}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Spine1_M
parentName: RootPart1_M
position: {x: -0.083147995, y: -5.7731595e-17, z: -1.8904783e-16}
rotation: {x: 0, y: 0, z: 0.184445, w: 0.98284286}
scale: {x: 1, y: 1, z: 1}
- name: Chest_M
parentName: Spine1_M
position: {x: -0.12788978, y: 5.7731595e-17, z: -2.0939021e-16}
rotation: {x: 0, y: 0, z: 0.16704705, w: 0.985949}
scale: {x: 1, y: 1, z: 1}
- name: Chest_L
parentName: Chest_M
position: {x: 0.04410046, y: 0.077141955, z: 0.07258086}
rotation: {x: 0.58175045, y: 0.40195322, z: -0.58175045, w: 0.40195322}
scale: {x: 1, y: 1, z: 1}
- name: Chest_R
parentName: Chest_M
position: {x: 0.03991048, y: 0.07851963, z: -0.06760903}
rotation: {x: -0.40195322, y: 0.58175045, z: 0.40195322, w: 0.58175045}
scale: {x: 1, y: 1, z: 1}
- name: Neck_M
parentName: Chest_M
position: {x: -0.11347442, y: -1.7319479e-16, z: 4.0176917e-16}
rotation: {x: 0, y: -0, z: -0.17346543, w: 0.98484}
scale: {x: 1, y: 1, z: 1}
- name: Head_M
parentName: Neck_M
position: {x: -0.05836205, y: -5.7731595e-17, z: -9.1300484e-17}
rotation: {x: 0, y: -0, z: -0.006432945, w: 0.9999793}
scale: {x: 1, y: 1, z: 1}
- name: Brow
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 5.291459e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: cheek
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 5.363623e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: Eye
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 5.363623e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: Eye1_L
parentName: Head_M
position: {x: -0.04933291, y: 0.061218925, z: 0.030804597}
rotation: {x: 0, y: 0, z: -0.7071068, w: 0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: EyeEnd_L
parentName: Eye1_L
position: {x: -0.015400433, y: 4.6185276e-16, z: -1.9484413e-16}
rotation: {x: -0.13868622, y: -0.0022722934, z: -0.00015833313, w: 0.99033374}
scale: {x: 1, y: 1, z: 1}
- name: Eye1_R
parentName: Head_M
position: {x: -0.04933291, y: 0.061218925, z: -0.030804597}
rotation: {x: 0, y: 0, z: -0.7071068, w: 0.7071068}
scale: {x: 1, y: 1, z: 1}
- name: EyeEnd_R
parentName: Eye1_R
position: {x: -0.015400433, y: -6.9277914e-16, z: 1.3711253e-16}
rotation: {x: 0.13868622, y: 0.0022722934, z: -0.00015833313, w: 0.99033374}
scale: {x: 1, y: 1, z: 1}
- name: Eye_base
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 5.291459e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: Face_A
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 4.3894023e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: FaceB
parentName: Head_M
position: {x: 1.3366333, y: 0.027494062, z: 5.291459e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: Lash
parentName: FaceB
position: {x: -0, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: HeadEnd_M
parentName: Head_M
position: {x: -0.13514173, y: 5.412337e-17, z: -1.2428487e-16}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Hair_Root
parentName: HeadEnd_M
position: {x: -0.020618772, y: 0.0009411925, z: 1.1548963e-16}
rotation: {x: -0.5, y: 0.5, z: 0.5, w: 0.5}
scale: {x: 1, y: 1, z: 1}
- name: joint2
parentName: Hair_Root
position: {x: 1.0255191e-31, y: 0.024425356, z: -0.086703144}
rotation: {x: -0.39477548, y: -0.58664495, z: 0.39477548, w: 0.58664495}
scale: {x: 1, y: 1, z: 1}
- name: joint3
parentName: joint2
position: {x: -0.106039025, y: 1.7550404e-14, z: 7.7390317e-17}
rotation: {x: -1.3414677e-16, y: -2.1435343e-16, z: -0.02063391, w: 0.9997871}
scale: {x: 1, y: 1, z: 1}
- name: joint4
parentName: joint3
position: {x: -0.09418015, y: 1.1546319e-16, z: -4.28673e-17}
rotation: {x: 8.326673e-17, y: -2.7755576e-17, z: -0.07291504, w: 0.9973382}
scale: {x: 1, y: 1, z: 1}
- name: joint5
parentName: joint4
position: {x: -0.1654087, y: -1.1546319e-16, z: -8.0064783e-17}
rotation: {x: -6.883664e-17, y: -2.1898021e-16, z: 0.15460564, w: 0.9879763}
scale: {x: 1, y: 1, z: 1}
- name: joint6
parentName: joint5
position: {x: -0.18550922, y: -2.3092638e-16, z: -7.501041e-17}
rotation: {x: 0.9655731, y: 0.26013187, z: 0.0000000019381334, w: 0.0000000071940804}
scale: {x: 1, y: 1, z: 1}
- name: joint7
parentName: joint6
position: {x: -0.13346669, y: 1.3711253e-16, z: 2.4930378e-17}
rotation: {x: -0.44413692, y: -0.5502203, z: -0.44413692, w: 0.5502203}
scale: {x: 1, y: 1, z: 1}
- name: joint8
parentName: Hair_Root
position: {x: -0.035530798, y: -0.003302308, z: -0.07772408}
rotation: {x: -0.39088443, y: -0.5892448, z: 0.39088443, w: 0.5892448}
scale: {x: 1, y: 1, z: 1}
- name: joint9
parentName: joint8
position: {x: -0.15713881, y: -1.1546319e-16, z: 0.03140869}
rotation: {x: -1.344848e-32, y: -1.3428561e-17, z: -0.047404356, w: 0.9988758}
scale: {x: 1, y: 1, z: 1}
- name: joint10
parentName: joint9
position: {x: -0.18220541, y: 0.000000022062817, z: 0.058629554}
rotation: {x: 3.4296665e-17, y: -5.4832665e-17, z: 0.17918658, w: 0.98381513}
scale: {x: 1, y: 1, z: 1}
- name: joint11
parentName: joint10
position: {x: -0.14753231, y: 1.7319479e-16, z: 0.0069797086}
rotation: {x: 0.95009726, y: 0.31195384, z: 3.187064e-17, w: 5.3984126e-17}
scale: {x: 1, y: 1, z: 1}
- name: joint12
parentName: joint11
position: {x: -0.094344735, y: -0.000000033451183, z: 0.04885796}
rotation: {x: -0.45418188, y: -0.54195833, z: -0.45418188, w: 0.54195833}
scale: {x: 1, y: 1, z: 1}
- name: joint13
parentName: Hair_Root
position: {x: -0.084148705, y: -0.05809692, z: -0.07546717}
rotation: {x: -0.40631133, y: -0.5787151, z: 0.40631133, w: 0.5787151}
scale: {x: 1, y: 1, z: 1}
- name: joint14
parentName: joint13
position: {x: -0.09990436, y: 0, z: 0.023199694}
rotation: {x: -3.2570875e-17, y: -2.1667468e-16, z: -0.014515351, w: 0.9998947}
scale: {x: 1, y: 1, z: 1}
- name: joint15
parentName: joint14
position: {x: -0.1636666, y: -0.0000000010039244, z: 0.087643296}
rotation: {x: 5.551115e-17, y: 8.326673e-17, z: 0.1296567, w: 0.99155897}
scale: {x: 1, y: 1, z: 1}
- name: joint16
parentName: joint15
position: {x: -0.15990473, y: -2.3092638e-16, z: 0.001718496}
rotation: {x: 0.47631454, y: 0.52261317, z: -0.47631454, w: 0.52261317}
scale: {x: 1, y: 1, z: 1}
- name: joint17
parentName: Hair_Root
position: {x: -0.11097605, y: -0.12074054, z: -0.053715847}
rotation: {x: -0.43211785, y: -0.55185926, z: 0.43972573, w: 0.5615753}
scale: {x: 1, y: 1, z: 1}
- name: joint18
parentName: joint17
position: {x: -0.12961023, y: 0.015492709, z: 0.048908446}
rotation: {x: 0.012132285, y: 0.0030829264, z: 0.018015826, w: 0.9997594}
scale: {x: 1, y: 1, z: 1}
- name: joint28
parentName: joint18
position: {x: -0.11139102, y: 0.0009490263, z: 0.09435933}
rotation: {x: 0.627674, y: 0.34751922, z: -0.14758927, w: 0.68078864}
scale: {x: 1, y: 1, z: 1}
- name: joint29
parentName: joint28
position: {x: -0.12116805, y: -9.2622715e-10, z: 0.037721954}
rotation: {x: 0.88647765, y: 0.46252528, z: -0.00348521, w: -0.01468394}
scale: {x: 1, y: 1, z: 1}
- name: joint30
parentName: joint29
position: {x: -0.09306123, y: -6.6958955e-10, z: -0.069855444}
rotation: {x: 0.6167735, y: 0.7869957, z: 0.009632255, w: -0.0116391275}
scale: {x: 1, y: 1, z: 1}
- name: joint21
parentName: Hair_Root
position: {x: -0.07113582, y: -0.039533567, z: 0.053618472}
rotation: {x: -0.3992348, y: -0.5836194, z: 0.3992348, w: 0.5836194}
scale: {x: 1, y: 1, z: 1}
- name: joint22
parentName: joint21
position: {x: -0.056806624, y: -6.973487e-17, z: 0.004678207}
rotation: {x: 0.97551507, y: 0.21993259, z: 6.514028e-19, w: 6.2622377e-17}
scale: {x: 1, y: 1, z: 1}
- name: joint23
parentName: joint22
position: {x: -0.06082527, y: 3.043091e-17, z: 0.0060279365}
rotation: {x: -0.48152474, y: -0.5178165, z: -0.48152474, w: 0.5178165}
scale: {x: 1, y: 1, z: 1}
- name: joint24
parentName: Hair_Root
position: {x: -0, y: 0.036074348, z: 0.07418822}
rotation: {x: 0.29149848, y: 0.6442272, z: 0.29149848, w: 0.6442272}
scale: {x: 1, y: 1, z: 1}
- name: joint25
parentName: joint24
position: {x: -0.061377455, y: -1.0824674e-17, z: 1.3628533e-17}
rotation: {x: -1.045314e-16, y: -1.3284522e-16, z: 0.33691472, w: 0.9415352}
scale: {x: 1, y: 1, z: 1}
- name: joint26
parentName: joint25
position: {x: -0.062206652, y: -1.2177758e-16, z: -2.7716056e-19}
rotation: {x: 0.98136747, y: 0.19214043, z: 0.0000000014315577, w: 0.0000000073117574}
scale: {x: 1, y: 1, z: 1}
- name: joint27
parentName: joint26
position: {x: -0.042433944, y: 5.7731595e-17, z: 5.8627414e-18}
rotation: {x: 0.4044424, y: 0.58002275, z: -0.4044424, w: 0.58002275}
scale: {x: 1, y: 1, z: 1}
- name: joint31
parentName: Hair_Root
position: {x: 0.035530817, y: -0.0032958346, z: -0.077724025}
rotation: {x: 0.5892448, y: -0.39088443, z: -0.5892448, w: 0.39088443}
scale: {x: 1, y: 1, z: 1}
- name: joint32
parentName: joint31
position: {x: 0.15714613, y: 0.0000032516493, z: -0.03140865}
rotation: {x: -7.519581e-33, y: 2.3954442e-17, z: -0.047404356, w: 0.9988758}
scale: {x: 1, y: 1, z: 1}
- name: joint33
parentName: joint32
position: {x: 0.1822046, y: -0.0000011967022, z: -0.058629606}
rotation: {x: 7.492875e-17, y: 3.4938958e-17, z: 0.17918658, w: 0.98381513}
scale: {x: 1, y: 1, z: 1}
- name: joint34
parentName: joint33
position: {x: 0.14753179, y: 0.00000017425633, z: -0.0069802194}
rotation: {x: 0.95009726, y: 0.31195384, z: 6.3326867e-18, w: 6.236923e-17}
scale: {x: 1, y: 1, z: 1}
- name: joint35
parentName: joint34
position: {x: 0.09434518, y: 0.00000020184778, z: -0.04885855}
rotation: {x: -0.45418188, y: -0.54195833, z: -0.45418188, w: 0.54195833}
scale: {x: 1, y: 1, z: 1}
- name: joint36
parentName: Hair_Root
position: {x: 0.084148735, y: -0.058090832, z: -0.07546723}
rotation: {x: 0.5787151, y: -0.40631133, z: -0.5787151, w: 0.40631133}
scale: {x: 1, y: 1, z: 1}
- name: joint37
parentName: joint36
position: {x: 0.09991501, y: 0.0000045512356, z: -0.02319967}
rotation: {x: 2.9381199e-16, y: 9.3472236e-17, z: -0.014515351, w: 0.9998947}
scale: {x: 1, y: 1, z: 1}
- name: joint38
parentName: joint37
position: {x: 0.16366178, y: -0.0000024740623, z: -0.08764379}
rotation: {x: 2.1982633e-16, y: 8.529033e-17, z: 0.1409987, w: 0.9900098}
scale: {x: 1, y: 1, z: 1}
- name: joint39
parentName: joint38
position: {x: 0.15990438, y: -0.0000005800163, z: -0.0017185999}
rotation: {x: 0.4733856, y: 0.5152572, z: -0.4832665, w: 0.52618396}
scale: {x: 1, y: 1, z: 1}
- name: joint40
parentName: Hair_Root
position: {x: 0.110976055, y: -0.120737836, z: -0.05371589}
rotation: {x: 0.5620731, y: -0.42903832, z: -0.5620731, w: 0.42903832}
scale: {x: 1, y: 1, z: 1}
- name: joint41
parentName: joint40
position: {x: 0.12961344, y: -0.015491905, z: -0.048908338}
rotation: {x: -3.912224e-35, y: 1.5370029e-18, z: 0.009557746, w: 0.99995434}
scale: {x: 1, y: 1, z: 1}
- name: joint42
parentName: joint41
position: {x: 0.1113906, y: -0.00094860245, z: -0.09435919}
rotation: {x: 0.6258571, y: 0.32909405, z: -0.16557446, w: 0.68744826}
scale: {x: 1, y: 1, z: 1}
- name: joint43
parentName: joint42
position: {x: 0.12116754, y: -0.00000011186593, z: -0.03772145}
rotation: {x: 0.8865779, y: 0.46257928, z: -1.7746672e-16, w: -2.2692254e-16}
scale: {x: 1, y: 1, z: 1}
- name: joint44
parentName: joint43
position: {x: 0.09306158, y: 0.0000005049277, z: 0.0698555}
rotation: {x: 0.6168391, y: 0.7870893, z: 0.0000000058642717, w: 0.000000004595809}
scale: {x: 1, y: 1, z: 1}
- name: joint45
parentName: Hair_Root
position: {x: 0.07113587, y: -0.039539833, z: 0.053618476}
rotation: {x: -0.5836194, y: 0.3992348, z: 0.5836194, w: -0.3992348}
scale: {x: 1, y: 1, z: 1}
- name: joint46
parentName: joint45
position: {x: 0.056799132, y: -0.0000029132393, z: -0.0046781795}
rotation: {x: 0.97551507, y: 0.21993259, z: -3.0797926e-17, w: -5.5825764e-17}
scale: {x: 1, y: 1, z: 1}
- name: joint47
parentName: joint46
position: {x: 0.060831208, y: 0.00000044319307, z: -0.00602797}
rotation: {x: -0.48152474, y: -0.5178165, z: -0.48152474, w: 0.5178165}
scale: {x: 1, y: 1, z: 1}
- name: Jaw_M
parentName: Head_M
position: {x: 0.016640855, y: 0.036495123, z: -1.2735666e-16}
rotation: {x: 0, y: 0, z: -0.84233886, w: 0.53894824}
scale: {x: 1, y: 1, z: 1}
- name: JawEnd_M
parentName: Jaw_M
position: {x: -0.026361799, y: 9.237055e-16, z: -3.868936e-17}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Scapula_L
parentName: Chest_M
position: {x: -0.07514155, y: -0.019844282, z: 0.039285034}
rotation: {x: 0.69570875, y: -0.12736072, z: 0.6954808, w: 0.12678766}
scale: {x: 1, y: 1, z: 1}
- name: Shoulder_L
parentName: Scapula_L
position: {x: 0.041771773, y: 1.6092683e-15, z: -1.3855583e-15}
rotation: {x: 6.0939684e-14, y: 0.0002359277, z: 0.02681468, w: 0.9996404}
scale: {x: 1, y: 1, z: 1}
- name: Elbow_L
parentName: Shoulder_L
position: {x: 0.22670372, y: -4.97935e-16, z: -3.4638957e-15}
rotation: {x: -0.00008224737, y: -0.0000047049275, z: -0.05711123, w: 0.99836785}
scale: {x: 1, y: 1, z: 1}
- name: Wrist_L
parentName: Elbow_L
position: {x: 0.20228654, y: 9.381384e-17, z: -8.1747936e-14}
rotation: {x: -0.0037694303, y: 0.08462515, z: 0.015340361, w: 0.99628764}
scale: {x: 1, y: 1, z: 1}
- name: Cup_L
parentName: Wrist_L
position: {x: 0.01780174, y: 0.009604938, z: 0.003199682}
rotation: {x: -0.00017799465, y: 0.01698436, z: -0.010477828, w: 0.99980086}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger1_L
parentName: Cup_L
position: {x: 0.04039858, y: 0.02266729, z: 0.008317329}
rotation: {x: -0.006834528, y: -0.074389264, z: 0.05178911, w: 0.9958601}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger2_L
parentName: PinkyFinger1_L
position: {x: 0.018318556, y: 1.703082e-15, z: -6.9277914e-15}
rotation: {x: 0.002156727, y: 0.03859848, z: -0.0026612957, w: 0.999249}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger3_L
parentName: PinkyFinger2_L
position: {x: 0.013202028, y: 1.0247358e-15, z: -6.4659387e-15}
rotation: {x: 0.01842187, y: 0.038226742, z: 0.0010838361, w: 0.99909866}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger4_L
parentName: PinkyFinger3_L
position: {x: 0.016035747, y: 3.7525537e-16, z: -3.002043e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger1_L
parentName: Cup_L
position: {x: 0.05116203, y: 0.008325774, z: 0.001130622}
rotation: {x: -0.0032206501, y: -0.083227284, z: 0.044487543, w: 0.99553186}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger2_L
parentName: RingFinger1_L
position: {x: 0.02736407, y: 2.164935e-15, z: -1.0391687e-14}
rotation: {x: -0.001280168, y: 0.016542051, z: 0.0017244515, w: 0.9998609}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger3_L
parentName: RingFinger2_L
position: {x: 0.016377429, y: 1.4721557e-15, z: 2.3092638e-16}
rotation: {x: 0.014594207, y: 0.037522484, z: 0.0024684446, w: 0.9991862}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger4_L
parentName: RingFinger3_L
position: {x: 0.017703958, y: -1.2989609e-16, z: -2.1014301e-14}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger1_L
parentName: Wrist_L
position: {x: 0.07718671, y: -0.02038989, z: -0.000923763}
rotation: {x: 0.01010804, y: -0.07283163, z: -0.03562739, w: 0.9966565}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger2_L
parentName: IndexFinger1_L
position: {x: 0.026080627, y: 5.9174886e-16, z: -7.851497e-15}
rotation: {x: 0.0020667375, y: 0.012291591, z: 0.026893826, w: 0.9995606}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger3_L
parentName: IndexFinger2_L
position: {x: 0.017045567, y: 5.7731595e-17, z: -3.694822e-15}
rotation: {x: -0.0022367644, y: 0.040300775, z: -0.0028808464, w: 0.999181}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger4_L
parentName: IndexFinger3_L
position: {x: 0.01826409, y: -6.9277914e-16, z: -4.387601e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger1_L
parentName: Wrist_L
position: {x: 0.07866357, y: -4.964917e-15, z: -1.40865094e-14}
rotation: {x: 0.0009235642, y: -0.0794653, z: 0.013633631, w: 0.99674404}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger2_L
parentName: MiddleFinger1_L
position: {x: 0.026029596, y: 8.4071636e-16, z: -1.0622613e-14}
rotation: {x: 0.00072584406, y: 0.025071857, z: 0.015136642, w: 0.9995708}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger3_L
parentName: MiddleFinger2_L
position: {x: 0.0154276565, y: 1.9394208e-16, z: -4.6970425e-13}
rotation: {x: 0.0028191407, y: 0.03990652, z: 0.00014264094, w: 0.9991995}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger4_L
parentName: MiddleFinger3_L
position: {x: 0.018965831, y: -8.5785543e-16, z: -1.1546319e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger1_L
parentName: Wrist_L
position: {x: 0.023361826, y: -0.017603127, z: 0.013563224}
rotation: {x: -0.37437692, y: 0.07628078, z: -0.36682522, w: 0.84821135}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger2_L
parentName: ThumbFinger1_L
position: {x: 0.03157685, y: -1.3874195e-10, z: -1.8184979e-10}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger3_L
parentName: ThumbFinger2_L
position: {x: 0.015180493, y: 3.2329693e-15, z: -7.158718e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger4_L
parentName: ThumbFinger3_L
position: {x: 0.01829456, y: 0.000000033226197, z: 0.000000021232891}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Scapula_R
parentName: Chest_M
position: {x: -0.07514155, y: -0.019844282, z: -0.039285034}
rotation: {x: -0.12736072, y: -0.69570875, z: -0.12678766, w: 0.6954808}
scale: {x: 1, y: 1, z: 1}
- name: Shoulder_R
parentName: Scapula_R
position: {x: -0.041771773, y: 1.4414858e-14, z: 3.002043e-15}
rotation: {x: -5.695995e-14, y: 0.0002359277, z: 0.02681468, w: 0.9996404}
scale: {x: 1, y: 1, z: 1}
- name: Elbow_R
parentName: Shoulder_R
position: {x: -0.22670372, y: -1.4793722e-16, z: 3.2329693e-15}
rotation: {x: -0.00008224737, y: -0.0000047049275, z: -0.05711123, w: 0.99836785}
scale: {x: 1, y: 1, z: 1}
- name: Wrist_R
parentName: Elbow_R
position: {x: -0.20228654, y: -5.556666e-16, z: 2.6556534e-14}
rotation: {x: -0.0037694303, y: 0.08462515, z: 0.015340361, w: 0.99628764}
scale: {x: 1, y: 1, z: 1}
- name: Cup_R
parentName: Wrist_R
position: {x: -0.01780174, y: -0.009604938, z: -0.003199682}
rotation: {x: -0.00017799465, y: 0.01698436, z: -0.010477828, w: 0.99980086}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger1_R
parentName: Cup_R
position: {x: -0.04039858, y: -0.02266729, z: -0.008317329}
rotation: {x: -0.0068348497, y: -0.07438925, z: 0.051788665, w: 0.9958602}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger2_R
parentName: PinkyFinger1_R
position: {x: -0.018318556, y: -5.1958436e-16, z: 2.3092638e-15}
rotation: {x: 0.002156727, y: 0.03859848, z: -0.0026612957, w: 0.999249}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger3_R
parentName: PinkyFinger2_R
position: {x: -0.013202028, y: -5.0515144e-16, z: -1.3855583e-15}
rotation: {x: 0.018422026, y: 0.038226847, z: 0.0010864384, w: 0.99909866}
scale: {x: 1, y: 1, z: 1}
- name: PinkyFinger4_R
parentName: PinkyFinger3_R
position: {x: -0.016035747, y: 2.8865798e-17, z: 1.3855583e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger1_R
parentName: Cup_R
position: {x: -0.05116203, y: -0.008325774, z: -0.001130622}
rotation: {x: -0.0032208138, y: -0.08322736, z: 0.044487268, w: 0.9955319}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger2_R
parentName: RingFinger1_R
position: {x: -0.02736407, y: -6.4948046e-16, z: 1.847411e-15}
rotation: {x: -0.001280168, y: 0.016542051, z: 0.0017244515, w: 0.9998609}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger3_R
parentName: RingFinger2_R
position: {x: -0.016377429, y: -3.4638957e-16, z: -1.3855583e-15}
rotation: {x: 0.014594186, y: 0.03752955, z: 0.002466661, w: 0.9991859}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger4_R
parentName: RingFinger3_R
position: {x: -0.017703958, y: 2.8865798e-17, z: 1.085354e-14}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger1_R
parentName: Wrist_R
position: {x: -0.07718671, y: 0.02038989, z: 0.000923763}
rotation: {x: 0.010108131, y: -0.07283107, z: -0.03562655, w: 0.99665654}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger2_R
parentName: IndexFinger1_R
position: {x: -0.026080627, y: -2.7422506e-16, z: 1.1546319e-15}
rotation: {x: 0.0020667375, y: 0.012291591, z: 0.026893826, w: 0.9995606}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger3_R
parentName: IndexFinger2_R
position: {x: -0.017045567, y: -1.2267965e-16, z: 1.1546319e-15}
rotation: {x: -0.0022368347, y: 0.040305026, z: -0.0028823968, w: 0.9991808}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger4_R
parentName: IndexFinger3_R
position: {x: -0.01826409, y: 7.2164494e-17, z: -1.1546319e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger1_R
parentName: Wrist_R
position: {x: -0.07866357, y: 8.2267524e-16, z: -1.847411e-15}
rotation: {x: 0.0009235429, y: -0.07946523, z: 0.013633435, w: 0.99674404}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger2_R
parentName: MiddleFinger1_R
position: {x: -0.026029596, y: -1.3350432e-16, z: 1.1546319e-15}
rotation: {x: 0.00072584406, y: 0.025071857, z: 0.015136642, w: 0.9995708}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger3_R
parentName: MiddleFinger2_R
position: {x: -0.0154276565, y: -1.7680301e-16, z: 4.655476e-13}
rotation: {x: 0.0028192075, y: 0.03990016, z: 0.000141731, w: 0.99919975}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger4_R
parentName: MiddleFinger3_R
position: {x: -0.018965831, y: 2.3949592e-16, z: -2.0783374e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger1_R
parentName: Wrist_R
position: {x: -0.023361826, y: 0.017603127, z: -0.013563224}
rotation: {x: -0.37437636, y: 0.07628232, z: -0.3668245, w: 0.8482118}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger2_R
parentName: ThumbFinger1_R
position: {x: -0.03157685, y: 1.3874588e-10, z: 1.8185176e-10}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger3_R
parentName: ThumbFinger2_R
position: {x: -0.015180493, y: -2.5401902e-15, z: 8.140155e-15}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ThumbFinger4_R
parentName: ThumbFinger3_R
position: {x: -0.01829456, y: -0.000000033226193, z: -0.00000002123289}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_La
parentName: Root_M
position: {x: 0.032355163, y: -0.014594522, z: -0.19467498}
rotation: {x: 0.4067214, y: 0.57842696, z: -0.4067214, w: 0.57842696}
scale: {x: 1, y: 1, z: 1}
- name: Skirt_Ra
parentName: Root_M
position: {x: 0.032355733, y: -0.014594323, z: 0.1946745}
rotation: {x: 0.57842696, y: -0.4067214, z: -0.57842696, w: -0.4067214}
scale: {x: 1, y: 1, z: 1}
- name: SkirtLb
parentName: Root_M
position: {x: 0.016472347, y: 0.12529275, z: -0.07912345}
rotation: {x: 0.4067214, y: 0.57842696, z: -0.4067214, w: 0.57842696}
scale: {x: 1, y: 1, z: 1}
- name: SkirtLc
parentName: Root_M
position: {x: 0.08166917, y: -0.13119137, z: -0.07912345}
rotation: {x: 0.4067214, y: 0.57842696, z: -0.4067214, w: 0.57842696}
scale: {x: 1, y: 1, z: 1}
- name: SkirtRb
parentName: Root_M
position: {x: 0.016471868, y: 0.1252926, z: 0.07912344}
rotation: {x: 0.57842696, y: -0.4067214, z: -0.57842696, w: -0.4067214}
scale: {x: 1, y: 1, z: 1}
- name: SkirtRc
parentName: Root_M
position: {x: 0.08166921, y: -0.13119107, z: 0.07912344}
rotation: {x: 0.57842696, y: -0.4067214, z: -0.57842696, w: -0.4067214}
scale: {x: 1, y: 1, z: 1}
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 1
skeletonHasParents: 0
lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: dd4fe296533713342b6bc2ebe4faedbd,
type: 3}
animationType: 3
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
|