1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
|
fileFormatVersion: 2
guid: 77bef735323d73e4795a7cc191f8b15a
ModelImporter:
serializedVersion: 23
fileIDToRecycleName:
100000: All
100002: ALL_Animation
100004: //RootNode
100006: Body
100008: Body_CTRL
100010: Body_LP
100012: Body_LP1
100014: grp_ctrl_ballLift_Left
100016: grp_ctrl_ballLift_Right
100018: grp_ctrl_toeLift_Left
100020: grp_ctrl_toeLift_Right
100022: grp_ctrl_toeWiggle_Left
100024: grp_ctrl_toeWiggle_Right
100026: Head
100028: Head_CTRL
100030: Head_LP
100032: Hip_J
100034: Hrebet_LP
100036: joint10
100038: L_Ball_ik
100040: L_CTR_ik
100042: L_CTRL_Arm
100044: L_Elbow_J
100046: L_Finger1_1_J
100048: L_Finger1_2_J
100050: L_Finger1_3_J
100052: L_Finger1_J
100054: L_Finger2_1_J
100056: L_Finger2_2_J
100058: L_Finger2_3_J
100060: L_Finger2_J
100062: L_Finger3_1_J
100064: L_Finger3_2_J
100066: L_Finger3_3_J
100068: L_Finger3_J
100070: L_Finger4_1_J
100072: L_Finger4_2_J
100074: L_Finger4_3_J
100076: L_Finger4_J
100078: L_Finger5_1_J
100080: L_Finger5_2_J
100082: L_Finger5_3_J
100084: L_Finger5_J
100086: L_Finger_1
100088: L_Finger_2
100090: L_Finger_3
100092: L_Finger_4
100094: L_Finger_5
100096: L_Foot2_J
100098: L_Foot_ik
100100: L_Foot_J
100102: L_Hand_ik
100104: L_joint5_J
100106: L_Leg2_J
100108: L_Leg_J
100110: L_Shoulder_J
100112: L_Toe_ik
100114: L_Wrist
100116: L_Wrist_J
100118: Left_arm_LP
100120: Left_legs_LP
100122: Left_legs_LP_LP_UV_4_Duble1:pCube174
100124: Left_legs_LP_LP_UV_4_Duble2:pCube239
100126: Left_legs_LP_LP_UV_4_Duble3:pCube236
100128: Left_legs_LP_LP_UV_4_Duble:pCylinder471
100130: locator1
100132: locator2
100134: locator3
100136: locator4
100138: LP_UV_4_Duble:pCube1
100140: LP_UV_4_Duble:pCube1 1
100142: LP_UV_4_Duble:pCube225
100144: LP_UV_4_Duble:pCube226
100146: LP_UV_4_Duble:pCube233
100148: LP_UV_4_Duble:pCube233 1
100150: LP_UV_4_Duble:pCube248
100152: LP_UV_4_Duble:pCube248 1
100154: LP_UV_4_Duble:pCube250
100156: LP_UV_4_Duble:pCube250 1
100158: LP_UV_4_Duble:pCube251
100160: LP_UV_4_Duble:pCube251 1
100162: LP_UV_4_Duble:pCube252
100164: LP_UV_4_Duble:pCube252 1
100166: LP_UV_4_Duble:pCube257
100168: LP_UV_4_Duble:pCube257 1
100170: LP_UV_4_Duble:pCube258
100172: LP_UV_4_Duble:pCube258 1
100174: LP_UV_4_Duble:pCube259
100176: LP_UV_4_Duble:pCube259 1
100178: LP_UV_4_Duble:pCube260
100180: LP_UV_4_Duble:pCube260 1
100182: LP_UV_4_Duble:pCube261
100184: LP_UV_4_Duble:pCube261 1
100186: LP_UV_4_Duble:pCube262
100188: LP_UV_4_Duble:pCube262 1
100190: LP_UV_4_Duble:pCube263
100192: LP_UV_4_Duble:pCube263 1
100194: LP_UV_4_Duble:pCube264
100196: LP_UV_4_Duble:pCube264 1
100198: LP_UV_4_Duble:pCube265
100200: LP_UV_4_Duble:pCube265 1
100202: LP_UV_4_Duble:pCube266
100204: LP_UV_4_Duble:pCube266 1
100206: LP_UV_4_Duble:pCube267
100208: LP_UV_4_Duble:pCube267 1
100210: LP_UV_4_Duble:pCube268
100212: LP_UV_4_Duble:pCube268 1
100214: LP_UV_4_Duble:pCube269
100216: LP_UV_4_Duble:pCube269 1
100218: LP_UV_4_Duble:pCube270
100220: LP_UV_4_Duble:pCube270 1
100222: LP_UV_4_Duble:pCube271
100224: LP_UV_4_Duble:pCube271 1
100226: LP_UV_4_Duble:pCube272
100228: LP_UV_4_Duble:pCube272 1
100230: LP_UV_4_Duble:pCube362
100232: LP_UV_4_Duble:pCube364
100234: LP_UV_4_Duble:pCube365
100236: LP_UV_4_Duble:pCube374
100238: LP_UV_4_Duble:pCube375
100240: LP_UV_4_Duble:pCube376
100242: LP_UV_4_Duble:pCube377
100244: LP_UV_4_Duble:pCylinder1
100246: LP_UV_4_Duble:pCylinder1 1
100248: LP_UV_4_Duble:pCylinder272
100250: LP_UV_4_Duble:pCylinder273
100252: LP_UV_4_Duble:pCylinder278
100254: LP_UV_4_Duble:pCylinder326
100256: LP_UV_4_Duble:pCylinder327
100258: LP_UV_4_Duble:pCylinder328
100260: LP_UV_4_Duble:pCylinder329
100262: LP_UV_4_Duble:pCylinder330
100264: LP_UV_4_Duble:pCylinder341
100266: LP_UV_4_Duble:pCylinder348
100268: LP_UV_4_Duble:pCylinder384
100270: LP_UV_4_Duble:pCylinder384 1
100272: LP_UV_4_Duble:pCylinder385
100274: LP_UV_4_Duble:pCylinder385 1
100276: LP_UV_4_Duble:pCylinder386
100278: LP_UV_4_Duble:pCylinder386 1
100280: LP_UV_4_Duble:pCylinder387
100282: LP_UV_4_Duble:pCylinder387 1
100284: LP_UV_4_Duble:pCylinder388
100286: LP_UV_4_Duble:pCylinder397
100288: LP_UV_4_Duble:pCylinder397 1
100290: LP_UV_4_Duble:pCylinder398
100292: LP_UV_4_Duble:pCylinder398 1
100294: LP_UV_4_Duble:pCylinder399
100296: LP_UV_4_Duble:pCylinder399 1
100298: LP_UV_4_Duble:pCylinder400
100300: LP_UV_4_Duble:pCylinder400 1
100302: LP_UV_4_Duble:pCylinder401
100304: LP_UV_4_Duble:pCylinder401 1
100306: LP_UV_4_Duble:pCylinder402
100308: LP_UV_4_Duble:pCylinder402 1
100310: LP_UV_4_Duble:pCylinder404
100312: LP_UV_4_Duble:pCylinder404 1
100314: LP_UV_4_Duble:pCylinder405
100316: LP_UV_4_Duble:pCylinder405 1
100318: LP_UV_4_Duble:pCylinder406
100320: LP_UV_4_Duble:pCylinder406 1
100322: LP_UV_4_Duble:pCylinder407
100324: LP_UV_4_Duble:pCylinder407 1
100326: LP_UV_4_Duble:pCylinder408
100328: LP_UV_4_Duble:pCylinder408 1
100330: LP_UV_4_Duble:pCylinder409
100332: LP_UV_4_Duble:pCylinder409 1
100334: LP_UV_4_Duble:pCylinder410
100336: LP_UV_4_Duble:pCylinder410 1
100338: LP_UV_4_Duble:pCylinder411
100340: LP_UV_4_Duble:pCylinder411 1
100342: LP_UV_4_Duble:pCylinder412
100344: LP_UV_4_Duble:pCylinder412 1
100346: LP_UV_4_Duble:pCylinder413
100348: LP_UV_4_Duble:pCylinder413 1
100350: LP_UV_4_Duble:pCylinder456
100352: LP_UV_4_Duble:pCylinder474
100354: LP_UV_4_Duble:pCylinder486
100356: LP_UV_4_Duble:pCylinder487
100358: LP_UV_4_Duble:pCylinder488
100360: LP_UV_4_Duble:pCylinder490
100362: LP_UV_4_Duble:pCylinder491
100364: LP_UV_4_Duble:pCylinder494
100366: LP_UV_4_Duble:pCylinder501
100368: LP_UV_4_Duble:pCylinder502
100370: LP_UV_4_Duble:pCylinder503
100372: LP_UV_4_Duble:pCylinder504
100374: LP_UV_4_Duble:pCylinder505
100376: LP_UV_4_Duble:polySurface12
100378: LP_UV_4_Duble:pPlane1
100380: LP_UV_4_Duble:pPlane7
100382: LP_UV_4_Duble:pSphere6
100384: Neck_1
100386: pCube174
100388: pCube175
100390: pCylinder1
100392: pCylinder5
100394: pSphere1
100396: pSphere6
100398: R_Arm_1_LP_UV_4_Duble1:pCylinder1
100400: R_Ball_ik
100402: R_CTR_ik
100404: R_CTRL_Arm
100406: R_Elbow_J
100408: R_Finger1_1_J
100410: R_Finger1_2_J
100412: R_Finger1_3_J
100414: R_Finger1_J
100416: R_Finger2_1_J
100418: R_Finger2_2_J
100420: R_Finger2_3_J
100422: R_Finger2_J
100424: R_Finger3_1_J
100426: R_Finger3_2_J
100428: R_Finger3_3_J
100430: R_Finger3_J
100432: R_Finger4_1_J
100434: R_Finger4_2_J
100436: R_Finger4_3_J
100438: R_Finger4_J
100440: R_Finger5_1_J
100442: R_Finger5_2_J
100444: R_Finger5_3_J
100446: R_Finger5_J
100448: R_Finger_1
100450: R_Finger_2
100452: R_Finger_3
100454: R_Finger_4
100456: R_Finger_5
100458: R_Foot2_J
100460: R_Foot_ik
100462: R_Foot_J
100464: R_Hand_ik
100466: R_joint5_J
100468: R_Leg2_J
100470: R_Leg_J
100472: R_Shoulder_J
100474: R_Toe_ik
100476: R_Wrist
100478: R_Wrist_J
100480: R_Wrist_LP_UV_4_Duble:pCylinder388
100482: Right_arm_LP
100484: Right_arm_LP_LP_UV_4_Duble1:pSphere1
100486: Right_legs_LP
100488: Spine1_J
100490: Spine2_J
100492: Spine3_J
100494: Spine4_J
100496: Spine5_J
100498: Taz_CTRL
100500: Taz_LP
100502: Taz_LP1
400000: All
400002: ALL_Animation
400004: //RootNode
400006: Body
400008: Body_CTRL
400010: Body_LP
400012: Body_LP1
400014: grp_ctrl_ballLift_Left
400016: grp_ctrl_ballLift_Right
400018: grp_ctrl_toeLift_Left
400020: grp_ctrl_toeLift_Right
400022: grp_ctrl_toeWiggle_Left
400024: grp_ctrl_toeWiggle_Right
400026: Head
400028: Head_CTRL
400030: Head_LP
400032: Hip_J
400034: Hrebet_LP
400036: joint10
400038: L_Ball_ik
400040: L_CTR_ik
400042: L_CTRL_Arm
400044: L_Elbow_J
400046: L_Finger1_1_J
400048: L_Finger1_2_J
400050: L_Finger1_3_J
400052: L_Finger1_J
400054: L_Finger2_1_J
400056: L_Finger2_2_J
400058: L_Finger2_3_J
400060: L_Finger2_J
400062: L_Finger3_1_J
400064: L_Finger3_2_J
400066: L_Finger3_3_J
400068: L_Finger3_J
400070: L_Finger4_1_J
400072: L_Finger4_2_J
400074: L_Finger4_3_J
400076: L_Finger4_J
400078: L_Finger5_1_J
400080: L_Finger5_2_J
400082: L_Finger5_3_J
400084: L_Finger5_J
400086: L_Finger_1
400088: L_Finger_2
400090: L_Finger_3
400092: L_Finger_4
400094: L_Finger_5
400096: L_Foot2_J
400098: L_Foot_ik
400100: L_Foot_J
400102: L_Hand_ik
400104: L_joint5_J
400106: L_Leg2_J
400108: L_Leg_J
400110: L_Shoulder_J
400112: L_Toe_ik
400114: L_Wrist
400116: L_Wrist_J
400118: Left_arm_LP
400120: Left_legs_LP
400122: Left_legs_LP_LP_UV_4_Duble1:pCube174
400124: Left_legs_LP_LP_UV_4_Duble2:pCube239
400126: Left_legs_LP_LP_UV_4_Duble3:pCube236
400128: Left_legs_LP_LP_UV_4_Duble:pCylinder471
400130: locator1
400132: locator2
400134: locator3
400136: locator4
400138: LP_UV_4_Duble:pCube1
400140: LP_UV_4_Duble:pCube1 1
400142: LP_UV_4_Duble:pCube225
400144: LP_UV_4_Duble:pCube226
400146: LP_UV_4_Duble:pCube233
400148: LP_UV_4_Duble:pCube233 1
400150: LP_UV_4_Duble:pCube248
400152: LP_UV_4_Duble:pCube248 1
400154: LP_UV_4_Duble:pCube250
400156: LP_UV_4_Duble:pCube250 1
400158: LP_UV_4_Duble:pCube251
400160: LP_UV_4_Duble:pCube251 1
400162: LP_UV_4_Duble:pCube252
400164: LP_UV_4_Duble:pCube252 1
400166: LP_UV_4_Duble:pCube257
400168: LP_UV_4_Duble:pCube257 1
400170: LP_UV_4_Duble:pCube258
400172: LP_UV_4_Duble:pCube258 1
400174: LP_UV_4_Duble:pCube259
400176: LP_UV_4_Duble:pCube259 1
400178: LP_UV_4_Duble:pCube260
400180: LP_UV_4_Duble:pCube260 1
400182: LP_UV_4_Duble:pCube261
400184: LP_UV_4_Duble:pCube261 1
400186: LP_UV_4_Duble:pCube262
400188: LP_UV_4_Duble:pCube262 1
400190: LP_UV_4_Duble:pCube263
400192: LP_UV_4_Duble:pCube263 1
400194: LP_UV_4_Duble:pCube264
400196: LP_UV_4_Duble:pCube264 1
400198: LP_UV_4_Duble:pCube265
400200: LP_UV_4_Duble:pCube265 1
400202: LP_UV_4_Duble:pCube266
400204: LP_UV_4_Duble:pCube266 1
400206: LP_UV_4_Duble:pCube267
400208: LP_UV_4_Duble:pCube267 1
400210: LP_UV_4_Duble:pCube268
400212: LP_UV_4_Duble:pCube268 1
400214: LP_UV_4_Duble:pCube269
400216: LP_UV_4_Duble:pCube269 1
400218: LP_UV_4_Duble:pCube270
400220: LP_UV_4_Duble:pCube270 1
400222: LP_UV_4_Duble:pCube271
400224: LP_UV_4_Duble:pCube271 1
400226: LP_UV_4_Duble:pCube272
400228: LP_UV_4_Duble:pCube272 1
400230: LP_UV_4_Duble:pCube362
400232: LP_UV_4_Duble:pCube364
400234: LP_UV_4_Duble:pCube365
400236: LP_UV_4_Duble:pCube374
400238: LP_UV_4_Duble:pCube375
400240: LP_UV_4_Duble:pCube376
400242: LP_UV_4_Duble:pCube377
400244: LP_UV_4_Duble:pCylinder1
400246: LP_UV_4_Duble:pCylinder1 1
400248: LP_UV_4_Duble:pCylinder272
400250: LP_UV_4_Duble:pCylinder273
400252: LP_UV_4_Duble:pCylinder278
400254: LP_UV_4_Duble:pCylinder326
400256: LP_UV_4_Duble:pCylinder327
400258: LP_UV_4_Duble:pCylinder328
400260: LP_UV_4_Duble:pCylinder329
400262: LP_UV_4_Duble:pCylinder330
400264: LP_UV_4_Duble:pCylinder341
400266: LP_UV_4_Duble:pCylinder348
400268: LP_UV_4_Duble:pCylinder384
400270: LP_UV_4_Duble:pCylinder384 1
400272: LP_UV_4_Duble:pCylinder385
400274: LP_UV_4_Duble:pCylinder385 1
400276: LP_UV_4_Duble:pCylinder386
400278: LP_UV_4_Duble:pCylinder386 1
400280: LP_UV_4_Duble:pCylinder387
400282: LP_UV_4_Duble:pCylinder387 1
400284: LP_UV_4_Duble:pCylinder388
400286: LP_UV_4_Duble:pCylinder397
400288: LP_UV_4_Duble:pCylinder397 1
400290: LP_UV_4_Duble:pCylinder398
400292: LP_UV_4_Duble:pCylinder398 1
400294: LP_UV_4_Duble:pCylinder399
400296: LP_UV_4_Duble:pCylinder399 1
400298: LP_UV_4_Duble:pCylinder400
400300: LP_UV_4_Duble:pCylinder400 1
400302: LP_UV_4_Duble:pCylinder401
400304: LP_UV_4_Duble:pCylinder401 1
400306: LP_UV_4_Duble:pCylinder402
400308: LP_UV_4_Duble:pCylinder402 1
400310: LP_UV_4_Duble:pCylinder404
400312: LP_UV_4_Duble:pCylinder404 1
400314: LP_UV_4_Duble:pCylinder405
400316: LP_UV_4_Duble:pCylinder405 1
400318: LP_UV_4_Duble:pCylinder406
400320: LP_UV_4_Duble:pCylinder406 1
400322: LP_UV_4_Duble:pCylinder407
400324: LP_UV_4_Duble:pCylinder407 1
400326: LP_UV_4_Duble:pCylinder408
400328: LP_UV_4_Duble:pCylinder408 1
400330: LP_UV_4_Duble:pCylinder409
400332: LP_UV_4_Duble:pCylinder409 1
400334: LP_UV_4_Duble:pCylinder410
400336: LP_UV_4_Duble:pCylinder410 1
400338: LP_UV_4_Duble:pCylinder411
400340: LP_UV_4_Duble:pCylinder411 1
400342: LP_UV_4_Duble:pCylinder412
400344: LP_UV_4_Duble:pCylinder412 1
400346: LP_UV_4_Duble:pCylinder413
400348: LP_UV_4_Duble:pCylinder413 1
400350: LP_UV_4_Duble:pCylinder456
400352: LP_UV_4_Duble:pCylinder474
400354: LP_UV_4_Duble:pCylinder486
400356: LP_UV_4_Duble:pCylinder487
400358: LP_UV_4_Duble:pCylinder488
400360: LP_UV_4_Duble:pCylinder490
400362: LP_UV_4_Duble:pCylinder491
400364: LP_UV_4_Duble:pCylinder494
400366: LP_UV_4_Duble:pCylinder501
400368: LP_UV_4_Duble:pCylinder502
400370: LP_UV_4_Duble:pCylinder503
400372: LP_UV_4_Duble:pCylinder504
400374: LP_UV_4_Duble:pCylinder505
400376: LP_UV_4_Duble:polySurface12
400378: LP_UV_4_Duble:pPlane1
400380: LP_UV_4_Duble:pPlane7
400382: LP_UV_4_Duble:pSphere6
400384: Neck_1
400386: pCube174
400388: pCube175
400390: pCylinder1
400392: pCylinder5
400394: pSphere1
400396: pSphere6
400398: R_Arm_1_LP_UV_4_Duble1:pCylinder1
400400: R_Ball_ik
400402: R_CTR_ik
400404: R_CTRL_Arm
400406: R_Elbow_J
400408: R_Finger1_1_J
400410: R_Finger1_2_J
400412: R_Finger1_3_J
400414: R_Finger1_J
400416: R_Finger2_1_J
400418: R_Finger2_2_J
400420: R_Finger2_3_J
400422: R_Finger2_J
400424: R_Finger3_1_J
400426: R_Finger3_2_J
400428: R_Finger3_3_J
400430: R_Finger3_J
400432: R_Finger4_1_J
400434: R_Finger4_2_J
400436: R_Finger4_3_J
400438: R_Finger4_J
400440: R_Finger5_1_J
400442: R_Finger5_2_J
400444: R_Finger5_3_J
400446: R_Finger5_J
400448: R_Finger_1
400450: R_Finger_2
400452: R_Finger_3
400454: R_Finger_4
400456: R_Finger_5
400458: R_Foot2_J
400460: R_Foot_ik
400462: R_Foot_J
400464: R_Hand_ik
400466: R_joint5_J
400468: R_Leg2_J
400470: R_Leg_J
400472: R_Shoulder_J
400474: R_Toe_ik
400476: R_Wrist
400478: R_Wrist_J
400480: R_Wrist_LP_UV_4_Duble:pCylinder388
400482: Right_arm_LP
400484: Right_arm_LP_LP_UV_4_Duble1:pSphere1
400486: Right_legs_LP
400488: Spine1_J
400490: Spine2_J
400492: Spine3_J
400494: Spine4_J
400496: Spine5_J
400498: Taz_CTRL
400500: Taz_LP
400502: Taz_LP1
2100000: lambert2
2100002: lambert3
2300000: LP_UV_4_Duble:pCube1 1
2300002: LP_UV_4_Duble:pCube225
2300004: LP_UV_4_Duble:pCube226
2300006: LP_UV_4_Duble:pCube365
2300008: LP_UV_4_Duble:pCube375
2300010: LP_UV_4_Duble:pCube377
2300012: LP_UV_4_Duble:pCylinder272
2300014: LP_UV_4_Duble:pCylinder273
2300016: LP_UV_4_Duble:pCylinder456
2300018: LP_UV_4_Duble:pCylinder487
2300020: LP_UV_4_Duble:pCylinder488
2300022: LP_UV_4_Duble:pCylinder490
2300024: LP_UV_4_Duble:pCylinder491
2300026: LP_UV_4_Duble:pCylinder502
2300028: LP_UV_4_Duble:pCylinder503
2300030: LP_UV_4_Duble:pCylinder504
2300032: LP_UV_4_Duble:pPlane1
2300034: LP_UV_4_Duble:pPlane7
2300036: pCylinder5
2300038: pSphere1
2300040: pSphere6
3300000: LP_UV_4_Duble:pCube1 1
3300002: LP_UV_4_Duble:pCube225
3300004: LP_UV_4_Duble:pCube226
3300006: LP_UV_4_Duble:pCube365
3300008: LP_UV_4_Duble:pCube375
3300010: LP_UV_4_Duble:pCube377
3300012: LP_UV_4_Duble:pCylinder272
3300014: LP_UV_4_Duble:pCylinder273
3300016: LP_UV_4_Duble:pCylinder456
3300018: LP_UV_4_Duble:pCylinder487
3300020: LP_UV_4_Duble:pCylinder488
3300022: LP_UV_4_Duble:pCylinder490
3300024: LP_UV_4_Duble:pCylinder491
3300026: LP_UV_4_Duble:pCylinder502
3300028: LP_UV_4_Duble:pCylinder503
3300030: LP_UV_4_Duble:pCylinder504
3300032: LP_UV_4_Duble:pPlane1
3300034: LP_UV_4_Duble:pPlane7
3300036: pCylinder5
3300038: pSphere1
3300040: pSphere6
4300000: Taz_LP1
4300002: pCube175
4300004: pCube174
4300006: LP_UV_4_Duble:pCylinder348
4300008: LP_UV_4_Duble:pCylinder341
4300010: Body_LP
4300012: LP_UV_4_Duble:pCylinder494
4300014: LP_UV_4_Duble:pCube364
4300016: LP_UV_4_Duble:pCylinder501
4300018: LP_UV_4_Duble:pCube374
4300020: LP_UV_4_Duble:pCylinder486
4300022: LP_UV_4_Duble:pCylinder278
4300024: LP_UV_4_Duble:pCube362
4300026: LP_UV_4_Duble:polySurface12
4300028: LP_UV_4_Duble:pCube233
4300030: Left_legs_LP_LP_UV_4_Duble:pCylinder471
4300032: Left_legs_LP_LP_UV_4_Duble1:pCube174
4300034: Left_legs_LP_LP_UV_4_Duble3:pCube236
4300036: Left_legs_LP_LP_UV_4_Duble2:pCube239
4300038: LP_UV_4_Duble:pCube233
4300040: LP_UV_4_Duble:pCylinder1
4300042: LP_UV_4_Duble:pCylinder505
4300044: LP_UV_4_Duble:pCube1
4300046: LP_UV_4_Duble:pCube376
4300048: LP_UV_4_Duble:pCylinder328
4300050: LP_UV_4_Duble:pCylinder329
4300052: LP_UV_4_Duble:pCylinder326
4300054: LP_UV_4_Duble:pCylinder327
4300056: LP_UV_4_Duble:pCylinder330
4300058: LP_UV_4_Duble:pCylinder1
4300060: pCylinder1
4300062: LP_UV_4_Duble:pCylinder474
4300064: LP_UV_4_Duble:pSphere6
4300066: LP_UV_4_Duble:pCylinder388
4300068: LP_UV_4_Duble:pCylinder413
4300070: LP_UV_4_Duble:pCylinder412
4300072: LP_UV_4_Duble:pCube272
4300074: LP_UV_4_Duble:pCube269
4300076: LP_UV_4_Duble:pCylinder410
4300078: LP_UV_4_Duble:pCube271
4300080: LP_UV_4_Duble:pCube270
4300082: LP_UV_4_Duble:pCylinder411
4300084: LP_UV_4_Duble:pCube248
4300086: LP_UV_4_Duble:pCylinder387
4300088: LP_UV_4_Duble:pCylinder386
4300090: LP_UV_4_Duble:pCube257
4300092: LP_UV_4_Duble:pCylinder400
4300094: LP_UV_4_Duble:pCube250
4300096: LP_UV_4_Duble:pCube259
4300098: LP_UV_4_Duble:pCylinder384
4300100: LP_UV_4_Duble:pCylinder398
4300102: LP_UV_4_Duble:pCylinder385
4300104: LP_UV_4_Duble:pCube258
4300106: LP_UV_4_Duble:pCube261
4300108: LP_UV_4_Duble:pCube251
4300110: LP_UV_4_Duble:pCube252
4300112: LP_UV_4_Duble:pCylinder401
4300114: LP_UV_4_Duble:pCylinder397
4300116: LP_UV_4_Duble:pCylinder399
4300118: LP_UV_4_Duble:pCylinder402
4300120: LP_UV_4_Duble:pCylinder405
4300122: LP_UV_4_Duble:pCube264
4300124: LP_UV_4_Duble:pCube263
4300126: LP_UV_4_Duble:pCylinder406
4300128: LP_UV_4_Duble:pCube262
4300130: LP_UV_4_Duble:pCube260
4300132: LP_UV_4_Duble:pCylinder404
4300134: LP_UV_4_Duble:pCube266
4300136: LP_UV_4_Duble:pCube265
4300138: LP_UV_4_Duble:pCube268
4300140: LP_UV_4_Duble:pCylinder408
4300142: LP_UV_4_Duble:pCylinder407
4300144: LP_UV_4_Duble:pCylinder409
4300146: LP_UV_4_Duble:pCube267
4300148: Right_arm_LP_LP_UV_4_Duble1:pSphere1
4300150: R_Arm_1_LP_UV_4_Duble1:pCylinder1
4300152: R_Wrist_LP_UV_4_Duble:pCylinder388
4300154: LP_UV_4_Duble:pCylinder410
4300156: LP_UV_4_Duble:pCylinder413
4300158: LP_UV_4_Duble:pCylinder412
4300160: LP_UV_4_Duble:pCube269
4300162: LP_UV_4_Duble:pCube270
4300164: LP_UV_4_Duble:pCube272
4300166: LP_UV_4_Duble:pCylinder411
4300168: LP_UV_4_Duble:pCube271
4300170: LP_UV_4_Duble:pCylinder387
4300172: LP_UV_4_Duble:pCube248
4300174: LP_UV_4_Duble:pCylinder386
4300176: LP_UV_4_Duble:pCube257
4300178: LP_UV_4_Duble:pCylinder384
4300180: LP_UV_4_Duble:pCube250
4300182: LP_UV_4_Duble:pCylinder400
4300184: LP_UV_4_Duble:pCube259
4300186: LP_UV_4_Duble:pCube261
4300188: LP_UV_4_Duble:pCylinder398
4300190: LP_UV_4_Duble:pCylinder401
4300192: LP_UV_4_Duble:pCube251
4300194: LP_UV_4_Duble:pCube258
4300196: LP_UV_4_Duble:pCylinder385
4300198: LP_UV_4_Duble:pCylinder397
4300200: LP_UV_4_Duble:pCube252
4300202: LP_UV_4_Duble:pCube260
4300204: LP_UV_4_Duble:pCylinder402
4300206: LP_UV_4_Duble:pCylinder406
4300208: LP_UV_4_Duble:pCube264
4300210: LP_UV_4_Duble:pCube262
4300212: LP_UV_4_Duble:pCube263
4300214: LP_UV_4_Duble:pCylinder405
4300216: LP_UV_4_Duble:pCylinder399
4300218: LP_UV_4_Duble:pCube268
4300220: LP_UV_4_Duble:pCube266
4300222: LP_UV_4_Duble:pCube267
4300224: LP_UV_4_Duble:pCylinder407
4300226: LP_UV_4_Duble:pCylinder408
4300228: LP_UV_4_Duble:pCylinder409
4300230: LP_UV_4_Duble:pCylinder404
4300232: LP_UV_4_Duble:pCube265
4300234: LP_UV_4_Duble:pCube377
4300236: LP_UV_4_Duble:pCube1
4300238: LP_UV_4_Duble:pCube226
4300240: LP_UV_4_Duble:pCube225
4300242: LP_UV_4_Duble:pCylinder490
4300244: LP_UV_4_Duble:pCube365
4300246: LP_UV_4_Duble:pCylinder502
4300248: LP_UV_4_Duble:pCube375
4300250: LP_UV_4_Duble:pCylinder272
4300252: LP_UV_4_Duble:pCylinder456
4300254: LP_UV_4_Duble:pPlane1
4300256: pSphere6
4300258: LP_UV_4_Duble:pPlane7
4300260: pSphere1
4300262: LP_UV_4_Duble:pCylinder491
4300264: LP_UV_4_Duble:pCylinder488
4300266: LP_UV_4_Duble:pCylinder503
4300268: LP_UV_4_Duble:pCylinder504
4300270: LP_UV_4_Duble:pCylinder487
4300272: LP_UV_4_Duble:pCylinder273
4300274: pCylinder5
7400000: Take 001
9500000: //RootNode
13700000: Body_LP
13700002: Left_legs_LP_LP_UV_4_Duble1:pCube174
13700004: Left_legs_LP_LP_UV_4_Duble2:pCube239
13700006: Left_legs_LP_LP_UV_4_Duble3:pCube236
13700008: Left_legs_LP_LP_UV_4_Duble:pCylinder471
13700010: LP_UV_4_Duble:pCube1
13700012: LP_UV_4_Duble:pCube233
13700014: LP_UV_4_Duble:pCube233 1
13700016: LP_UV_4_Duble:pCube248
13700018: LP_UV_4_Duble:pCube248 1
13700020: LP_UV_4_Duble:pCube250
13700022: LP_UV_4_Duble:pCube250 1
13700024: LP_UV_4_Duble:pCube251
13700026: LP_UV_4_Duble:pCube251 1
13700028: LP_UV_4_Duble:pCube252
13700030: LP_UV_4_Duble:pCube252 1
13700032: LP_UV_4_Duble:pCube257
13700034: LP_UV_4_Duble:pCube257 1
13700036: LP_UV_4_Duble:pCube258
13700038: LP_UV_4_Duble:pCube258 1
13700040: LP_UV_4_Duble:pCube259
13700042: LP_UV_4_Duble:pCube259 1
13700044: LP_UV_4_Duble:pCube260
13700046: LP_UV_4_Duble:pCube260 1
13700048: LP_UV_4_Duble:pCube261
13700050: LP_UV_4_Duble:pCube261 1
13700052: LP_UV_4_Duble:pCube262
13700054: LP_UV_4_Duble:pCube262 1
13700056: LP_UV_4_Duble:pCube263
13700058: LP_UV_4_Duble:pCube263 1
13700060: LP_UV_4_Duble:pCube264
13700062: LP_UV_4_Duble:pCube264 1
13700064: LP_UV_4_Duble:pCube265
13700066: LP_UV_4_Duble:pCube265 1
13700068: LP_UV_4_Duble:pCube266
13700070: LP_UV_4_Duble:pCube266 1
13700072: LP_UV_4_Duble:pCube267
13700074: LP_UV_4_Duble:pCube267 1
13700076: LP_UV_4_Duble:pCube268
13700078: LP_UV_4_Duble:pCube268 1
13700080: LP_UV_4_Duble:pCube269
13700082: LP_UV_4_Duble:pCube269 1
13700084: LP_UV_4_Duble:pCube270
13700086: LP_UV_4_Duble:pCube270 1
13700088: LP_UV_4_Duble:pCube271
13700090: LP_UV_4_Duble:pCube271 1
13700092: LP_UV_4_Duble:pCube272
13700094: LP_UV_4_Duble:pCube272 1
13700096: LP_UV_4_Duble:pCube362
13700098: LP_UV_4_Duble:pCube364
13700100: LP_UV_4_Duble:pCube374
13700102: LP_UV_4_Duble:pCube376
13700104: LP_UV_4_Duble:pCylinder1
13700106: LP_UV_4_Duble:pCylinder1 1
13700108: LP_UV_4_Duble:pCylinder278
13700110: LP_UV_4_Duble:pCylinder326
13700112: LP_UV_4_Duble:pCylinder327
13700114: LP_UV_4_Duble:pCylinder328
13700116: LP_UV_4_Duble:pCylinder329
13700118: LP_UV_4_Duble:pCylinder330
13700120: LP_UV_4_Duble:pCylinder341
13700122: LP_UV_4_Duble:pCylinder348
13700124: LP_UV_4_Duble:pCylinder384
13700126: LP_UV_4_Duble:pCylinder384 1
13700128: LP_UV_4_Duble:pCylinder385
13700130: LP_UV_4_Duble:pCylinder385 1
13700132: LP_UV_4_Duble:pCylinder386
13700134: LP_UV_4_Duble:pCylinder386 1
13700136: LP_UV_4_Duble:pCylinder387
13700138: LP_UV_4_Duble:pCylinder387 1
13700140: LP_UV_4_Duble:pCylinder388
13700142: LP_UV_4_Duble:pCylinder397
13700144: LP_UV_4_Duble:pCylinder397 1
13700146: LP_UV_4_Duble:pCylinder398
13700148: LP_UV_4_Duble:pCylinder398 1
13700150: LP_UV_4_Duble:pCylinder399
13700152: LP_UV_4_Duble:pCylinder399 1
13700154: LP_UV_4_Duble:pCylinder400
13700156: LP_UV_4_Duble:pCylinder400 1
13700158: LP_UV_4_Duble:pCylinder401
13700160: LP_UV_4_Duble:pCylinder401 1
13700162: LP_UV_4_Duble:pCylinder402
13700164: LP_UV_4_Duble:pCylinder402 1
13700166: LP_UV_4_Duble:pCylinder404
13700168: LP_UV_4_Duble:pCylinder404 1
13700170: LP_UV_4_Duble:pCylinder405
13700172: LP_UV_4_Duble:pCylinder405 1
13700174: LP_UV_4_Duble:pCylinder406
13700176: LP_UV_4_Duble:pCylinder406 1
13700178: LP_UV_4_Duble:pCylinder407
13700180: LP_UV_4_Duble:pCylinder407 1
13700182: LP_UV_4_Duble:pCylinder408
13700184: LP_UV_4_Duble:pCylinder408 1
13700186: LP_UV_4_Duble:pCylinder409
13700188: LP_UV_4_Duble:pCylinder409 1
13700190: LP_UV_4_Duble:pCylinder410
13700192: LP_UV_4_Duble:pCylinder410 1
13700194: LP_UV_4_Duble:pCylinder411
13700196: LP_UV_4_Duble:pCylinder411 1
13700198: LP_UV_4_Duble:pCylinder412
13700200: LP_UV_4_Duble:pCylinder412 1
13700202: LP_UV_4_Duble:pCylinder413
13700204: LP_UV_4_Duble:pCylinder413 1
13700206: LP_UV_4_Duble:pCylinder474
13700208: LP_UV_4_Duble:pCylinder486
13700210: LP_UV_4_Duble:pCylinder494
13700212: LP_UV_4_Duble:pCylinder501
13700214: LP_UV_4_Duble:pCylinder505
13700216: LP_UV_4_Duble:polySurface12
13700218: LP_UV_4_Duble:pSphere6
13700220: pCube174
13700222: pCube175
13700224: pCylinder1
13700226: R_Arm_1_LP_UV_4_Duble1:pCylinder1
13700228: R_Wrist_LP_UV_4_Duble:pCylinder388
13700230: Right_arm_LP_LP_UV_4_Duble1:pSphere1
13700232: Taz_LP1
2186277476908879412: ImportLogs
externalObjects:
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: lambert2
second: {fileID: 2100000, guid: 90721c2ac4ab6e64c8059402ec885bb0, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: lambert3
second: {fileID: 2100000, guid: 9ba6f8725b3fd3a47b7a81e9c5793d87, 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: "\nClip 'Take 001' has import animation warnings that
might lower retargeting quality:\nNote: Activate translation DOF on avatar to
improve retargeting quality.\n\t'Head' has translation 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: Take 001
takeName: Take 001
firstFrame: 0
lastFrame: 50
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 0
loopBlendPositionY: 0
loopBlendPositionXZ: 0
keepOriginalOrientation: 0
keepOriginalPositionY: 0
keepOriginalPositionXZ: 0
heightFromFeet: 1
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
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: 0.01
hasPreviousCalculatedGlobalScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
importAnimation: 1
copyAvatar: 0
humanDescription:
serializedVersion: 2
human:
- boneName: Hip_J
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: L_Leg_J
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: R_Leg_J
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: L_Leg2_J
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: R_Leg2_J
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: L_Foot_J
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: R_Foot_J
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_J
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: Spine3_J
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: 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: L_Shoulder_J
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: R_Shoulder_J
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: L_Elbow_J
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: R_Elbow_J
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: L_Wrist_J
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: R_Wrist_J
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: L_Foot2_J
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: R_Foot2_J
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: LP_UV_4_Duble:pCylinder502
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: LP_UV_4_Duble:pCylinder490
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: L_Finger1_J
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: L_Finger1_1_J
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: L_Finger1_2_J
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: L_Finger2_J
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: L_Finger2_1_J
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: L_Finger2_2_J
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: L_Finger3_J
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: L_Finger3_1_J
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: L_Finger3_2_J
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: L_Finger4_J
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: L_Finger4_1_J
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: L_Finger4_2_J
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: L_Finger5_J
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: L_Finger5_1_J
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: L_Finger5_2_J
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: R_Finger1_J
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: R_Finger1_1_J
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: R_Finger1_2_J
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: R_Finger2_J
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: R_Finger2_1_J
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: R_Finger2_2_J
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: R_Finger3_J
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: R_Finger3_1_J
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: R_Finger3_2_J
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: R_Finger4_J
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: R_Finger4_1_J
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: R_Finger4_2_J
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: R_Finger5_J
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: R_Finger5_1_J
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: R_Finger5_2_J
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: Body
humanName: UpperChest
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: Animation_END(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: All
parentName: Animation_END(Clone)
position: {x: 0.105310045, y: -0.11746349, z: 0}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Taz_LP
parentName: All
position: {x: -0.105310045, y: 0.11746349, z: 0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Taz_LP1
parentName: Taz_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: pCube175
parentName: Taz_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: pCube174
parentName: Taz_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder348
parentName: Taz_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder341
parentName: Taz_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Body_LP1
parentName: All
position: {x: -0.03364834, y: 0.7541738, z: -0.000000019073486}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Body_LP
parentName: Body_LP1
position: {x: -0.07166171, y: -0.6367103, z: 0.000000019073486}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Head_LP
parentName: All
position: {x: -0.105310045, y: 0.11746349, z: 0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder494
parentName: Head_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube364
parentName: Head_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder501
parentName: Head_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube374
parentName: Head_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder486
parentName: Head_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder278
parentName: Head_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube362
parentName: Head_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:polySurface12
parentName: Head_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Left_legs_LP
parentName: All
position: {x: -0.105310045, y: 0.11746349, z: 0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube233
parentName: Left_legs_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Left_legs_LP_LP_UV_4_Duble:pCylinder471
parentName: Left_legs_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Left_legs_LP_LP_UV_4_Duble1:pCube174
parentName: Left_legs_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Left_legs_LP_LP_UV_4_Duble3:pCube236
parentName: Left_legs_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Left_legs_LP_LP_UV_4_Duble2:pCube239
parentName: Left_legs_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Right_legs_LP
parentName: All
position: {x: -0.105310045, y: 0.11746349, z: -0.08726959}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube233 1
parentName: Right_legs_LP
position: {x: -0, y: 0, z: 0.08726959}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder1 1
parentName: Right_legs_LP
position: {x: -0, y: 0, z: 0.08726959}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder505
parentName: Right_legs_LP
position: {x: -0, y: 0, z: 0.08726959}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube1
parentName: Right_legs_LP
position: {x: -0, y: 0, z: 0.08726959}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube376
parentName: Right_legs_LP
position: {x: -0, y: 0, z: 0.08726959}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Hrebet_LP
parentName: All
position: {x: -0.105310045, y: 0.11746349, z: 0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder328
parentName: Hrebet_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder329
parentName: Hrebet_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder326
parentName: Hrebet_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder327
parentName: Hrebet_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder330
parentName: Hrebet_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder1
parentName: Hrebet_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: pCylinder1
parentName: Hrebet_LP
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Left_arm_LP
parentName: All
position: {x: -0.105310045, y: 0.7214215, z: -0.1871156}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder474
parentName: Left_arm_LP
position: {x: -0, y: -0.603958, z: 0.1871156}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pSphere6
parentName: Left_arm_LP
position: {x: -0, y: -0.603958, z: 0.1871156}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: L_Wrist
parentName: Left_arm_LP
position: {x: -0, y: -0.603958, z: 0.2743804}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder388
parentName: L_Wrist
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: L_Finger_1
parentName: L_Wrist
position: {x: 0.021498043, y: -0.053479727, z: -0.8336714}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder413
parentName: L_Finger_1
position: {x: -0.021498043, y: 0.053479727, z: 0.74640656}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder412
parentName: L_Finger_1
position: {x: -0.021498043, y: 0.053479727, z: 0.74640656}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube272
parentName: L_Finger_1
position: {x: -0.021498043, y: 0.053479727, z: 0.74640656}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube269
parentName: L_Finger_1
position: {x: -0.021498043, y: 0.053479727, z: 0.74640656}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder410
parentName: L_Finger_1
position: {x: -0.021498043, y: 0.053479727, z: 0.74640656}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube271
parentName: L_Finger_1
position: {x: -0.021498043, y: 0.053479727, z: 0.74640656}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube270
parentName: L_Finger_1
position: {x: -0.021498043, y: 0.053479727, z: 0.74640656}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder411
parentName: L_Finger_1
position: {x: -0.021498043, y: 0.053479727, z: 0.74640656}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: L_Finger_2
parentName: L_Wrist
position: {x: 0.042167366, y: -0.12348411, z: -0.89059967}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube248
parentName: L_Finger_2
position: {x: -0.042167366, y: 0.12348411, z: 0.80333495}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder387
parentName: L_Finger_2
position: {x: -0.042167366, y: 0.12348411, z: 0.80333495}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder386
parentName: L_Finger_2
position: {x: -0.042167366, y: 0.12348411, z: 0.80333495}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube257
parentName: L_Finger_2
position: {x: -0.042167366, y: 0.12348411, z: 0.80333495}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder400
parentName: L_Finger_2
position: {x: -0.042167366, y: 0.12348411, z: 0.80333495}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube250
parentName: L_Finger_2
position: {x: -0.042167366, y: 0.12348411, z: 0.80333495}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube259
parentName: L_Finger_2
position: {x: -0.042167366, y: 0.12348411, z: 0.80333495}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder384
parentName: L_Finger_2
position: {x: -0.042167366, y: 0.12348411, z: 0.80333495}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: L_Finger_3
parentName: L_Wrist
position: {x: 0.065713994, y: -0.12642938, z: -0.8926908}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder398
parentName: L_Finger_3
position: {x: -0.065713994, y: 0.12642938, z: 0.805426}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder385
parentName: L_Finger_3
position: {x: -0.065713994, y: 0.12642938, z: 0.805426}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube258
parentName: L_Finger_3
position: {x: -0.065713994, y: 0.12642938, z: 0.805426}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube261
parentName: L_Finger_3
position: {x: -0.065713994, y: 0.12642938, z: 0.805426}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube251
parentName: L_Finger_3
position: {x: -0.065713994, y: 0.12642938, z: 0.805426}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube252
parentName: L_Finger_3
position: {x: -0.065713994, y: 0.12642938, z: 0.805426}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder401
parentName: L_Finger_3
position: {x: -0.065713994, y: 0.12642938, z: 0.805426}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder397
parentName: L_Finger_3
position: {x: -0.065713994, y: 0.12642938, z: 0.805426}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: L_Finger_4
parentName: L_Wrist
position: {x: 0.09034689, y: -0.12445602, z: -0.89139736}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder399
parentName: L_Finger_4
position: {x: -0.09034689, y: 0.12445602, z: 0.8041325}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder402
parentName: L_Finger_4
position: {x: -0.09034689, y: 0.12445602, z: 0.8041325}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder405
parentName: L_Finger_4
position: {x: -0.09034689, y: 0.12445602, z: 0.8041325}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube264
parentName: L_Finger_4
position: {x: -0.09034689, y: 0.12445602, z: 0.8041325}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube263
parentName: L_Finger_4
position: {x: -0.09034689, y: 0.12445602, z: 0.8041325}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder406
parentName: L_Finger_4
position: {x: -0.09034689, y: 0.12445602, z: 0.8041325}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube262
parentName: L_Finger_4
position: {x: -0.09034689, y: 0.12445602, z: 0.8041325}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube260
parentName: L_Finger_4
position: {x: -0.09034689, y: 0.12445602, z: 0.8041325}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: L_Finger_5
parentName: L_Wrist
position: {x: 0.114275575, y: -0.12099936, z: -0.88893324}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder404
parentName: L_Finger_5
position: {x: -0.114275575, y: 0.12099936, z: 0.8016685}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube266
parentName: L_Finger_5
position: {x: -0.114275575, y: 0.12099936, z: 0.8016685}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube265
parentName: L_Finger_5
position: {x: -0.114275575, y: 0.12099936, z: 0.8016685}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube268
parentName: L_Finger_5
position: {x: -0.114275575, y: 0.12099936, z: 0.8016685}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder408
parentName: L_Finger_5
position: {x: -0.114275575, y: 0.12099936, z: 0.8016685}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder407
parentName: L_Finger_5
position: {x: -0.114275575, y: 0.12099936, z: 0.8016685}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder409
parentName: L_Finger_5
position: {x: -0.114275575, y: 0.12099936, z: 0.8016685}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube267
parentName: L_Finger_5
position: {x: -0.114275575, y: 0.12099936, z: 0.8016685}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Right_arm_LP
parentName: All
position: {x: -0.105310045, y: 0.7214215, z: 0.18711555}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Right_arm_LP_LP_UV_4_Duble1:pSphere1
parentName: Right_arm_LP
position: {x: -2.842171e-16, y: -0.603958, z: -0.18711555}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Arm_1_LP_UV_4_Duble1:pCylinder1
parentName: Right_arm_LP
position: {x: -0, y: -0.603958, z: -0.18711555}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Wrist
parentName: Right_arm_LP
position: {x: 0.058951654, y: -0.6810465, z: 0.580321}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Wrist_LP_UV_4_Duble:pCylinder388
parentName: R_Wrist
position: {x: -0.058951654, y: 0.077088535, z: -0.76743656}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Finger_1
parentName: R_Wrist
position: {x: -0.058951654, y: 0.077088535, z: -0.6801718}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder410 1
parentName: R_Finger_1
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder413 1
parentName: R_Finger_1
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder412 1
parentName: R_Finger_1
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube269 1
parentName: R_Finger_1
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube270 1
parentName: R_Finger_1
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube272 1
parentName: R_Finger_1
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder411 1
parentName: R_Finger_1
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube271 1
parentName: R_Finger_1
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Finger_2
parentName: R_Wrist
position: {x: -0.058951654, y: 0.077088535, z: -0.6801718}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder387 1
parentName: R_Finger_2
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube248 1
parentName: R_Finger_2
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder386 1
parentName: R_Finger_2
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube257 1
parentName: R_Finger_2
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder384 1
parentName: R_Finger_2
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube250 1
parentName: R_Finger_2
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder400 1
parentName: R_Finger_2
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube259 1
parentName: R_Finger_2
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Finger_3
parentName: R_Wrist
position: {x: -0.058951654, y: 0.077088535, z: -0.6801718}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube261 1
parentName: R_Finger_3
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder398 1
parentName: R_Finger_3
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder401 1
parentName: R_Finger_3
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube251 1
parentName: R_Finger_3
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube258 1
parentName: R_Finger_3
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder385 1
parentName: R_Finger_3
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder397 1
parentName: R_Finger_3
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube252 1
parentName: R_Finger_3
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Finger_4
parentName: R_Wrist
position: {x: -0.058951654, y: 0.077088535, z: -0.6801718}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube260 1
parentName: R_Finger_4
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder402 1
parentName: R_Finger_4
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder406 1
parentName: R_Finger_4
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube264 1
parentName: R_Finger_4
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube262 1
parentName: R_Finger_4
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube263 1
parentName: R_Finger_4
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder405 1
parentName: R_Finger_4
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder399 1
parentName: R_Finger_4
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Finger_5
parentName: R_Wrist
position: {x: -0.058951654, y: 0.077088535, z: -0.6801718}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube268 1
parentName: R_Finger_5
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube266 1
parentName: R_Finger_5
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube267 1
parentName: R_Finger_5
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder407 1
parentName: R_Finger_5
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder408 1
parentName: R_Finger_5
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder409 1
parentName: R_Finger_5
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder404 1
parentName: R_Finger_5
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube265 1
parentName: R_Finger_5
position: {x: -0, y: 0, z: -0.08726478}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Hand_ik
parentName: Animation_END(Clone)
position: {x: -0.39613703, y: -0.16750011, z: 0.3869229}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: L_Hand_ik
parentName: Animation_END(Clone)
position: {x: -0.051438287, y: -0.18337244, z: -0.38289705}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: pCylinder5
parentName: Animation_END(Clone)
position: {x: -0.39613676, y: -0.16749634, z: 0.38692167}
rotation: {x: -0.24110685, y: 0.5554993, z: -0.19995885, w: 0.7702626}
scale: {x: 1, y: 1, z: 1}
- name: ALL_Animation
parentName: Animation_END(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: Taz_CTRL
parentName: ALL_Animation
position: {x: -0.27909088, y: 0.066067316, z: 0}
rotation: {x: 0, y: 0.061048545, z: -0, w: 0.99813485}
scale: {x: 1, y: 1, z: 1}
- name: Body_CTRL
parentName: Taz_CTRL
position: {x: 0.04882101, y: 0.3816426, z: 0}
rotation: {x: 0, y: -0.12186934, z: -0, w: 0.99254614}
scale: {x: 1, y: 1, z: 1}
- name: R_CTRL_Arm
parentName: Body_CTRL
position: {x: -0.11639051, y: -0.61521, z: 0.41011402}
rotation: {x: -0.010313066, y: -0.13636358, z: 0.074705325, w: 0.98778427}
scale: {x: 1, y: 1, z: 1}
- name: L_CTRL_Arm
parentName: Body_CTRL
position: {x: 0.13192146, y: -0.6310824, z: -0.395976}
rotation: {x: -0.27899113, y: 0, z: -0, w: 0.9602937}
scale: {x: 1, y: 1, z: 1}
- name: Head_CTRL
parentName: Taz_CTRL
position: {x: -0.050863225, y: 0.7429231, z: -0.025181886}
rotation: {x: 0, y: -0.061048545, z: -0, w: 0.99813485}
scale: {x: 1, y: 1, z: 1}
- name: L_CTR_ik
parentName: ALL_Animation
position: {x: -0.6829965, y: -1.1375684, z: -0.180592}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: grp_ctrl_toeLift_Left
parentName: L_CTR_ik
position: {x: -0.20253189, y: -0.03668007, z: -0.00020002364}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: L_Ball_ik
parentName: grp_ctrl_toeLift_Left
position: {x: 0.096815296, y: 0.008380051, z: 0.00008602142}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: grp_ctrl_toeWiggle_Left
parentName: grp_ctrl_toeLift_Left
position: {x: 0.096815296, y: 0.008380051, z: 0.00008602142}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: L_Toe_ik
parentName: grp_ctrl_toeWiggle_Left
position: {x: -0.096815296, y: -0.008380051, z: -0.00008602142}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: grp_ctrl_ballLift_Left
parentName: grp_ctrl_toeLift_Left
position: {x: 0.096815296, y: 0.008380051, z: 0.00008602142}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: L_Foot_ik
parentName: grp_ctrl_ballLift_Left
position: {x: 0.105716586, y: 0.028300017, z: 0.00011400223}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_CTR_ik
parentName: ALL_Animation
position: {x: 0.11700344, y: -1.1375684, z: 0.1805923}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: grp_ctrl_toeLift_Right
parentName: R_CTR_ik
position: {x: -0.20253189, y: -0.03668007, z: -0.00020002364}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Ball_ik
parentName: grp_ctrl_toeLift_Right
position: {x: 0.09681488, y: 0.008375854, z: 0.0003137779}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: grp_ctrl_toeWiggle_Right
parentName: grp_ctrl_toeLift_Right
position: {x: 0.096815296, y: 0.008380051, z: 0.00008602142}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Toe_ik
parentName: grp_ctrl_toeWiggle_Right
position: {x: -0.096815735, y: -0.008381119, z: 0.00031368254}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: grp_ctrl_ballLift_Right
parentName: grp_ctrl_toeLift_Right
position: {x: 0.096815296, y: 0.008380051, z: 0.00008602142}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Foot_ik
parentName: grp_ctrl_ballLift_Right
position: {x: 0.105716586, y: 0.028300017, z: 0.00011400223}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: Hip_J
parentName: Animation_END(Clone)
position: {x: 0, y: 1.3371103, z: 0}
rotation: {x: -0, y: 0.7071089, z: -0, w: 0.70710474}
scale: {x: 1, y: 1, z: 1}
- name: R_Leg_J
parentName: Hip_J
position: {x: -0, y: -0.12962, z: 0.16604}
rotation: {x: 0.49902335, y: 0.5009747, z: 0.48866266, w: 0.5110859}
scale: {x: 0.9999951, y: 0.9999955, z: 1.0000004}
- name: R_Leg2_J
parentName: R_Leg_J
position: {x: -0.59558, y: 0, z: 0}
rotation: {x: -0.00021728875, y: 0.017781945, z: 0.012153597, w: 0.999768}
scale: {x: 1.0000015, y: 0.99999994, z: 0.9999992}
- name: locator4
parentName: R_Leg2_J
position: {x: -0.4809308, y: -0.000011027425, z: 0.02507801}
rotation: {x: 0.49619582, y: 0.5037755, z: 0.50374323, w: -0.49622852}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube1 1
parentName: locator4
position: {x: 0.00009682655, y: -0.00019714356, z: 0.000001926422}
rotation: {x: -0.0027020266, y: -0.0043208115, z: -0.11135554, w: 0.99376756}
scale: {x: 1, y: 1, z: 1}
- name: R_Foot_J
parentName: R_Leg2_J
position: {x: -0.5488, y: 0, z: 0}
rotation: {x: 0.0003393953, y: -0.6148101, z: -0.00038420444, w: 0.788675}
scale: {x: 1.0000014, y: 1.0000018, z: 1.0000036}
- name: locator3
parentName: R_Foot_J
position: {x: 0.06111426, y: 0.000048064445, z: 0.04428111}
rotation: {x: -0.7010186, y: -0.09259048, z: -0.09186186, w: 0.7011144}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube377
parentName: locator3
position: {x: -0.0000004959106, y: -0.000000076293944, z: -0.00000085830686}
rotation: {x: -0.00093886943, y: -0.0015055533, z: 0.10360779, w: 0.9946167}
scale: {x: 1, y: 1, z: 1}
- name: R_Foot2_J
parentName: R_Foot_J
position: {x: -0.10944053, y: -2.1316282e-16, z: 1.4210854e-16}
rotation: {x: 0.000084193634, y: -0.08753315, z: 0.00007719466, w: 0.99616164}
scale: {x: 0.99999934, y: 1.0000014, z: 1.0000019}
- name: R_joint5_J
parentName: R_Foot2_J
position: {x: -0.09717708, y: -1.7763567e-16, z: 7.105427e-16}
rotation: {x: -0.7070798, y: -0.000000026077029, z: -0.000000018283115, w: 0.7071338}
scale: {x: 1.0000001, y: 1.0000015, z: 1.0000011}
- name: L_Leg_J
parentName: Hip_J
position: {x: -0, y: -0.12962, z: -0.16604}
rotation: {x: 0.5110859, y: 0.48866266, z: 0.500975, w: 0.4990231}
scale: {x: 1.0000055, y: 1.0000002, z: 1.0000058}
- name: L_Leg2_J
parentName: L_Leg_J
position: {x: -0.59558, y: 0, z: 0}
rotation: {x: 0.00021734831, y: 0.017781064, z: -0.012154458, w: 0.9997681}
scale: {x: 1.0000076, y: 1.0000066, z: 1.0000104}
- name: locator2
parentName: L_Leg2_J
position: {x: -0.48093078, y: 0.0000059915124, z: 0.025078304}
rotation: {x: 0.4962285, y: 0.50374323, z: 0.50377494, w: -0.4961964}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube225
parentName: locator2
position: {x: 0.00009165764, y: -0.00018684387, z: 0.0000011444091}
rotation: {x: 0.01424209, y: 0.022784775, z: 0.07189438, w: 0.9970503}
scale: {x: 1, y: 1, z: 1}
- name: L_Foot_J
parentName: L_Leg2_J
position: {x: -0.5488, y: 0, z: 0}
rotation: {x: -0.0003398419, y: -0.614824, z: 0.00038571295, w: 0.78866416}
scale: {x: 0.99999666, y: 0.9999983, z: 0.99999815}
- name: locator1
parentName: L_Foot_J
position: {x: 0.061116222, y: -0.000053345924, z: 0.04427897}
rotation: {x: -0.7011162, y: -0.09184825, z: -0.09257857, w: 0.7010201}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube226
parentName: locator1
position: {x: -0.000024909972, y: -0.000012130737, z: 0.00000034332274}
rotation: {x: 0.0042695706, y: 0.0068312753, z: -0.06513402, w: 0.99784404}
scale: {x: 1, y: 1, z: 1}
- name: L_Foot2_J
parentName: L_Foot_J
position: {x: -0.10943904, y: -1.7763567e-16, z: 7.105427e-16}
rotation: {x: -0.000084290885, y: -0.08749928, z: -0.00007808129, w: 0.99616456}
scale: {x: 1, y: 1.0000002, z: 1.0000027}
- name: L_joint5_J
parentName: L_Foot2_J
position: {x: -0.097177334, y: 0, z: 1.2789769e-15}
rotation: {x: -0.7071338, y: 0.000000014901161, z: 0.000000031708623, w: 0.7070797}
scale: {x: 1.0000001, y: 0.99999875, z: 0.9999977}
- name: Spine1_J
parentName: Hip_J
position: {x: -0.0035199998, y: 0.09104, z: -3.687212e-16}
rotation: {x: -0.6761603, y: 0.7367546, z: 1.0672041e-10, w: 8.467538e-11}
scale: {x: 1.0000066, y: 1.0000001, z: 1.0000005}
- name: Spine2_J
parentName: Spine1_J
position: {x: -0.067404754, y: -3.5527136e-17, z: -8.300095e-18}
rotation: {x: 0.0000000052277525, y: 0.0000000015910976, z: 0.15861312, w: 0.9873408}
scale: {x: 1.000004, y: 1.0000036, z: 1.0000002}
- name: Spine3_J
parentName: Spine2_J
position: {x: -0.055602215, y: -1.7763568e-17, z: -8.3930964e-18}
rotation: {x: 6.6675554e-12, y: -0.0000000043655293, z: -0.0045818537, w: 0.9999895}
scale: {x: 1.0000103, y: 1.0000042, z: 1.0000004}
- name: Spine4_J
parentName: Spine3_J
position: {x: -0.058142975, y: -2.4868996e-16, z: -8.739954e-18}
rotation: {x: -0.0000000059834266, y: 0.0000000024235987, z: -0.17001046, w: 0.9854423}
scale: {x: 1.0000056, y: 1.0000169, z: 1.0000192}
- name: Spine5_J
parentName: Spine4_J
position: {x: -0.061889738, y: 3.5527136e-17, z: -7.3239225e-18}
rotation: {x: 0.99937284, y: -0.035410997, z: -2.0611887e-10, w: -0.000000005817115}
scale: {x: 1.0000029, y: 1.0000023, z: 0.9999969}
- name: Body
parentName: Spine5_J
position: {x: -0.056869995, y: -7.105427e-17, z: 4.5044646e-18}
rotation: {x: 0.0008727798, y: -0.0002656927, z: 0.2745441, w: 0.96157414}
scale: {x: 1.0000161, y: 1.0000005, z: 1.000001}
- name: Neck_1
parentName: Body
position: {x: -0.18369, y: 0, z: 2.2898349e-18}
rotation: {x: -1.7462297e-10, y: 0.0000000023865139, z: -0.28289458, w: 0.959151}
scale: {x: 1.000005, y: 1.000018, z: 0.9999993}
- name: LP_UV_4_Duble:pCylinder491
parentName: Neck_1
position: {x: -0.04188606, y: -0.081463456, z: 0.03722438}
rotation: {x: 0.008362114, y: -0.13211314, z: 0.6784773, w: 0.7225959}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder488
parentName: LP_UV_4_Duble:pCylinder491
position: {x: -0.0014294798, y: -0.0018203411, z: -0.00037330555}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder503
parentName: Neck_1
position: {x: -0.040065765, y: -0.08302689, z: -0.03618714}
rotation: {x: -0.025266066, y: 0.12927979, z: 0.7065059, w: 0.69534004}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder504
parentName: LP_UV_4_Duble:pCylinder503
position: {x: 0.0014294798, y: 0.0018203411, z: -0.00037330555}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder487
parentName: Neck_1
position: {x: -0.000005493164, y: -0.00000025749205, z: 0.00018179338}
rotation: {x: -0.00032635304, y: -0.00031509614, z: 0.71433854, w: 0.6998002}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder273
parentName: LP_UV_4_Duble:pCylinder487
position: {x: -0.000000014574592, y: 0.06245635, z: 0.000000101424625}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Shoulder_J
parentName: Neck_1
position: {x: 0.06817335, y: 0.00841, z: 0.18699}
rotation: {x: -0.48798442, y: 0.5112154, z: 0.51230586, w: 0.48792696}
scale: {x: 0.9999976, y: 0.9999978, z: 0.99999696}
- name: LP_UV_4_Duble:pPlane7
parentName: R_Shoulder_J
position: {x: -0.03721342, y: 0.13528629, z: -0.00072993274}
rotation: {x: -0.273014, y: -0.65227556, z: -0.273014, w: 0.65227556}
scale: {x: 1, y: 1, z: 1}
- name: pSphere1
parentName: LP_UV_4_Duble:pPlane7
position: {x: -1.1635137e-15, y: -0.09876442, z: 0.047635708}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: R_Elbow_J
parentName: R_Shoulder_J
position: {x: -0.3310107, y: -1.4081169e-15, z: 0.001}
rotation: {x: 0.000016018743, y: 0.0013319249, z: 0.01563006, w: 0.99987704}
scale: {x: 1.0000024, y: 1.0000064, z: 1.000007}
- name: R_Wrist_J
parentName: R_Elbow_J
position: {x: -0.46845, y: -5.7226387e-19, z: -0.0010154457}
rotation: {x: -0.34807143, y: -0.48725396, z: -0.23041666, w: 0.7670319}
scale: {x: 1.0000187, y: 0.99996114, z: 1.0000428}
- name: R_Finger1_J
parentName: R_Wrist_J
position: {x: -0.04401, y: 0, z: 0}
rotation: {x: 0.1772874, y: 0.1544221, z: 0.11157451, w: 0.96554345}
scale: {x: 1.0000869, y: 1.0000123, z: 0.99990547}
- name: R_Finger1_1_J
parentName: R_Finger1_J
position: {x: -0.04296, y: 0, z: 0}
rotation: {x: 0.012857646, y: 0.011921674, z: 0.015104201, w: 0.9997322}
scale: {x: 1.0000521, y: 0.99999946, z: 0.99995995}
- name: R_Finger1_2_J
parentName: R_Finger1_1_J
position: {x: -0.03841, y: 0, z: 0}
rotation: {x: -0.017111897, y: -0.013887941, z: -0.038712684, w: 0.99900734}
scale: {x: 0.99996835, y: 1.0000315, z: 1.0000044}
- name: R_Finger1_3_J
parentName: R_Finger1_2_J
position: {x: -0.03497816, y: 0, z: 1.4210854e-16}
rotation: {x: -0, y: -0, z: -0.0000000041618473, w: 1}
scale: {x: 1.0000001, y: 0.9999999, z: 1.0000002}
- name: R_Finger2_J
parentName: R_Wrist_J
position: {x: -0.07883073, y: -0.056629226, z: 0.057879176}
rotation: {x: 0.36952332, y: 0.46695358, z: 0.24691907, w: 0.76448536}
scale: {x: 1.0000902, y: 1.000055, z: 0.99987936}
- name: R_Finger2_1_J
parentName: R_Finger2_J
position: {x: -0.047742832, y: 4.2632563e-16, z: 3.241851e-16}
rotation: {x: -0.0037168246, y: -0.0012088412, z: -0.039132606, w: 0.99922645}
scale: {x: 0.9999615, y: 1.000053, z: 1.0000063}
- name: R_Finger2_2_J
parentName: R_Finger2_1_J
position: {x: -0.035206914, y: -7.105427e-17, z: 3.5527136e-17}
rotation: {x: 0.000000108033355, y: 0.000000671716, z: -0.04068413, w: 0.9991721}
scale: {x: 0.9999764, y: 1.000031, z: 1.0000051}
- name: R_Finger2_3_J
parentName: R_Finger2_2_J
position: {x: -0.039863437, y: 2.842171e-16, z: 4.6185276e-16}
rotation: {x: -0, y: -0, z: -8.782035e-15, w: 1}
scale: {x: 1, y: 0.9999995, z: 1.0000005}
- name: R_Finger3_J
parentName: R_Wrist_J
position: {x: -0.056012742, y: -0.06440598, z: 0.06480694}
rotation: {x: 0.36108428, y: 0.47999537, z: 0.24509811, w: 0.7610187}
scale: {x: 1.0000598, y: 1.000033, z: 0.9999099}
- name: R_Finger3_1_J
parentName: R_Finger3_J
position: {x: -0.05078112, y: 4.2632563e-16, z: 3.0198067e-16}
rotation: {x: -0.003283531, y: -0.0022025707, z: 0.01905273, w: 0.99981064}
scale: {x: 1.0000198, y: 0.9999874, z: 0.9999969}
- name: R_Finger3_2_J
parentName: R_Finger3_1_J
position: {x: -0.03569, y: 0, z: 0}
rotation: {x: -0.00000066170463, y: -0.0000006551854, z: -0.036856957, w: 0.99932057}
scale: {x: 0.9998747, y: 1.0001371, z: 1.0000099}
- name: R_Finger3_3_J
parentName: R_Finger3_2_J
position: {x: -0.044110715, y: -1.4210854e-16, z: 2.0428103e-16}
rotation: {x: -3.5527133e-15, y: -0, z: 5.3700517e-15, w: 1}
scale: {x: 1.0000007, y: 1.0000002, z: 1}
- name: R_Finger4_J
parentName: R_Wrist_J
position: {x: -0.03404, y: -0.07189, z: 0.07148}
rotation: {x: 0.36963993, y: 0.46659878, z: 0.24697505, w: 0.7646275}
scale: {x: 1.0000726, y: 1.0000422, z: 0.9999223}
- name: R_Finger4_1_J
parentName: R_Finger4_J
position: {x: -0.04918, y: 0, z: 0}
rotation: {x: -0.0037064233, y: -0.0019389081, z: -0.040891726, w: 0.99915487}
scale: {x: 0.99992216, y: 1.000083, z: 1.0000018}
- name: R_Finger4_2_J
parentName: R_Finger4_1_J
position: {x: -0.034849998, y: 0, z: 0}
rotation: {x: -0.000000594882, y: -0.0000010610088, z: -0.038691767, w: 0.9992512}
scale: {x: 0.999887, y: 1.0001183, z: 1.0000061}
- name: R_Finger4_3_J
parentName: R_Finger4_2_J
position: {x: -0.038748305, y: 2.1316282e-16, z: -5.3290704e-17}
rotation: {x: -0, y: -0, z: -9.160968e-15, w: 1}
scale: {x: 1.0000005, y: 1.0000007, z: 1.0000012}
- name: R_Finger5_J
parentName: R_Wrist_J
position: {x: -0.011451069, y: -0.08633972, z: 0.073105074}
rotation: {x: 0.3324839, y: 0.5018322, z: 0.20271064, w: 0.7723518}
scale: {x: 1.0000647, y: 1.0000299, z: 0.9999401}
- name: R_Finger5_1_J
parentName: R_Finger5_J
position: {x: -0.043315277, y: -4.2632563e-16, z: -8.8817837e-17}
rotation: {x: -0.0029349918, y: -0.0026710925, z: -0.009354173, w: 0.9999484}
scale: {x: 0.9999928, y: 1.0000246, z: 1.0000024}
- name: R_Finger5_2_J
parentName: R_Finger5_1_J
position: {x: -0.032959748, y: 1.2079227e-15, z: 5.3290704e-17}
rotation: {x: -0.000000094063566, y: -0.00000004936009, z: -0.03395597, w: 0.9994234}
scale: {x: 0.9999551, y: 1.0000378, z: 1.0000019}
- name: R_Finger5_3_J
parentName: R_Finger5_2_J
position: {x: -0.03879828, y: 2.842171e-16, z: 3.907985e-16}
rotation: {x: -7.1054257e-15, y: -3.5527128e-15, z: -4.6429853e-15, w: 1}
scale: {x: 1.0000024, y: 1.0000017, z: 1.0000014}
- name: Head
parentName: Neck_1
position: {x: -0.20699169, y: -0.0031312455, z: -0.00013047933}
rotation: {x: -0.0006451106, y: 0.00064511073, z: 0.70710665, w: 0.7071065}
scale: {x: 1.0000018, y: 1.0000023, z: 1.0000002}
- name: LP_UV_4_Duble:pCylinder490
parentName: Head
position: {x: 0.006027188, y: -0.05302658, z: 0.059595313}
rotation: {x: 0.065455765, y: 0.030919772, z: 0.010160619, w: 0.9973246}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube365
parentName: LP_UV_4_Duble:pCylinder490
position: {x: 0.0006202426, y: 0.0007938374, z: 0.00015990609}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder502
parentName: Head
position: {x: 0.006027188, y: -0.05302658, z: -0.059231512}
rotation: {x: 0.063428074, y: 0.034853313, z: 0.014498232, w: 0.99727225}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCube375
parentName: LP_UV_4_Duble:pCylinder502
position: {x: 0.0006202426, y: 0.0007938374, z: -0.00015990609}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder272
parentName: Head
position: {x: 0.000022907256, y: -0.056899793, z: 0.0001779592}
rotation: {x: -0.001704084, y: -0.0017039236, z: 0.0101470295, w: 0.99994564}
scale: {x: 1, y: 1, z: 1}
- name: LP_UV_4_Duble:pCylinder456
parentName: LP_UV_4_Duble:pCylinder272
position: {x: -0.000000055499267, y: -0.030913398, z: 0.0000024707936}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: joint10
parentName: Head
position: {x: -0.14528987, y: 0, z: -6.5225603e-18}
rotation: {x: -0, y: -0, z: -0.0000000010647054, w: 1}
scale: {x: 1.0000004, y: 1.0000006, z: 1}
- name: L_Shoulder_J
parentName: Neck_1
position: {x: 0.06817295, y: 0.007732013, z: -0.18702306}
rotation: {x: 0.48709732, y: -0.51028144, z: 0.5132359, w: 0.4888128}
scale: {x: 1.0000148, y: 1.0000023, z: 1.0000083}
- name: LP_UV_4_Duble:pPlane1
parentName: L_Shoulder_J
position: {x: -0.036955833, y: 0.13502434, z: 0.0007343939}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: pSphere6
parentName: LP_UV_4_Duble:pPlane1
position: {x: -0.10378526, y: -0.035386115, z: -0.000000009536743}
rotation: {x: 0, y: -0, z: -0, w: 1}
scale: {x: 1, y: 1, z: 1}
- name: L_Elbow_J
parentName: L_Shoulder_J
position: {x: -0.33101, y: -1.1091577e-18, z: -0.001}
rotation: {x: -0.0001288056, y: -0.0023817113, z: 0.015587995, w: 0.99987566}
scale: {x: 1.0000044, y: 1.0000093, z: 1.0000124}
- name: L_Wrist_J
parentName: L_Elbow_J
position: {x: -0.46845, y: 1.1012717e-18, z: 0.0028781958}
rotation: {x: 0.3480745, y: 0.48725766, z: -0.2304152, w: 0.7670287}
scale: {x: 1.0000378, y: 0.999984, z: 1.0000432}
- name: L_Finger1_J
parentName: L_Wrist_J
position: {x: -0.04401, y: 0, z: 0}
rotation: {x: -0.17729883, y: -0.15443069, z: 0.11160398, w: 0.9655366}
scale: {x: 1.0000613, y: 1.0000489, z: 0.99990135}
- name: L_Finger1_1_J
parentName: L_Finger1_J
position: {x: -0.0429622, y: -4.973799e-16, z: 4.2632563e-16}
rotation: {x: -0.012861739, y: -0.011925618, z: 0.0150994975, w: 0.99973214}
scale: {x: 1.0000353, y: 1.0000231, z: 0.9999472}
- name: L_Finger1_2_J
parentName: L_Finger1_1_J
position: {x: -0.038408186, y: 7.105427e-17, z: 2.1316282e-16}
rotation: {x: 0.01711504, y: 0.013889857, z: -0.038706783, w: 0.9990075}
scale: {x: 0.99997634, y: 1.0000107, z: 1.0000159}
- name: L_Finger1_3_J
parentName: L_Finger1_2_J
position: {x: -0.03497826, y: -2.1316282e-16, z: -1.4210854e-16}
rotation: {x: -0, y: -0.0000000018626445, z: -0.000000003085005, w: 1}
scale: {x: 0.9999995, y: 1.0000001, z: 1.0000007}
- name: L_Finger5_J
parentName: L_Wrist_J
position: {x: -0.011449999, y: -0.086339995, z: -0.0731}
rotation: {x: -0.3324909, y: -0.50184846, z: 0.20270239, w: 0.77234036}
scale: {x: 1.0000205, y: 1.0000836, z: 0.99994344}
- name: L_Finger5_1_J
parentName: L_Finger5_J
position: {x: -0.043319996, y: 0, z: 0}
rotation: {x: 0.0029467936, y: 0.0026817617, z: -0.0093452325, w: 0.9999484}
scale: {x: 1.0000097, y: 1.000015, z: 1.0000076}
- name: L_Finger5_2_J
parentName: L_Finger5_1_J
position: {x: -0.032959998, y: 0, z: -2.71974e-16}
rotation: {x: 0.00000006053596, y: -0.00000006170011, z: -0.033960998, w: 0.9994232}
scale: {x: 0.9999794, y: 1.0000247, z: 1.0000032}
- name: L_Finger5_3_J
parentName: L_Finger5_2_J
position: {x: -0.03879901, y: -4.2632563e-16, z: 1.0658141e-16}
rotation: {x: -0, y: -0, z: 3.7350752e-15, w: 1}
scale: {x: 1.0000019, y: 1.0000007, z: 1.0000024}
- name: L_Finger2_J
parentName: L_Wrist_J
position: {x: -0.07883, y: -0.05663, z: -0.05788}
rotation: {x: -0.36952665, y: -0.4669622, z: 0.2469293, w: 0.7644752}
scale: {x: 1.0000466, y: 1.0001355, z: 0.9998963}
- name: L_Finger2_1_J
parentName: L_Finger2_J
position: {x: -0.04774, y: 0, z: 0}
rotation: {x: 0.0037157505, y: 0.00120744, z: -0.039121147, w: 0.99922687}
scale: {x: 0.99997777, y: 1.000045, z: 1.0000079}
- name: L_Finger2_2_J
parentName: L_Finger2_1_J
position: {x: -0.03521, y: 0, z: 6.093411e-17}
rotation: {x: 0.00000031758086, y: -0.00000018079291, z: -0.04068039, w: 0.9991722}
scale: {x: 0.9999725, y: 1.0000349, z: 1.0000052}
- name: L_Finger2_3_J
parentName: L_Finger2_2_J
position: {x: -0.03986272, y: 2.1316282e-16, z: -4.1744386e-16}
rotation: {x: -0, y: -0, z: -4.934201e-15, w: 1}
scale: {x: 1.0000011, y: 0.9999999, z: 1.0000006}
- name: L_Finger3_J
parentName: L_Wrist_J
position: {x: -0.056009997, y: -0.06441, z: -0.06481}
rotation: {x: -0.36108804, y: -0.4800053, z: 0.24510951, w: 0.7610071}
scale: {x: 1.0000348, y: 1.0000981, z: 0.99992496}
- name: L_Finger3_1_J
parentName: L_Finger3_J
position: {x: -0.05078, y: 0, z: 0}
rotation: {x: 0.003282398, y: 0.0022019148, z: 0.019055337, w: 0.99981064}
scale: {x: 1.0000286, y: 1.0000036, z: 1.0000148}
- name: L_Finger3_2_J
parentName: L_Finger3_1_J
position: {x: -0.03569, y: 0, z: 6.5707042e-18}
rotation: {x: 0.00000092596713, y: 0.0000014391256, z: -0.036846843, w: 0.999321}
scale: {x: 0.9999378, y: 1.0000644, z: 1.0000055}
- name: L_Finger3_3_J
parentName: L_Finger3_2_J
position: {x: -0.04410981, y: -3.5527135e-16, z: -1.1279866e-15}
rotation: {x: -0, y: -0, z: -6.3172107e-15, w: 1}
scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
- name: L_Finger4_J
parentName: L_Wrist_J
position: {x: -0.03404, y: -0.07189, z: -0.07148}
rotation: {x: -0.3696439, y: -0.46660623, z: 0.24698454, w: 0.764618}
scale: {x: 1.0000527, y: 1.0001074, z: 0.9999393}
- name: L_Finger4_1_J
parentName: L_Finger4_J
position: {x: -0.04918, y: 0, z: 0}
rotation: {x: 0.0037052315, y: 0.001937299, z: -0.04088929, w: 0.999155}
scale: {x: 0.99997014, y: 1.0000771, z: 1.0000284}
- name: L_Finger4_2_J
parentName: L_Finger4_1_J
position: {x: -0.034849998, y: 0, z: -5.44844e-17}
rotation: {x: 0.00000064237923, y: 0.00000051024796, z: -0.038691793, w: 0.9992512}
scale: {x: 0.9998984, y: 1.0000938, z: 0.99999446}
- name: L_Finger4_3_J
parentName: L_Finger4_2_J
position: {x: -0.038748313, y: 7.105427e-17, z: 3.5527135e-16}
rotation: {x: -7.105425e-15, y: -0, z: -2.0878466e-15, w: 1}
scale: {x: 1, y: 1.0000007, z: 1.0000001}
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:
|