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
|
fileFormatVersion: 2
guid: 7af5f699ce63d9742b8259c6190c4642
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: Armature
100002: BackHair1
100004: BackHair1_L
100006: BackHair1_R
100008: BackHair2
100010: BackHair2_L
100012: BackHair2_R
100014: BaeDownDaDownDoor1
100016: BaeDownDaDownDoor2
100018: BaeDownDaDownDoor3
100020: BaeDownDaDownDoor4
100022: BaeDownDaDownDoor5
100024: BehindBelt1_L
100026: BehindBelt1_R
100028: BehindBelt2_L
100030: BehindBelt2_R
100032: BehindBelt3_L
100034: BehindBelt3_R
100036: BehindBelt4_L
100038: BehindBelt4_R
100040: BehindBelt5_L
100042: BehindBelt5_R
100044: BehindBelt6_L
100046: BehindBelt6_R
100048: BeltFront1
100050: BeltFront2
100052: BeltFront3
100054: Body
100056: Chest
100058: Cordon1
100060: ElbowEvenMove1_L
100062: ElbowEvenMove1_R
100064: ElbowEvenMove2_L
100066: ElbowEvenMove2_R
100068: ElbowEvenMove3_L
100070: ElbowEvenMove3_R
100072: ElbowEvenMove4_L
100074: ElbowEvenMove4_R
100076: ElbowEvenMove5_L
100078: ElbowEvenMove5_R
100080: Eye_L
100082: Eye_R
100084: FrontBelt1_L
100086: FrontBelt1_R
100088: FrontBelt2_L
100090: FrontBelt2_R
100092: FrontBelt3_L
100094: FrontBelt3_R
100096: FrontBelt4_L
100098: FrontBelt4_R
100100: FrontBelt5_L
100102: FrontBelt5_R
100104: FrontBelt6_L
100106: FrontBelt6_R
100108: FrontHair1
100110: FrontHair1_L
100112: FrontHair1_R
100114: FrontHair2
100116: FrontHair2_L
100118: FrontHair2_R
100120: FrontHair3
100122: FrontHair3_R
100124: Head
100126: Hips
100128: Hood1
100130: Hood2
100132: IndexFinger1_L
100134: IndexFinger1_R
100136: IndexFinger2_L
100138: IndexFinger2_R
100140: IndexFinger3_L
100142: IndexFinger3_R
100144: JacketLowerClothes_0_0
100146: JacketLowerClothes_0_1
100148: JacketLowerClothes_0_2
100150: JacketLowerClothes_0_3
100152: JacketLowerClothes_0_4
100154: JacketLowerClothes_0_5
100156: JacketLowerClothes_0_6
100158: JacketLowerClothes_0_7
100160: JacketLowerClothes_0_8
100162: JacketLowerClothes_0_9
100164: JacketLowerClothes_1_0
100166: JacketLowerClothes_1_1
100168: JacketLowerClothes_1_2
100170: JacketLowerClothes_1_3
100172: JacketLowerClothes_1_4
100174: JacketLowerClothes_1_5
100176: JacketLowerClothes_1_6
100178: JacketLowerClothes_1_7
100180: JacketLowerClothes_1_8
100182: JacketLowerClothes_1_9
100184: JacketLowerClothes_2_0
100186: JacketLowerClothes_2_1
100188: JacketLowerClothes_2_2
100190: JacketLowerClothes_2_3
100192: JacketLowerClothes_2_4
100194: JacketLowerClothes_2_5
100196: JacketLowerClothes_2_6
100198: JacketLowerClothes_2_7
100200: JacketLowerClothes_2_8
100202: JacketLowerClothes_2_9
100204: JacketLowerClothes_3_0
100206: JacketLowerClothes_3_1
100208: JacketLowerClothes_3_2
100210: JacketLowerClothes_3_3
100212: JacketLowerClothes_3_4
100214: JacketLowerClothes_3_5
100216: JacketLowerClothes_3_6
100218: JacketLowerClothes_3_7
100220: JacketLowerClothes_3_8
100222: JacketLowerClothes_3_9
100224: Left ankle
100226: Left arm
100228: Left elbow
100230: Left knee
100232: Left leg
100234: Left shoulder
100236: Left toe
100238: Left wrist
100240: LeftEye
100242: LittleFinger1_L
100244: LittleFinger1_R
100246: LittleFinger2_L
100248: LittleFinger2_R
100250: LittleFinger3_L
100252: LittleFinger3_R
100254: MiddleFinger1_L
100256: MiddleFinger1_R
100258: MiddleFinger2_L
100260: MiddleFinger2_R
100262: MiddleFinger3_L
100264: MiddleFinger3_R
100266: Neck
100268: Right ankle
100270: Right arm
100272: Right elbow
100274: Right knee
100276: Right leg
100278: Right shoulder
100280: Right toe
100282: Right wrist
100284: RightEye
100286: RingFinger1_L
100288: RingFinger1_R
100290: RingFinger2_L
100292: RingFinger2_R
100294: RingFinger3_L
100296: RingFinger3_R
100298: Root_FrontBelt1_L
100300: Root_FrontBelt1_L_001
100302: Root_FrontHair1
100304: Root_JacketLowerClothes_0_0
100306: Root_ShoesStringAh1_L
100308: Root_ShoesStringAh1_L_001
100310: Root_ShoesStringAh1_L_002
100312: Root_SideHair1_L
100314: Root_SideHair1_L_001
100316: ShoesStringA1_L
100318: ShoesStringAh1_L
100320: ShoesStringAh1_R
100322: ShoesStringCh1_L
100324: ShoesStringCh1_R
100326: ShoesStringCh2_L
100328: ShoesStringCh2_R
100330: ShoesStringI1_L
100332: ShoesStringI2_L
100334: SideBackHair1_L
100336: SideBackHair1_R
100338: SideBackHair2_L
100340: SideBackHair2_R
100342: SideHair1_L
100344: SideHair1_R
100346: SideHair2_L
100348: SideHair2_R
100350: SideHair3_L
100352: SideHair3_R
100354: Sleeve_L
100356: Sleeve_R
100358: Spine
100360: Thumb0_L
100362: Thumb0_R
100364: Thumb1_L
100366: Thumb1_R
100368: Thumb2_L
100370: Thumb2_R
100372: Tongue1
100374: Tongue2
100376: //RootNode
100378: ZArmTwist_L
100380: ZArmTwist_R
100382: ZHandTwist_L
100384: ZHandTwist_R
400000: Armature
400002: BackHair1
400004: BackHair1_L
400006: BackHair1_R
400008: BackHair2
400010: BackHair2_L
400012: BackHair2_R
400014: BaeDownDaDownDoor1
400016: BaeDownDaDownDoor2
400018: BaeDownDaDownDoor3
400020: BaeDownDaDownDoor4
400022: BaeDownDaDownDoor5
400024: BehindBelt1_L
400026: BehindBelt1_R
400028: BehindBelt2_L
400030: BehindBelt2_R
400032: BehindBelt3_L
400034: BehindBelt3_R
400036: BehindBelt4_L
400038: BehindBelt4_R
400040: BehindBelt5_L
400042: BehindBelt5_R
400044: BehindBelt6_L
400046: BehindBelt6_R
400048: BeltFront1
400050: BeltFront2
400052: BeltFront3
400054: Body
400056: Chest
400058: Cordon1
400060: ElbowEvenMove1_L
400062: ElbowEvenMove1_R
400064: ElbowEvenMove2_L
400066: ElbowEvenMove2_R
400068: ElbowEvenMove3_L
400070: ElbowEvenMove3_R
400072: ElbowEvenMove4_L
400074: ElbowEvenMove4_R
400076: ElbowEvenMove5_L
400078: ElbowEvenMove5_R
400080: Eye_L
400082: Eye_R
400084: FrontBelt1_L
400086: FrontBelt1_R
400088: FrontBelt2_L
400090: FrontBelt2_R
400092: FrontBelt3_L
400094: FrontBelt3_R
400096: FrontBelt4_L
400098: FrontBelt4_R
400100: FrontBelt5_L
400102: FrontBelt5_R
400104: FrontBelt6_L
400106: FrontBelt6_R
400108: FrontHair1
400110: FrontHair1_L
400112: FrontHair1_R
400114: FrontHair2
400116: FrontHair2_L
400118: FrontHair2_R
400120: FrontHair3
400122: FrontHair3_R
400124: Head
400126: Hips
400128: Hood1
400130: Hood2
400132: IndexFinger1_L
400134: IndexFinger1_R
400136: IndexFinger2_L
400138: IndexFinger2_R
400140: IndexFinger3_L
400142: IndexFinger3_R
400144: JacketLowerClothes_0_0
400146: JacketLowerClothes_0_1
400148: JacketLowerClothes_0_2
400150: JacketLowerClothes_0_3
400152: JacketLowerClothes_0_4
400154: JacketLowerClothes_0_5
400156: JacketLowerClothes_0_6
400158: JacketLowerClothes_0_7
400160: JacketLowerClothes_0_8
400162: JacketLowerClothes_0_9
400164: JacketLowerClothes_1_0
400166: JacketLowerClothes_1_1
400168: JacketLowerClothes_1_2
400170: JacketLowerClothes_1_3
400172: JacketLowerClothes_1_4
400174: JacketLowerClothes_1_5
400176: JacketLowerClothes_1_6
400178: JacketLowerClothes_1_7
400180: JacketLowerClothes_1_8
400182: JacketLowerClothes_1_9
400184: JacketLowerClothes_2_0
400186: JacketLowerClothes_2_1
400188: JacketLowerClothes_2_2
400190: JacketLowerClothes_2_3
400192: JacketLowerClothes_2_4
400194: JacketLowerClothes_2_5
400196: JacketLowerClothes_2_6
400198: JacketLowerClothes_2_7
400200: JacketLowerClothes_2_8
400202: JacketLowerClothes_2_9
400204: JacketLowerClothes_3_0
400206: JacketLowerClothes_3_1
400208: JacketLowerClothes_3_2
400210: JacketLowerClothes_3_3
400212: JacketLowerClothes_3_4
400214: JacketLowerClothes_3_5
400216: JacketLowerClothes_3_6
400218: JacketLowerClothes_3_7
400220: JacketLowerClothes_3_8
400222: JacketLowerClothes_3_9
400224: Left ankle
400226: Left arm
400228: Left elbow
400230: Left knee
400232: Left leg
400234: Left shoulder
400236: Left toe
400238: Left wrist
400240: LeftEye
400242: LittleFinger1_L
400244: LittleFinger1_R
400246: LittleFinger2_L
400248: LittleFinger2_R
400250: LittleFinger3_L
400252: LittleFinger3_R
400254: MiddleFinger1_L
400256: MiddleFinger1_R
400258: MiddleFinger2_L
400260: MiddleFinger2_R
400262: MiddleFinger3_L
400264: MiddleFinger3_R
400266: Neck
400268: Right ankle
400270: Right arm
400272: Right elbow
400274: Right knee
400276: Right leg
400278: Right shoulder
400280: Right toe
400282: Right wrist
400284: RightEye
400286: RingFinger1_L
400288: RingFinger1_R
400290: RingFinger2_L
400292: RingFinger2_R
400294: RingFinger3_L
400296: RingFinger3_R
400298: Root_FrontBelt1_L
400300: Root_FrontBelt1_L_001
400302: Root_FrontHair1
400304: Root_JacketLowerClothes_0_0
400306: Root_ShoesStringAh1_L
400308: Root_ShoesStringAh1_L_001
400310: Root_ShoesStringAh1_L_002
400312: Root_SideHair1_L
400314: Root_SideHair1_L_001
400316: ShoesStringA1_L
400318: ShoesStringAh1_L
400320: ShoesStringAh1_R
400322: ShoesStringCh1_L
400324: ShoesStringCh1_R
400326: ShoesStringCh2_L
400328: ShoesStringCh2_R
400330: ShoesStringI1_L
400332: ShoesStringI2_L
400334: SideBackHair1_L
400336: SideBackHair1_R
400338: SideBackHair2_L
400340: SideBackHair2_R
400342: SideHair1_L
400344: SideHair1_R
400346: SideHair2_L
400348: SideHair2_R
400350: SideHair3_L
400352: SideHair3_R
400354: Sleeve_L
400356: Sleeve_R
400358: Spine
400360: Thumb0_L
400362: Thumb0_R
400364: Thumb1_L
400366: Thumb1_R
400368: Thumb2_L
400370: Thumb2_R
400372: Tongue1
400374: Tongue2
400376: //RootNode
400378: ZArmTwist_L
400380: ZArmTwist_R
400382: ZHandTwist_L
400384: ZHandTwist_R
2100000: Clothes-Jacket
2100002: Clothes-ParCarLining
2100004: Clothes-FileScanTrainer
2100006: Clothes-Cordon
2100008: Clothes-Trousers
2100010: Clothes-ShoesString
2100012: Clothes-Metal
2100014: Clothes-BaeDownDaDownDoorString
2100016: Clothes-Belt
2100018: Skin-NoseHighlight
2100020: Skin-Nail
2100022: Eye-Highlight
2100024: FacePart-Tongue
2100026: FacePart-OrOneStrand
2100028: FacePart-LowerOrOneStrand
2100030: FacePart-Wrinkles
2100032: FacePart-NoseMuscle
2100034: FacePart-EyebrowStrand
2100036: Hair-Blue
2100038: Clothes-TShirt
4300000: Body
9500000: //RootNode
13700000: Body
2186277476908879412: ImportLogs
externalObjects:
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Clothes-BaeDownDaDownDoorString
second: {fileID: 2100000, guid: 55a3af0f9d61be047831582f2828aef4, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Clothes-Belt
second: {fileID: 2100000, guid: 55a3af0f9d61be047831582f2828aef4, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Clothes-Cordon
second: {fileID: 2100000, guid: 55a3af0f9d61be047831582f2828aef4, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Clothes-FileScanTrainer
second: {fileID: 2100000, guid: 55a3af0f9d61be047831582f2828aef4, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Clothes-Jacket
second: {fileID: 2100000, guid: 55a3af0f9d61be047831582f2828aef4, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Clothes-Metal
second: {fileID: 2100000, guid: 55a3af0f9d61be047831582f2828aef4, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Clothes-ParCarLining
second: {fileID: 2100000, guid: 55a3af0f9d61be047831582f2828aef4, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Clothes-ShoesString
second: {fileID: 2100000, guid: 55a3af0f9d61be047831582f2828aef4, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Clothes-TShirt
second: {fileID: 2100000, guid: 55a3af0f9d61be047831582f2828aef4, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Clothes-Trousers
second: {fileID: 2100000, guid: 55a3af0f9d61be047831582f2828aef4, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Eye-Highlight
second: {fileID: 2100000, guid: fcb9b2826f75b1142aac7e75046ff06c, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: FacePart-EyebrowStrand
second: {fileID: 2100000, guid: fcb9b2826f75b1142aac7e75046ff06c, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: FacePart-LowerOrOneStrand
second: {fileID: 2100000, guid: fcb9b2826f75b1142aac7e75046ff06c, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: FacePart-NoseMuscle
second: {fileID: 2100000, guid: fcb9b2826f75b1142aac7e75046ff06c, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: FacePart-OrOneStrand
second: {fileID: 2100000, guid: fcb9b2826f75b1142aac7e75046ff06c, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: FacePart-Tongue
second: {fileID: 2100000, guid: fcb9b2826f75b1142aac7e75046ff06c, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: FacePart-Wrinkles
second: {fileID: 2100000, guid: fcb9b2826f75b1142aac7e75046ff06c, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Hair-Blue
second: {fileID: 2100000, guid: fcb9b2826f75b1142aac7e75046ff06c, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Skin-Nail
second: {fileID: 2100000, guid: fcb9b2826f75b1142aac7e75046ff06c, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Skin-NoseHighlight
second: {fileID: 2100000, guid: fcb9b2826f75b1142aac7e75046ff06c, type: 2}
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
materialLocation: 0
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 3
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
preserveHierarchy: 0
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
previousCalculatedGlobalScale: 1
hasPreviousCalculatedGlobalScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1
blendShapeNormalImportMode: 0
normalSmoothingSource: 0
importAnimation: 1
copyAvatar: 0
humanDescription:
serializedVersion: 2
human:
- boneName: Hips
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: Left leg
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: Right leg
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: Left knee
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: Right knee
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: Left ankle
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: Right ankle
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: Spine
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: Neck
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
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: Left shoulder
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: Right shoulder
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: Left arm
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: Right arm
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: Left elbow
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: Right elbow
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: Left wrist
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: Right wrist
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: Left toe
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: Right toe
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: LeftEye
humanName: LeftEye
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: RightEye
humanName: RightEye
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: Thumb0_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: Thumb1_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: Thumb2_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: LittleFinger1_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: LittleFinger2_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: LittleFinger3_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: Thumb0_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: Thumb1_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: Thumb2_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: LittleFinger1_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: LittleFinger2_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: LittleFinger3_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
- boneName: Chest
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
skeleton:
- name: Touya(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: Armature
parentName: Touya(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
scale: {x: 1, y: 1, z: 1}
- name: Hips
parentName: Armature
position: {x: -0, y: 0.022061473, z: 1.0055376}
rotation: {x: 0.7071067, y: 0, z: -0, w: 0.7071068}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Spine
parentName: Hips
position: {x: -0, y: 0.116922855, z: -0.000000024214387}
rotation: {x: 0.077683635, y: 0, z: -0, w: 0.9969781}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Chest
parentName: Spine
position: {x: -0, y: 0.16835141, z: 0.000000018626451}
rotation: {x: -0.11459493, y: 0, z: -0, w: 0.9934123}
scale: {x: 1, y: 1, z: 1}
- name: Neck
parentName: Chest
position: {x: -0, y: 0.23146497, z: -0.000000008381903}
rotation: {x: 0.10255322, y: 0, z: -0, w: 0.99472755}
scale: {x: 1, y: 0.9999999, z: 1}
- name: Head
parentName: Neck
position: {x: -0, y: 0.047939166, z: -0.00000002188608}
rotation: {x: -0.06560141, y: 0, z: -0, w: 0.99784595}
scale: {x: 1, y: 1, z: 1}
- name: Eye_L
parentName: Head
position: {x: -0.03088, y: 0.076349616, z: 0.037031233}
rotation: {x: -0.272131, y: 0.67694664, z: 0.676947, w: -0.09711196}
scale: {x: 1, y: 1.0000002, z: 1.0000001}
- name: Eye_R
parentName: Head
position: {x: 0.03088, y: 0.076349616, z: 0.037031233}
rotation: {x: 0.272131, y: 0.67694664, z: 0.676947, w: 0.09711196}
scale: {x: 1, y: 1.0000002, z: 1.0000001}
- name: Tongue1
parentName: Head
position: {x: -0, y: 0.00845563, z: 0.04529848}
rotation: {x: 0.7179295, y: 0, z: -0, w: 0.69611585}
scale: {x: 1, y: 1, z: 1}
- name: Tongue2
parentName: Tongue1
position: {x: -0, y: 0.021669555, z: 0.000000095926225}
rotation: {x: 0.1068664, y: 0, z: -0, w: 0.9942734}
scale: {x: 1, y: 1, z: 1}
- name: BackHair1_L
parentName: Head
position: {x: -0.06640723, y: 0.088295825, z: -0.088812776}
rotation: {x: 1, y: -3.150519e-16, z: 0.00000004371139, w: 0.00000019470718}
scale: {x: 1, y: 1, z: 1}
- name: BackHair2_L
parentName: BackHair1_L
position: {x: -0.000000008363967, y: 0.039736345, z: 0.0000000067085746}
rotation: {x: 0.00000009251467, y: -0.00000004371139, z: 0.0000000018626328,
w: 1}
scale: {x: 1, y: 1, z: 1}
- name: BackHair1_R
parentName: Head
position: {x: 0.067129016, y: 0.088295825, z: -0.09046746}
rotation: {x: 1, y: -3.150519e-16, z: 0.00000004371139, w: 0.00000019470718}
scale: {x: 1, y: 1, z: 1}
- name: BackHair2_R
parentName: BackHair1_R
position: {x: 0.0000000063925363, y: 0.039736345, z: 0.0000000034815217}
rotation: {x: 0.00000009437734, y: -0.00000004371139, z: 0.0000000018626327,
w: 1}
scale: {x: 1, y: 1, z: 1}
- name: BackHair1
parentName: Head
position: {x: 0.009592177, y: 0.09169914, z: -0.121758655}
rotation: {x: 1, y: 1.9106857e-15, z: 0.000000043711385, w: -0.00000004371139}
scale: {x: 1, y: 0.9999998, z: 1}
- name: BackHair2
parentName: BackHair1
position: {x: -6.834355e-11, y: 0.039625514, z: 0.000000015739737}
rotation: {x: -0.00000018802419, y: -0.000000043711385, z: -8.218794e-15, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Root_SideHair1_L
parentName: Head
position: {x: -0, y: 0.00000011982264, z: -0.000000035390258}
rotation: {x: -0.00000009900879, y: 0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: SideBackHair1_L
parentName: Root_SideHair1_L
position: {x: -0.10476611, y: 0.080762275, z: -0.013480634}
rotation: {x: 1, y: -2.168199e-15, z: 0.00000004371139, w: 0.0000000754979}
scale: {x: 1, y: 1, z: 1}
- name: SideBackHair2_L
parentName: SideBackHair1_L
position: {x: -0.0000000017782239, y: 0.03596484, z: 0.0000000016745885}
rotation: {x: 0.000000046645713, y: -0.00000004371139, z: -8.830461e-15, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: SideBackHair1_R
parentName: Root_SideHair1_L
position: {x: 0.106363684, y: 0.080762275, z: -0.020515935}
rotation: {x: 1, y: 1.910687e-15, z: 0.00000004371139, w: -0.00000004371139}
scale: {x: 1, y: 1, z: 1}
- name: SideBackHair2_R
parentName: SideBackHair1_R
position: {x: -0.000000002393273, y: 0.03596484, z: 0.0000000011694592}
rotation: {x: -0.000000004860919, y: -0.00000004371139, z: -8.84287e-15, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Root_SideHair1_L_001
parentName: Root_SideHair1_L
position: {x: -0, y: 0.0000000019717987, z: -2.758327e-10}
rotation: {x: 0.0000000019033877, y: 0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: SideHair1_L
parentName: Root_SideHair1_L_001
position: {x: -0.083541915, y: 0.11619174, z: 0.045708556}
rotation: {x: 0.999985, y: 0, z: -0, w: 0.0054837945}
scale: {x: 1, y: 1, z: 0.9999348}
- name: SideHair2_L
parentName: SideHair1_L
position: {x: -0, y: 0.029176679, z: -0.0000000037252903}
rotation: {x: 0.001974962, y: 0.0000001048143, z: -0.00000010367095, w: 0.9999981}
scale: {x: 1, y: 1, z: 1}
- name: SideHair3_L
parentName: SideHair2_L
position: {x: -0.0000000034104382, y: 0.03586215, z: 0.0000000020792452}
rotation: {x: -0.000026075519, y: -0.00000010461887, z: 0.00000010357368, w: 1}
scale: {x: 1, y: 0.99999994, z: 1.0000001}
- name: SideHair1_R
parentName: Root_SideHair1_L_001
position: {x: 0.07996864, y: 0.11619173, z: 0.056791782}
rotation: {x: 0.999985, y: 0, z: -0, w: 0.0054837945}
scale: {x: 1, y: 1, z: 0.99993515}
- name: SideHair2_R
parentName: SideHair1_R
position: {x: -0, y: 0.029176645, z: -0.000000007450581}
rotation: {x: 0.0019750872, y: 3.679035e-12, z: -0.0000000018625956, w: 0.9999981}
scale: {x: 1, y: 1, z: 1}
- name: SideHair3_R
parentName: SideHair2_R
position: {x: 0.0000000060269825, y: 0.035862453, z: -0.000000004656613}
rotation: {x: -0.000026334425, y: 0.000000104611345, z: -0.00000010015445, w: 1}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Root_FrontHair1
parentName: Head
position: {x: -0, y: 0.00000011982264, z: -0.000000035390258}
rotation: {x: -0.00000009722778, y: 0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: FrontHair1
parentName: Root_FrontHair1
position: {x: -0.004531798, y: 0.13795921, z: 0.09969517}
rotation: {x: 1, y: -9.370017e-16, z: 0.00000004371139, w: -0.00000019470718}
scale: {x: 1, y: 1, z: 1}
- name: FrontHair2
parentName: FrontHair1
position: {x: -2.6602148e-10, y: 0.034470424, z: -0.000000005401359}
rotation: {x: -0.00000025147318, y: -0.00000004371139, z: -5.706348e-16, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: FrontHair3
parentName: FrontHair2
position: {x: -4.656652e-10, y: 0.028165493, z: -0.000000010757731}
rotation: {x: -1.6157742e-11, y: 3.5527137e-15, z: 1.0533319e-21, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: FrontHair1_L
parentName: Root_FrontHair1
position: {x: -0.052607544, y: 0.13864824, z: 0.086109795}
rotation: {x: 1, y: 1.9106865e-15, z: 0.00000004371139, w: -0.00000004371139}
scale: {x: 1, y: 1, z: 1}
- name: FrontHair2_L
parentName: FrontHair1_L
position: {x: -5.2233745e-10, y: 0.044291757, z: 1.4025137e-10}
rotation: {x: 0.00000001274973, y: -0.00000004371139, z: -9.313303e-10, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: FrontHair1_R
parentName: Root_FrontHair1
position: {x: 0.04418317, y: 0.13539383, z: 0.08970519}
rotation: {x: 1, y: 1.9106865e-15, z: 0.00000004371139, w: -0.00000004371139}
scale: {x: 1, y: 1, z: 1}
- name: FrontHair2_R
parentName: FrontHair1_R
position: {x: 0.0000000035172723, y: 0.036961816, z: -0.000000014542289}
rotation: {x: -0.000000020390061, y: -0.00000004371139, z: 9.31313e-10, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: FrontHair3_R
parentName: FrontHair2_R
position: {x: 0.0000000044065045, y: 0.031275894, z: -0.0000000044638573}
rotation: {x: 9.902479e-11, y: 3.5526214e-15, z: -9.3132246e-10, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LeftEye
parentName: Head
position: {x: -0.032474898, y: 0.07566059, z: 0.04379673}
rotation: {x: -1.7763568e-15, y: 0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: RightEye
parentName: Head
position: {x: 0.032504335, y: 0.07567406, z: 0.043779317}
rotation: {x: -1.7763568e-15, y: 0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Left shoulder
parentName: Chest
position: {x: -0.060043886, y: 0.18424399, z: -0.012240434}
rotation: {x: 0.64963955, y: -0.45836106, z: -0.49368408, w: -0.35234874}
scale: {x: 0.99999976, y: 0.9999999, z: 0.9999998}
- name: Left arm
parentName: Left shoulder
position: {x: 0.000000067055225, y: 0.07102693, z: -0.00000006146729}
rotation: {x: 0.12670304, y: 0.17254008, z: 0.06403598, w: 0.97471833}
scale: {x: 1, y: 1, z: 1}
- name: ZArmTwist_L
parentName: Left arm
position: {x: -0.0018313397, y: 0.09608377, z: 0.0015333248}
rotation: {x: -0.0047479747, y: 0.007331516, z: -0.0057560625, w: 0.9999453}
scale: {x: 1, y: 1, z: 1}
- name: ElbowEvenMove1_L
parentName: ZArmTwist_L
position: {x: 0.00009094365, y: 0.14631525, z: -0.00006856024}
rotation: {x: 0.8237309, y: -0.38083926, z: -0.38083932, w: 0.17717306}
scale: {x: 1, y: 0.9999997, z: 1}
- name: ElbowEvenMove2_L
parentName: ZArmTwist_L
position: {x: -0.000010106713, y: 0.15296046, z: 0.00003185775}
rotation: {x: 0.8237309, y: -0.38083926, z: -0.38083932, w: 0.17717306}
scale: {x: 1, y: 0.9999997, z: 1}
- name: Left elbow
parentName: Left arm
position: {x: 0.00000004656613, y: 0.25613236, z: 0.000000039115548}
rotation: {x: -0.00042985936, y: 0.00058959826, z: -0.00040452485, w: 0.99999964}
scale: {x: 1, y: 0.99999994, z: 1.0000001}
- name: ElbowEvenMove3_L
parentName: Left elbow
position: {x: 0.00000007264316, y: -0.00000021008964, z: -0.000000031664968}
rotation: {x: 0.8183219, y: -0.38567948, z: -0.3856795, w: 0.18125112}
scale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
- name: ElbowEvenMove4_L
parentName: Left elbow
position: {x: -0.00003312435, y: 0.0068721757, z: 0.00004934054}
rotation: {x: 0.818322, y: -0.38567933, z: -0.3856793, w: 0.18125136}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: ElbowEvenMove5_L
parentName: Left elbow
position: {x: 0.00007340126, y: 0.014081417, z: -0.00007000193}
rotation: {x: 0.81832194, y: -0.38567945, z: -0.38567924, w: 0.18125142}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: ZHandTwist_L
parentName: Left elbow
position: {x: 0.002693139, y: 0.122666344, z: 0.0036257477}
rotation: {x: -0.015471889, y: 0.004686955, z: 0.011379287, w: 0.99980456}
scale: {x: 0.99999994, y: 1, z: 1.0000001}
- name: Left wrist
parentName: Left elbow
position: {x: 0.000000034458935, y: 0.24018335, z: -0.00000002514571}
rotation: {x: 0.05710832, y: -0.013031219, z: -0.048700027, w: 0.99709433}
scale: {x: 0.9999999, y: 0.9999999, z: 1}
- name: LittleFinger1_L
parentName: Left wrist
position: {x: 0.01601341, y: 0.08437752, z: 0.010525741}
rotation: {x: -0.114333674, y: 0.08485569, z: 0.004678672, w: 0.9898007}
scale: {x: 1, y: 1, z: 0.99999994}
- name: LittleFinger2_L
parentName: LittleFinger1_L
position: {x: -0.00000008195639, y: 0.022201752, z: -0.000000052154064}
rotation: {x: 0.0197229, y: -0.01810323, z: 0.0062449947, w: 0.9996221}
scale: {x: 1, y: 1, z: 1}
- name: LittleFinger3_L
parentName: LittleFinger2_L
position: {x: 0.000000059604645, y: 0.016728273, z: -0.000000022351742}
rotation: {x: 0.0029489116, y: -0.01987613, z: 0.024757555, w: 0.9994916}
scale: {x: 1.0000001, y: 0.99999994, z: 1}
- name: RingFinger1_L
parentName: Left wrist
position: {x: 0.002414856, y: 0.08310645, z: 0.0013872925}
rotation: {x: -0.10751426, y: 0.073832944, z: -0.0012265511, w: 0.99145746}
scale: {x: 1, y: 1.0000001, z: 1}
- name: RingFinger2_L
parentName: RingFinger1_L
position: {x: -0.000000020489097, y: 0.031556103, z: 0.000000026077032}
rotation: {x: -0.0008393831, y: -0.020975662, z: 0.029465267, w: 0.99934536}
scale: {x: 1, y: 1, z: 0.99999994}
- name: RingFinger3_L
parentName: RingFinger2_L
position: {x: -0.000000039115548, y: 0.021169698, z: -0.000000024214387}
rotation: {x: 0.031332884, y: -0.017790563, z: -0.007295476, w: 0.999324}
scale: {x: 1, y: 1, z: 1}
- name: MiddleFinger1_L
parentName: Left wrist
position: {x: -0.010284978, y: 0.080992624, z: -0.0075856308}
rotation: {x: -0.09590675, y: 0.054986283, z: 0.019401792, w: 0.993681}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: MiddleFinger2_L
parentName: MiddleFinger1_L
position: {x: -0.00000004284084, y: 0.034938507, z: -0.00000006146729}
rotation: {x: 0.0069180094, y: -0.0152508505, z: 0.014480004, w: 0.9997549}
scale: {x: 1, y: 0.99999994, z: 1}
- name: MiddleFinger3_L
parentName: MiddleFinger2_L
position: {x: -0.000000027939677, y: 0.022538444, z: -0.000000078231096}
rotation: {x: 0.0070094406, y: 0.0001824524, z: -0.007773601, w: 0.9999452}
scale: {x: 0.99999994, y: 1.0000001, z: 0.99999994}
- name: IndexFinger1_L
parentName: Left wrist
position: {x: -0.02429585, y: 0.07940814, z: -0.01818331}
rotation: {x: -0.07727312, y: 0.04745528, z: 0.009691636, w: 0.9958328}
scale: {x: 0.99999994, y: 1, z: 0.9999999}
- name: IndexFinger2_L
parentName: IndexFinger1_L
position: {x: -0.00000006449409, y: 0.030001966, z: -0.00000008428469}
rotation: {x: -0.005387188, y: -0.024069855, z: 0.04136813, w: 0.9988395}
scale: {x: 1, y: 1, z: 1}
- name: IndexFinger3_L
parentName: IndexFinger2_L
position: {x: -0.0000000622822, y: 0.020592108, z: -0.000000006868504}
rotation: {x: 0.01250544, y: -0.00010751615, z: -0.01414004, w: 0.99982184}
scale: {x: 1, y: 1, z: 1}
- name: Thumb0_L
parentName: Left wrist
position: {x: -0.019873306, y: 0.02783772, z: -0.023958094}
rotation: {x: -0.32720137, y: 0.1608329, z: 0.22776407, w: 0.9028818}
scale: {x: 0.99999994, y: 1, z: 1}
- name: Thumb1_L
parentName: Thumb0_L
position: {x: -0.0000000055879354, y: 0.024782863, z: -0.00000005029142}
rotation: {x: 0.025471479, y: 0.02724412, z: -0.030434098, w: 0.9988407}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Thumb2_L
parentName: Thumb1_L
position: {x: -0.000000009313226, y: 0.018479992, z: -0.000000016763806}
rotation: {x: -0.012760224, y: -0.006465854, z: 0.014885332, w: 0.99978685}
scale: {x: 1.0000002, y: 1, z: 1}
- name: Sleeve_L
parentName: Left elbow
position: {x: 0.0048999414, y: 0.2268236, z: 0.0045284014}
rotation: {x: 0.3051019, y: -0.30321202, z: 0.10632989, w: 0.89647603}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: Right shoulder
parentName: Chest
position: {x: 0.060043886, y: 0.18448377, z: -0.015467269}
rotation: {x: 0.64963746, y: 0.45836154, z: 0.4936843, w: -0.3523518}
scale: {x: 1.0000002, y: 1.0000002, z: 0.99999994}
- name: Right arm
parentName: Right shoulder
position: {x: -0.0000000037252903, y: 0.071026936, z: 0.000000020489097}
rotation: {x: 0.1293476, y: -0.17357734, z: -0.059409373, w: 0.97447973}
scale: {x: 1.0000001, y: 0.9999999, z: 1}
- name: ZArmTwist_R
parentName: Right arm
position: {x: 0.0033916142, y: 0.0961258, z: 0.00024763495}
rotation: {x: -0.0006955192, y: -0.007376882, z: 0.010600437, w: 0.9999164}
scale: {x: 1, y: 0.99999994, z: 1}
- name: ElbowEvenMove1_R
parentName: ZArmTwist_R
position: {x: -0.00009093247, y: 0.14631525, z: -0.00006882846}
rotation: {x: 0.82373077, y: 0.38083914, z: 0.38083962, w: 0.17717323}
scale: {x: 0.99999994, y: 0.99999976, z: 1}
- name: ElbowEvenMove2_R
parentName: ZArmTwist_R
position: {x: 0.000010079704, y: 0.15296046, z: 0.000031562522}
rotation: {x: 0.8237306, y: 0.38083956, z: 0.38083968, w: 0.17717306}
scale: {x: 1, y: 0.99999994, z: 1.0000002}
- name: Right elbow
parentName: Right arm
position: {x: -0.0000000121071935, y: 0.25615597, z: -0.000000030733645}
rotation: {x: 0.003589673, y: -0.00059259415, z: 0.005276108, w: 0.9999795}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: ElbowEvenMove3_R
parentName: Right elbow
position: {x: 0.0000001816079, y: -0.00000014478792, z: -0.000000011175871}
rotation: {x: 0.8183217, y: 0.3856795, z: 0.38567975, w: 0.18125129}
scale: {x: 1, y: 0.99999994, z: 1}
- name: ElbowEvenMove4_R
parentName: Right elbow
position: {x: 0.000033340417, y: 0.006872241, z: 0.000049380586}
rotation: {x: 0.8183214, y: 0.38568, z: 0.38567987, w: 0.18125135}
scale: {x: 1.0000002, y: 1.0000005, z: 1.0000002}
- name: ElbowEvenMove5_R
parentName: Right elbow
position: {x: -0.000073242, y: 0.014081364, z: -0.00007000007}
rotation: {x: 0.81832165, y: 0.3856797, z: 0.38567975, w: 0.1812514}
scale: {x: 1, y: 1, z: 1}
- name: ZHandTwist_R
parentName: Right elbow
position: {x: -0.0026930124, y: 0.122666314, z: 0.0036257682}
rotation: {x: -0.015471515, y: -0.004686652, z: -0.011379263, w: 0.99980456}
scale: {x: 1.0000001, y: 1, z: 1.0000001}
- name: Right wrist
parentName: Right elbow
position: {x: 0.0000000055879354, y: 0.24018341, z: 0}
rotation: {x: 0.05710844, y: 0.0130311595, z: 0.048700284, w: 0.99709433}
scale: {x: 1, y: 1.0000001, z: 1}
- name: LittleFinger1_R
parentName: Right wrist
position: {x: -0.016013298, y: 0.08437739, z: 0.010525661}
rotation: {x: -0.114331104, y: -0.08485766, z: -0.0046782726, w: 0.9898009}
scale: {x: 0.9999999, y: 1, z: 0.99999994}
- name: LittleFinger2_R
parentName: LittleFinger1_R
position: {x: 0.00000009685755, y: 0.022201827, z: -0.000000029802322}
rotation: {x: 0.019729748, y: 0.018109793, z: -0.006247584, w: 0.9996218}
scale: {x: 1, y: 1, z: 1}
- name: LittleFinger3_R
parentName: LittleFinger2_R
position: {x: 0.000000059604645, y: 0.016727839, z: 0.000000055879354}
rotation: {x: 0.0029458215, y: 0.019876447, z: -0.024761492, w: 0.99949145}
scale: {x: 0.99999994, y: 0.99999994, z: 0.9999998}
- name: RingFinger1_R
parentName: Right wrist
position: {x: -0.002414666, y: 0.08310631, z: 0.0013873205}
rotation: {x: -0.10750891, y: -0.07383015, z: 0.0012281138, w: 0.99145824}
scale: {x: 1, y: 1, z: 1}
- name: RingFinger2_R
parentName: RingFinger1_R
position: {x: -0.000000016763806, y: 0.031556256, z: -0.000000057742}
rotation: {x: -0.0008500652, y: 0.020969918, z: -0.02946767, w: 0.9993454}
scale: {x: 1, y: 1.0000001, z: 1}
- name: RingFinger3_R
parentName: RingFinger2_R
position: {x: 0.00000013969839, y: 0.021169238, z: -0.000000059604645}
rotation: {x: 0.031337064, y: 0.017791836, z: 0.0072978577, w: 0.9993239}
scale: {x: 0.99999994, y: 1, z: 0.9999999}
- name: MiddleFinger1_R
parentName: Right wrist
position: {x: 0.010285216, y: 0.08099261, z: -0.007585534}
rotation: {x: -0.095904395, y: -0.054987147, z: -0.019397102, w: 0.9936813}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: MiddleFinger2_R
parentName: MiddleFinger1_R
position: {x: 0.000000077299774, y: 0.034938443, z: -0.0000000661239}
rotation: {x: 0.0069126333, y: 0.015253891, z: -0.014489905, w: 0.9997548}
scale: {x: 0.99999994, y: 1, z: 1}
- name: MiddleFinger3_R
parentName: MiddleFinger2_R
position: {x: 0.00000006239861, y: 0.022538606, z: -0.000000054948032}
rotation: {x: 0.0070107123, y: -0.00018623004, z: 0.0077804704, w: 0.99994516}
scale: {x: 1, y: 1, z: 0.9999999}
- name: IndexFinger1_R
parentName: Right wrist
position: {x: 0.024295986, y: 0.07940802, z: -0.01818332}
rotation: {x: -0.07727086, y: -0.047455117, z: -0.009688926, w: 0.99583304}
scale: {x: 0.9999999, y: 1, z: 1}
- name: IndexFinger2_R
parentName: IndexFinger1_R
position: {x: 0.0000000023283064, y: 0.030002013, z: -0.000000082771294}
rotation: {x: -0.0053927014, y: 0.024066547, z: -0.04136941, w: 0.9988395}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: IndexFinger3_R
parentName: IndexFinger2_R
position: {x: 0.000000070780516, y: 0.02059203, z: 0.000000033644028}
rotation: {x: 0.012509213, y: 0.00011173392, z: 0.01413814, w: 0.9998218}
scale: {x: 0.99999994, y: 0.9999999, z: 0.9999999}
- name: Thumb0_R
parentName: Right wrist
position: {x: 0.019873375, y: 0.027837694, z: -0.023958158}
rotation: {x: -0.327142, y: -0.16087241, z: -0.22790343, w: 0.9028611}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Thumb1_R
parentName: Thumb0_R
position: {x: -0.00000009685755, y: 0.024782857, z: 0.000000018626451}
rotation: {x: 0.025474694, y: -0.027253535, z: 0.030437514, w: 0.9988402}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Thumb2_R
parentName: Thumb1_R
position: {x: 0.000000038184226, y: 0.018479863, z: -0.000000016763806}
rotation: {x: -0.012762897, y: 0.006461266, z: -0.014883314, w: 0.9997869}
scale: {x: 1.0000001, y: 0.99999994, z: 1.0000001}
- name: Sleeve_R
parentName: Right elbow
position: {x: -0.004899904, y: 0.22682366, z: 0.00452845}
rotation: {x: 0.30510205, y: 0.30321205, z: -0.10632956, w: 0.89647603}
scale: {x: 0.99999994, y: 0.99999994, z: 1}
- name: BaeDownDaDownDoor1
parentName: Chest
position: {x: -0, y: 0.15857238, z: 0.07908037}
rotation: {x: 0.94231933, y: 0, z: -0, w: 0.33471516}
scale: {x: 1, y: 1.0000001, z: 1.0000005}
- name: BaeDownDaDownDoor2
parentName: BaeDownDaDownDoor1
position: {x: -0, y: 0.035588644, z: -0.000000052154064}
rotation: {x: 0.010909693, y: 0, z: -0, w: 0.9999405}
scale: {x: 1, y: 0.99999994, z: 1}
- name: BaeDownDaDownDoor3
parentName: BaeDownDaDownDoor2
position: {x: -0, y: 0.053867042, z: -0.00000008195639}
rotation: {x: -0.009351821, y: 0, z: -0, w: 0.9999563}
scale: {x: 1, y: 1, z: 1}
- name: BaeDownDaDownDoor4
parentName: BaeDownDaDownDoor3
position: {x: -0, y: 0.048126586, z: -0.000000037252903}
rotation: {x: 0.012139762, y: 0, z: -0, w: 0.9999263}
scale: {x: 1, y: 1, z: 0.99999994}
- name: BaeDownDaDownDoor5
parentName: BaeDownDaDownDoor4
position: {x: -0, y: 0.044173002, z: -0.000000059604645}
rotation: {x: -0.007773545, y: 0, z: -0, w: 0.9999698}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Hood1
parentName: Chest
position: {x: -0, y: 0.18070562, z: -0.12090954}
rotation: {x: 0.99931246, y: 0, z: 0, w: -0.0370758}
scale: {x: 1, y: 1, z: 1.0000191}
- name: Hood2
parentName: Hood1
position: {x: -0, y: 0.045360804, z: 0.0000000043590944}
rotation: {x: 0.00000064920994, y: 0, z: -0, w: 1}
scale: {x: 1, y: 0.99999994, z: 1}
- name: Root_JacketLowerClothes_0_0
parentName: Chest
position: {x: -0, y: 0.00000020524021, z: 0.00000003213063}
rotation: {x: -0.00000007636845, y: 0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: JacketLowerClothes_0_0
parentName: Root_JacketLowerClothes_0_0
position: {x: 0.059983246, y: 0.021689504, z: 0.108578734}
rotation: {x: 0.99570894, y: 0, z: -0, w: 0.09254043}
scale: {x: 1, y: 1, z: 0.99999994}
- name: JacketLowerClothes_1_0
parentName: JacketLowerClothes_0_0
position: {x: -0, y: 0.07426529, z: 0}
rotation: {x: 0.03559244, y: 0.00000006345622, z: -0.000000050585264, w: 0.9993664}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: JacketLowerClothes_2_0
parentName: JacketLowerClothes_1_0
position: {x: -3.792211e-10, y: 0.07307061, z: 0.0000000073918027}
rotation: {x: 0.030857515, y: -0.00000015003042, z: 0.00000013092206, w: 0.9995238}
scale: {x: 1, y: 0.99999994, z: 1}
- name: JacketLowerClothes_3_0
parentName: JacketLowerClothes_2_0
position: {x: -9.753318e-10, y: 0.07235762, z: -0.000000025419652}
rotation: {x: 0.025567181, y: 0.00000014245194, z: -0.00000013122846, w: 0.9996731}
scale: {x: 1, y: 1, z: 1.0000001}
- name: JacketLowerClothes_0_1
parentName: Root_JacketLowerClothes_0_0
position: {x: 0.11475412, y: 0.02460945, z: 0.0735095}
rotation: {x: 0.994754, y: 0.049104907, z: 0.052903883, w: 0.0724871}
scale: {x: 0.9999988, y: 0.9999998, z: 0.9999967}
- name: JacketLowerClothes_1_1
parentName: JacketLowerClothes_0_1
position: {x: -0.000000027939677, y: 0.07397987, z: -0.000000038184226}
rotation: {x: 0.029664623, y: -0.0011300497, z: 0.00365703, w: 0.9995526}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: JacketLowerClothes_2_1
parentName: JacketLowerClothes_1_1
position: {x: 0.000000011175871, y: 0.073069066, z: 0.000000016763806}
rotation: {x: 0.02462583, y: -0.007914587, z: 0.008976614, w: 0.99962515}
scale: {x: 1, y: 0.99999994, z: 1}
- name: JacketLowerClothes_3_1
parentName: JacketLowerClothes_2_1
position: {x: 0.000000013969839, y: 0.07244696, z: 0.000000018626451}
rotation: {x: 0.019555027, y: -0.014203297, z: 0.014216234, w: 0.9996068}
scale: {x: 1.0000001, y: 0.9999999, z: 0.9999998}
- name: JacketLowerClothes_0_2
parentName: Root_JacketLowerClothes_0_0
position: {x: 0.1336246, y: 0.02902401, z: 0.022239707}
rotation: {x: 0.9944329, y: 0.0692794, z: 0.074639186, w: 0.02706453}
scale: {x: 0.99999756, y: 1, z: 0.99999934}
- name: JacketLowerClothes_1_2
parentName: JacketLowerClothes_0_2
position: {x: 0.000000015832484, y: 0.07315557, z: 0.000000024214387}
rotation: {x: 0.01160068, y: 0.0016035165, z: 0.00017190579, w: 0.99993145}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: JacketLowerClothes_2_2
parentName: JacketLowerClothes_1_2
position: {x: -0.000000057742, y: 0.07295047, z: 0.0000000037252903}
rotation: {x: 0.00833613, y: -0.009711737, z: 0.009901314, w: 0.9998691}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: JacketLowerClothes_3_2
parentName: JacketLowerClothes_2_2
position: {x: 0.000000004656613, y: 0.072625734, z: -0.000000013038516}
rotation: {x: 0.0056733596, y: -0.020806124, z: 0.019733658, w: 0.9995727}
scale: {x: 1, y: 0.99999994, z: 1}
- name: JacketLowerClothes_0_3
parentName: Root_JacketLowerClothes_0_0
position: {x: 0.1043672, y: 0.037560135, z: -0.042869702}
rotation: {x: 0.9960738, y: 0.05913367, z: 0.063881256, w: -0.016106198}
scale: {x: 0.9999773, y: 0.9999997, z: 0.99999905}
- name: JacketLowerClothes_1_3
parentName: JacketLowerClothes_0_3
position: {x: -0.000000023283064, y: 0.07242214, z: -0.0000000037252903}
rotation: {x: 0.0065927817, y: 0.00064801157, z: 0.00017739198, w: 0.99997807}
scale: {x: 1, y: 1, z: 1.0000001}
- name: JacketLowerClothes_2_3
parentName: JacketLowerClothes_1_3
position: {x: -4.656613e-10, y: 0.072361775, z: -9.313226e-10}
rotation: {x: -0.0006858996, y: -0.008444633, z: 0.00812274, w: 0.99993116}
scale: {x: 0.9999999, y: 0.9999999, z: 0.9999998}
- name: JacketLowerClothes_3_3
parentName: JacketLowerClothes_2_3
position: {x: 0.000000010477379, y: 0.072207205, z: -0.0000000055879354}
rotation: {x: -0.0075831437, y: -0.017720578, z: 0.016394204, w: 0.9996798}
scale: {x: 1, y: 1, z: 0.9999999}
- name: JacketLowerClothes_0_4
parentName: Root_JacketLowerClothes_0_0
position: {x: 0.04250196, y: 0.043600276, z: -0.07748141}
rotation: {x: 0.99862176, y: 0.022539183, z: 0.024479484, w: -0.040587217}
scale: {x: 0.9999905, y: 0.9999998, z: 0.9999732}
- name: JacketLowerClothes_1_4
parentName: JacketLowerClothes_0_4
position: {x: -0.000000002561137, y: 0.07186885, z: -0.0000000034924597}
rotation: {x: 0.0061789756, y: 0.00044616967, z: -0.00015616, w: 0.9999808}
scale: {x: 0.99999994, y: 1, z: 0.99999994}
- name: JacketLowerClothes_2_4
parentName: JacketLowerClothes_1_4
position: {x: -0.000000005355105, y: 0.071874924, z: -0.0000000088475645}
rotation: {x: -0.0045690523, y: -0.003086244, z: 0.0029258938, w: 0.99998057}
scale: {x: 1, y: 1.0000001, z: 0.99999994}
- name: JacketLowerClothes_3_4
parentName: JacketLowerClothes_2_4
position: {x: 0.0000000023283064, y: 0.071841255, z: -0.000000007683411}
rotation: {x: -0.015270485, y: -0.006753258, z: 0.006180572, w: 0.9998415}
scale: {x: 0.99999994, y: 1.0000001, z: 0.99999994}
- name: JacketLowerClothes_0_5
parentName: Root_JacketLowerClothes_0_0
position: {x: -0.042501982, y: 0.043600276, z: -0.07748141}
rotation: {x: 0.9986222, y: -0.02252208, z: -0.024479039, w: -0.040587254}
scale: {x: 0.9999897, y: 0.9999998, z: 0.9999708}
- name: JacketLowerClothes_1_5
parentName: JacketLowerClothes_0_5
position: {x: 0.0000000034924597, y: 0.07186826, z: 0.0000000027939677}
rotation: {x: 0.006179309, y: -0.00044625608, z: 0.00015628147, w: 0.9999808}
scale: {x: 1, y: 1, z: 1}
- name: JacketLowerClothes_2_5
parentName: JacketLowerClothes_1_5
position: {x: 4.656613e-10, y: 0.071875475, z: -0.0000000016298145}
rotation: {x: -0.004569298, y: 0.003086615, z: -0.002926259, w: 0.9999805}
scale: {x: 0.9999999, y: 1, z: 1}
- name: JacketLowerClothes_3_5
parentName: JacketLowerClothes_2_5
position: {x: 0.00000001071021, y: 0.07184149, z: 9.313226e-10}
rotation: {x: -0.015271023, y: 0.0067533054, z: -0.006180608, w: 0.9998415}
scale: {x: 0.9999999, y: 0.99999994, z: 0.9999999}
- name: JacketLowerClothes_0_6
parentName: Root_JacketLowerClothes_0_0
position: {x: -0.104367204, y: 0.03756013, z: -0.042869683}
rotation: {x: 0.9960676, y: -0.05929051, z: -0.06384038, w: -0.016078463}
scale: {x: 1.0000023, y: 1, z: 1.0000001}
- name: JacketLowerClothes_1_6
parentName: JacketLowerClothes_0_6
position: {x: 0.00000003213063, y: 0.072422296, z: 0}
rotation: {x: 0.006592721, y: -0.00064769195, z: -0.00017762333, w: 0.99997807}
scale: {x: 0.99999994, y: 0.99999994, z: 0.99999994}
- name: JacketLowerClothes_2_6
parentName: JacketLowerClothes_1_6
position: {x: -0.000000005122274, y: 0.0723618, z: 0}
rotation: {x: -0.00068587327, y: 0.008443848, z: -0.008121757, w: 0.99993116}
scale: {x: 0.99999994, y: 0.9999999, z: 1}
- name: JacketLowerClothes_3_6
parentName: JacketLowerClothes_2_6
position: {x: -0.0000000055879354, y: 0.07220635, z: 0.0000000018626451}
rotation: {x: -0.0075833765, y: 0.017721223, z: -0.016394624, w: 0.9996798}
scale: {x: 0.99999994, y: 0.9999998, z: 0.99999994}
- name: JacketLowerClothes_0_7
parentName: Root_JacketLowerClothes_0_0
position: {x: -0.1336246, y: 0.02902401, z: 0.022239711}
rotation: {x: 0.9944336, y: -0.0692729, z: -0.0746385, w: 0.027060911}
scale: {x: 0.9999966, y: 0.9999999, z: 0.99999917}
- name: JacketLowerClothes_1_7
parentName: JacketLowerClothes_0_7
position: {x: 0.000000012572855, y: 0.07315526, z: -0.000000009313226}
rotation: {x: 0.011600325, y: -0.0016031517, z: -0.00017218544, w: 0.99993145}
scale: {x: 0.99999994, y: 1, z: 1}
- name: JacketLowerClothes_2_7
parentName: JacketLowerClothes_1_7
position: {x: 0.000000015366822, y: 0.07295058, z: -0.0000000037252903}
rotation: {x: 0.0083361585, y: 0.009711959, z: -0.009901554, w: 0.9998691}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: JacketLowerClothes_3_7
parentName: JacketLowerClothes_2_7
position: {x: -0.000000013969839, y: 0.072625995, z: -0.0000000037252903}
rotation: {x: 0.005673223, y: 0.02080679, z: -0.01973426, w: 0.99957263}
scale: {x: 0.99999994, y: 0.9999998, z: 1.0000001}
- name: JacketLowerClothes_0_8
parentName: Root_JacketLowerClothes_0_0
position: {x: -0.11475412, y: 0.02460945, z: 0.07350951}
rotation: {x: 0.9947519, y: -0.049144384, z: -0.05290273, w: 0.07249059}
scale: {x: 1.0000023, y: 1, z: 1.0000064}
- name: JacketLowerClothes_1_8
parentName: JacketLowerClothes_0_8
position: {x: -9.313226e-10, y: 0.073979765, z: -0.0000000027939677}
rotation: {x: 0.029664215, y: 0.0011300454, z: -0.0036569913, w: 0.9995526}
scale: {x: 1, y: 1.0000001, z: 1}
- name: JacketLowerClothes_2_8
parentName: JacketLowerClothes_1_8
position: {x: 0.000000008381903, y: 0.073069364, z: -9.313226e-10}
rotation: {x: 0.024626447, y: 0.007914405, z: -0.008976487, w: 0.99962515}
scale: {x: 0.99999994, y: 1, z: 1}
- name: JacketLowerClothes_3_8
parentName: JacketLowerClothes_2_8
position: {x: -0.000000013969839, y: 0.07244666, z: 0.000000010244548}
rotation: {x: 0.01955391, y: 0.014203933, z: -0.014216648, w: 0.9996068}
scale: {x: 1, y: 1.0000001, z: 0.99999994}
- name: JacketLowerClothes_0_9
parentName: Root_JacketLowerClothes_0_0
position: {x: -0.059983246, y: 0.021689504, z: 0.108578734}
rotation: {x: 0.99570894, y: 0, z: -0, w: 0.09254043}
scale: {x: 1, y: 1, z: 0.99999994}
- name: JacketLowerClothes_1_9
parentName: JacketLowerClothes_0_9
position: {x: -0, y: 0.07426529, z: 0}
rotation: {x: 0.03559244, y: -0.00000006345622, z: 0.000000050585264, w: 0.9993664}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: JacketLowerClothes_2_9
parentName: JacketLowerClothes_1_9
position: {x: 3.792211e-10, y: 0.07307061, z: 0.0000000073918027}
rotation: {x: 0.030857515, y: 0.00000015003042, z: -0.00000013092206, w: 0.9995238}
scale: {x: 1, y: 0.99999994, z: 1}
- name: JacketLowerClothes_3_9
parentName: JacketLowerClothes_2_9
position: {x: 9.753318e-10, y: 0.07235762, z: -0.000000025419652}
rotation: {x: 0.025567181, y: -0.00000014245194, z: 0.00000013122846, w: 0.9996731}
scale: {x: 1, y: 1, z: 1.0000001}
- name: Left leg
parentName: Hips
position: {x: -0.08819596, y: -0.05758876, z: 0.061866418}
rotation: {x: 0.99993116, y: -0.00019498682, z: -0.0004819365, w: 0.0117241815}
scale: {x: 0.9999997, y: 1, z: 0.99983525}
- name: Left knee
parentName: Left leg
position: {x: 9.640644e-10, y: 0.38660222, z: -0.000000005486072}
rotation: {x: 0.09632819, y: -0.0040466078, z: 0.0038617298, w: 0.9953339}
scale: {x: 0.99999994, y: 0.9999999, z: 0.9999999}
- name: Left ankle
parentName: Left knee
position: {x: -0.0000000011059456, y: 0.44271502, z: -0.0000000027939677}
rotation: {x: -0.59874666, y: -0.027434137, z: 0.03834853, w: 0.7995494}
scale: {x: 1.0000001, y: 1, z: 1}
- name: Left toe
parentName: Left ankle
position: {x: 0.0065629743, y: 0.16246273, z: 0.00633411}
rotation: {x: -0.21876746, y: 0.011441815, z: 0.009049363, w: 0.975668}
scale: {x: 1, y: 1, z: 0.9999999}
- name: Root_ShoesStringAh1_L
parentName: Left ankle
position: {x: 0.000000014086254, y: 0.00000003632158, z: -0.0000000055879354}
rotation: {x: 0.00000010384247, y: 0.0000010097865, z: 0.00000002188608, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Root_ShoesStringAh1_L_001
parentName: Root_ShoesStringAh1_L
position: {x: -0.00000000896398, y: -0.000000030035153, z: 0.000000022351742}
rotation: {x: -0.000000035855916, y: 0.000000011874363, z: 0.000000006984919,
w: 1}
scale: {x: 1, y: 1.0000001, z: 1}
- name: Root_ShoesStringAh1_L_002
parentName: Root_ShoesStringAh1_L_001
position: {x: -5.820766e-10, y: 0.000000010011718, z: -0.0000000055879354}
rotation: {x: -0.0000000813161, y: -0.00000006216578, z: 0.0000000121071935,
w: 1}
scale: {x: 1, y: 1, z: 1}
- name: ShoesStringAh1_L
parentName: Root_ShoesStringAh1_L_002
position: {x: -0.0033077216, y: 0.06867094, z: -0.017786136}
rotation: {x: -0.5885687, y: 0.6559974, z: -0.120164566, w: -0.45696262}
scale: {x: 1, y: 1, z: 1}
- name: ShoesStringCh1_L
parentName: Root_ShoesStringAh1_L_002
position: {x: -0.0032107835, y: 0.06912203, z: -0.016932262}
rotation: {x: 0.4752896, y: -0.634988, z: 0.12136895, w: 0.5967911}
scale: {x: 1, y: 1.0000001, z: 1}
- name: ShoesStringCh2_L
parentName: ShoesStringCh1_L
position: {x: -0.0000000037252903, y: 0.03302401, z: -0.0000000055879354}
rotation: {x: -0.114032954, y: 0.33780327, z: -0.27745178, w: 0.8921356}
scale: {x: 1, y: 0.9999999, z: 1}
- name: ShoesStringA1_L
parentName: Root_ShoesStringAh1_L_002
position: {x: 0.0002149092, y: 0.069358364, z: -0.017869167}
rotation: {x: 0.6315989, y: 0.65716887, z: -0.18565632, w: 0.36707446}
scale: {x: 0.99999994, y: 0.99999976, z: 0.99999994}
- name: ShoesStringI1_L
parentName: Root_ShoesStringAh1_L_002
position: {x: 0.00057488424, y: 0.069941096, z: -0.016854316}
rotation: {x: 0.5851687, y: 0.5786577, z: -0.16502415, w: 0.543599}
scale: {x: 0.9999999, y: 0.9999996, z: 0.9999999}
- name: ShoesStringI2_L
parentName: ShoesStringI1_L
position: {x: 0.0000000055879354, y: 0.03210477, z: 0.0000000013969839}
rotation: {x: -0.17970608, y: -0.27589524, z: 0.21144123, w: 0.9202609}
scale: {x: 1, y: 0.99999994, z: 1.0000001}
- name: Right leg
parentName: Hips
position: {x: 0.08819596, y: -0.05758876, z: 0.061866418}
rotation: {x: 0.99993116, y: 0.00019498682, z: 0.0004819365, w: 0.0117241815}
scale: {x: 0.9999997, y: 1, z: 0.99983525}
- name: Right knee
parentName: Right leg
position: {x: -9.640644e-10, y: 0.38660222, z: -0.000000005486072}
rotation: {x: 0.09632819, y: 0.0040466078, z: -0.0038617298, w: 0.9953339}
scale: {x: 0.99999994, y: 0.9999999, z: 0.9999999}
- name: Right ankle
parentName: Right knee
position: {x: 0.0000000011059456, y: 0.44271502, z: -0.0000000027939677}
rotation: {x: -0.59874666, y: 0.027434193, z: -0.03834859, w: 0.7995494}
scale: {x: 1, y: 1, z: 1}
- name: ShoesStringAh1_R
parentName: Right ankle
position: {x: 0.0033077449, y: 0.06867096, z: -0.01778609}
rotation: {x: 0.588569, y: 0.6559968, z: -0.12016389, w: 0.4569632}
scale: {x: 0.99999976, y: 0.9999995, z: 0.99999994}
- name: ShoesStringCh1_R
parentName: Right ankle
position: {x: 0.0032107988, y: 0.069122024, z: -0.01693223}
rotation: {x: 0.4752895, y: 0.6349873, z: -0.121368475, w: 0.59679204}
scale: {x: 0.9999998, y: 0.99999976, z: 0.9999999}
- name: ShoesStringCh2_R
parentName: ShoesStringCh1_R
position: {x: -0.000000010244548, y: 0.033024058, z: 0.000000018626451}
rotation: {x: -0.11403239, y: -0.3378027, z: 0.27745157, w: 0.892136}
scale: {x: 1.0000001, y: 0.99999994, z: 1.0000001}
- name: Right toe
parentName: Right ankle
position: {x: -0.006554555, y: 0.1624629, z: 0.0063349856}
rotation: {x: -0.21903415, y: -0.0060548615, z: -0.010309188, w: 0.97564393}
scale: {x: 1, y: 0.99999994, z: 1}
- name: BeltFront1
parentName: Hips
position: {x: -0.1195184, y: -0.0028255128, z: 0.1413637}
rotation: {x: 1, y: 1.9106859e-15, z: 0.00000004371139, w: -0.00000004371139}
scale: {x: 1, y: 1, z: 1}
- name: BeltFront2
parentName: BeltFront1
position: {x: 0.0000000029791494, y: 0.047369257, z: -0.0000000104486295}
rotation: {x: -0.00000020141849, y: -0.00000004371139, z: -8.80428e-15, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: BeltFront3
parentName: BeltFront2
position: {x: -8.4654506e-16, y: 0.07398105, z: -0.0000000048677284}
rotation: {x: 0.00000015106384, y: 3.552714e-15, z: -5.3668664e-22, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: BehindBelt1_L
parentName: Hips
position: {x: -0.16322544, y: -0.042946275, z: 0.005991161}
rotation: {x: 0.9869854, y: -0.1126799, z: -0.11266855, w: -0.021656133}
scale: {x: 1.0000026, y: 1.0000002, z: 1}
- name: BehindBelt2_L
parentName: BehindBelt1_L
position: {x: -0.000000034458935, y: 0.048106782, z: 0.000000007450581}
rotation: {x: 0.024986498, y: -0.012339227, z: 0.0070599914, w: 0.9995867}
scale: {x: 0.99999994, y: 1.0000001, z: 0.9999999}
- name: BehindBelt3_L
parentName: BehindBelt2_L
position: {x: 0.0000000023283064, y: 0.0908096, z: -0.0000000055879354}
rotation: {x: 0.0019958033, y: -0.004030981, z: 0.003914244, w: 0.99998224}
scale: {x: 0.99999994, y: 0.9999999, z: 0.9999999}
- name: BehindBelt4_L
parentName: BehindBelt3_L
position: {x: -0.000000024680048, y: 0.08792479, z: -0.0000000018626451}
rotation: {x: 0.0052371263, y: 0.0075589693, z: -0.009764009, w: 0.99991006}
scale: {x: 1, y: 1.0000001, z: 1}
- name: BehindBelt5_L
parentName: BehindBelt4_L
position: {x: 0.000000034458935, y: 0.08145972, z: -0.0000000037252903}
rotation: {x: 0.0088754995, y: -0.0043344772, z: 0.0025990761, w: 0.99994785}
scale: {x: 0.99999994, y: 1, z: 1}
- name: BehindBelt6_L
parentName: BehindBelt5_L
position: {x: 0.000000008381903, y: 0.084689006, z: -0.000000007450581}
rotation: {x: -0.009968706, y: 0.007955163, z: -0.006430393, w: 0.999898}
scale: {x: 0.99999994, y: 0.9999999, z: 0.99999994}
- name: BehindBelt1_R
parentName: Hips
position: {x: 0.16322544, y: -0.042946275, z: 0.005991161}
rotation: {x: 0.9869854, y: 0.1126799, z: 0.11266855, w: -0.021656133}
scale: {x: 1.0000026, y: 1.0000002, z: 1}
- name: BehindBelt2_R
parentName: BehindBelt1_R
position: {x: 0.000000034458935, y: 0.048106782, z: 0.000000007450581}
rotation: {x: 0.024986498, y: 0.012339227, z: -0.0070599914, w: 0.9995867}
scale: {x: 0.99999994, y: 1.0000001, z: 0.9999999}
- name: BehindBelt3_R
parentName: BehindBelt2_R
position: {x: -0.0000000023283064, y: 0.0908096, z: -0.0000000055879354}
rotation: {x: 0.0019958033, y: 0.004030981, z: -0.003914244, w: 0.99998224}
scale: {x: 0.99999994, y: 0.9999999, z: 0.9999999}
- name: BehindBelt4_R
parentName: BehindBelt3_R
position: {x: 0.000000024680048, y: 0.08792479, z: -0.0000000018626451}
rotation: {x: 0.0052371263, y: -0.0075589693, z: 0.009764009, w: 0.99991006}
scale: {x: 1, y: 1.0000001, z: 1}
- name: BehindBelt5_R
parentName: BehindBelt4_R
position: {x: -0.000000034458935, y: 0.08145972, z: -0.0000000037252903}
rotation: {x: 0.0088754995, y: 0.0043344772, z: -0.0025990761, w: 0.99994785}
scale: {x: 0.99999994, y: 1, z: 1}
- name: BehindBelt6_R
parentName: BehindBelt5_R
position: {x: -0.000000008381903, y: 0.084689006, z: -0.000000007450581}
rotation: {x: -0.009968706, y: -0.007955163, z: 0.006430393, w: 0.999898}
scale: {x: 0.99999994, y: 0.9999999, z: 0.99999994}
- name: Cordon1
parentName: Hips
position: {x: -0.15678951, y: 0.018391723, z: 0.06804617}
rotation: {x: 0.999807, y: -0.0040514315, z: -0.0033892829, w: -0.018923143}
scale: {x: 1.0000046, y: 1.0000001, z: 1.0001407}
- name: Root_FrontBelt1_L
parentName: Hips
position: {x: -0, y: 0.00000012183922, z: -0.0000000055879354}
rotation: {x: -0.000000093132385, y: 0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Root_FrontBelt1_L_001
parentName: Root_FrontBelt1_L
position: {x: -0, y: 0.0000000067392083, z: -8.309655e-10}
rotation: {x: 0.000000010498713, y: 0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: FrontBelt1_L
parentName: Root_FrontBelt1_L_001
position: {x: -0.16101006, y: -0.04272371, z: 0.014051813}
rotation: {x: 0.9778135, y: -0.1476201, z: -0.14762007, w: 0.01724705}
scale: {x: 0.9999998, y: 1.0000001, z: 1}
- name: FrontBelt2_L
parentName: FrontBelt1_L
position: {x: 0.000000006170012, y: 0.046034694, z: 0.0000000023283064}
rotation: {x: 0.00079242815, y: 0.027432933, z: -0.026716962, w: 0.99926627}
scale: {x: 1, y: 1, z: 0.99999994}
- name: FrontBelt3_L
parentName: FrontBelt2_L
position: {x: -0.000000039086444, y: 0.09743895, z: -0.000000006868504}
rotation: {x: 0.00034253913, y: -0.005601412, z: 0.0053333747, w: 0.99997}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: FrontBelt4_L
parentName: FrontBelt3_L
position: {x: -0.000000024563633, y: 0.083383285, z: -4.2200554e-10}
rotation: {x: 0.0023091675, y: -0.012842322, z: 0.011842427, w: 0.9998448}
scale: {x: 1, y: 1, z: 1}
- name: FrontBelt5_L
parentName: FrontBelt4_L
position: {x: 0.000000005355105, y: 0.08223306, z: 0.0000000060535967}
rotation: {x: 0.009522963, y: 0.007960354, z: -0.010393314, w: 0.999869}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: FrontBelt6_L
parentName: FrontBelt5_L
position: {x: -0.000000013504177, y: 0.08685194, z: 0.0000000027939677}
rotation: {x: -0.00432174, y: -0.0017080901, z: 0.0028281123, w: 0.9999852}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: FrontBelt1_R
parentName: Root_FrontBelt1_L_001
position: {x: 0.16101006, y: -0.04272371, z: 0.014051813}
rotation: {x: 0.9778135, y: 0.1476201, z: 0.14762007, w: 0.01724705}
scale: {x: 0.9999998, y: 1.0000001, z: 1}
- name: FrontBelt2_R
parentName: FrontBelt1_R
position: {x: -0.000000006170012, y: 0.046034694, z: 0.0000000023283064}
rotation: {x: 0.00079242815, y: -0.027432933, z: 0.026716962, w: 0.99926627}
scale: {x: 1, y: 1, z: 0.99999994}
- name: FrontBelt3_R
parentName: FrontBelt2_R
position: {x: 0.000000039086444, y: 0.09743895, z: -0.000000006868504}
rotation: {x: 0.00034253913, y: 0.005601412, z: -0.0053333747, w: 0.99997}
scale: {x: 1, y: 1.0000001, z: 1.0000001}
- name: FrontBelt4_R
parentName: FrontBelt3_R
position: {x: 0.000000024563633, y: 0.083383285, z: -4.2200554e-10}
rotation: {x: 0.0023091675, y: 0.012842322, z: -0.011842427, w: 0.9998448}
scale: {x: 1, y: 1, z: 1}
- name: FrontBelt5_R
parentName: FrontBelt4_R
position: {x: -0.000000005355105, y: 0.08223306, z: 0.0000000060535967}
rotation: {x: 0.009522963, y: -0.007960354, z: 0.010393314, w: 0.999869}
scale: {x: 1, y: 0.9999999, z: 0.99999994}
- name: FrontBelt6_R
parentName: FrontBelt5_R
position: {x: 0.000000013504177, y: 0.08685194, z: 0.0000000027939677}
rotation: {x: -0.00432174, y: 0.0017080901, z: -0.0028281123, w: 0.9999852}
scale: {x: 1, y: 0.99999994, z: 0.99999994}
- name: Body
parentName: Touya(Clone)
position: {x: -0, y: 0, z: 0}
rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
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: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 3
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
|