_MainRig.fbx.meta 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205
  1. fileFormatVersion: 2
  2. guid: a4a3ba617ed9c5946bb76844ec1ef299
  3. ModelImporter:
  4. serializedVersion: 22
  5. fileIDToRecycleName:
  6. 100000: //RootNode
  7. 100002: Ankle_L
  8. 100004: Ankle_R
  9. 100006: BottomLip_M
  10. 100008: Cheek_L
  11. 100010: Cheek_R
  12. 100012: Chest_M
  13. 100014: DeformationSystem
  14. 100016: Elbow_L
  15. 100018: Elbow_R
  16. 100020: Eye_L
  17. 100022: Eye_R
  18. 100024: EyebrowCenter_M
  19. 100026: EyebrowInner_L
  20. 100028: EyebrowInner_R
  21. 100030: EyebrowMid_L
  22. 100032: EyebrowMid_R
  23. 100034: EyebrowOuter_L
  24. 100036: EyebrowOuter_R
  25. 100038: EyeEnd_L
  26. 100040: EyeEnd_R
  27. 100042: Geometry
  28. 100044: Head_M
  29. 100046: HeadEnd_M
  30. 100048: Hip_L
  31. 100050: Hip_R
  32. 100052: IndexFinger1_L
  33. 100054: IndexFinger1_R
  34. 100056: IndexFinger2_L
  35. 100058: IndexFinger2_R
  36. 100060: IndexFinger3_L
  37. 100062: IndexFinger3_R
  38. 100064: Jaw_M
  39. 100066: JawEnd_M
  40. 100068: Knee_L
  41. 100070: Knee_R
  42. 100072: LowerCheek_L
  43. 100074: LowerCheek_R
  44. 100076: LowerNose_L
  45. 100078: LowerNose_R
  46. 100080: LowerNoseMid_M
  47. 100082: Main
  48. 100084: man-astronaut
  49. 100086: man-basketball-player
  50. 100088: man-business
  51. 100090: man-casual
  52. 100092: man-chef
  53. 100094: man-clown
  54. 100096: man-construction-worker
  55. 100098: man-cowboy
  56. 100100: man-cyclist
  57. 100102: man-diving
  58. 100104: man-doctor
  59. 100106: man-farm
  60. 100108: man-fire
  61. 100110: man-hazard
  62. 100112: man-knight
  63. 100114: man-lumberjack
  64. 100116: man-ninja
  65. 100118: man-police
  66. 100120: man-prehistoric
  67. 100122: man-skate
  68. 100124: man-skeleton
  69. 100126: man-soldier
  70. 100128: man-swimsuit
  71. 100130: man-wizard
  72. 100132: man-zombie
  73. 100134: MiddleFinger1_L
  74. 100136: MiddleFinger1_R
  75. 100138: MiddleFinger2_L
  76. 100140: MiddleFinger2_R
  77. 100142: MiddleFinger3_L
  78. 100144: MiddleFinger3_R
  79. 100146: Neck_M
  80. 100148: OuterMouth_L
  81. 100150: OuterMouth_R
  82. 100152: PinkyFinger1_L
  83. 100154: PinkyFinger1_R
  84. 100156: PinkyFinger2_L
  85. 100158: PinkyFinger2_R
  86. 100160: PinkyFinger3_L
  87. 100162: PinkyFinger3_R
  88. 100164: RingFinger1_L
  89. 100166: RingFinger1_R
  90. 100168: RingFinger2_L
  91. 100170: RingFinger2_R
  92. 100172: RingFinger3_L
  93. 100174: RingFinger3_R
  94. 100176: Root_M
  95. 100178: Scapula_L
  96. 100180: Scapula_R
  97. 100182: Shoulder_L
  98. 100184: Shoulder_R
  99. 100186: Spine1_M
  100. 100188: ThumbFinger1_L
  101. 100190: ThumbFinger1_R
  102. 100192: ThumbFinger2_L
  103. 100194: ThumbFinger2_R
  104. 100196: ThumbFinger3_L
  105. 100198: ThumbFinger3_R
  106. 100200: Toes_L
  107. 100202: Toes_R
  108. 100204: ToesEnd_L
  109. 100206: ToesEnd_R
  110. 100208: UpperLip_M
  111. 100210: UpperNose_L
  112. 100212: UpperNose_R
  113. 100214: woman-astronaut
  114. 100216: woman-basketball-player
  115. 100218: woman-business
  116. 100220: woman-casual
  117. 100222: woman-chef
  118. 100224: woman-clown
  119. 100226: woman-construction-worker
  120. 100228: woman-cowgirl
  121. 100230: woman-doctor
  122. 100232: woman-farm
  123. 100234: woman-fire
  124. 100236: woman-lumberjack
  125. 100238: woman-police
  126. 100240: woman-prehistoric
  127. 100242: woman-skate
  128. 100244: woman-soldier
  129. 100246: woman-swimsuit
  130. 100248: woman-zombie
  131. 100250: Wrist_L
  132. 100252: Wrist_R
  133. 100254: FKAimEye_L
  134. 100256: FKAimEye_R
  135. 100258: FKAnkle_L
  136. 100260: FKAnkle_R
  137. 100262: FKChest_M
  138. 100264: FKElbow_L
  139. 100266: FKElbow_R
  140. 100268: FKExtraAnkle_L
  141. 100270: FKExtraAnkle_R
  142. 100272: FKExtraChest_M
  143. 100274: FKExtraElbow_L
  144. 100276: FKExtraElbow_R
  145. 100278: FKExtraEye_L
  146. 100280: FKExtraEye_R
  147. 100282: FKExtraHead_M
  148. 100284: FKExtraHip_L
  149. 100286: FKExtraHip_R
  150. 100288: FKExtraIndexFinger1_L
  151. 100290: FKExtraIndexFinger1_R
  152. 100292: FKExtraIndexFinger2_L
  153. 100294: FKExtraIndexFinger2_R
  154. 100296: FKExtraJaw_M
  155. 100298: FKExtraKnee_L
  156. 100300: FKExtraKnee_R
  157. 100302: FKExtraMiddleFinger1_L
  158. 100304: FKExtraMiddleFinger1_R
  159. 100306: FKExtraMiddleFinger2_L
  160. 100308: FKExtraMiddleFinger2_R
  161. 100310: FKExtraNeck_M
  162. 100312: FKExtraPinkyFinger1_L
  163. 100314: FKExtraPinkyFinger1_R
  164. 100316: FKExtraPinkyFinger2_L
  165. 100318: FKExtraPinkyFinger2_R
  166. 100320: FKExtraRingFinger1_L
  167. 100322: FKExtraRingFinger1_R
  168. 100324: FKExtraRingFinger2_L
  169. 100326: FKExtraRingFinger2_R
  170. 100328: FKExtraRoot_M
  171. 100330: FKExtraScapula_L
  172. 100332: FKExtraScapula_R
  173. 100334: FKExtraShoulder_L
  174. 100336: FKExtraShoulder_R
  175. 100338: FKExtraSpine1_M
  176. 100340: FKExtraThumbFinger1_L
  177. 100342: FKExtraThumbFinger1_R
  178. 100344: FKExtraThumbFinger2_L
  179. 100346: FKExtraThumbFinger2_R
  180. 100348: FKExtraToes_L
  181. 100350: FKExtraToes_R
  182. 100352: FKExtraWrist_L
  183. 100354: FKExtraWrist_R
  184. 100356: FKEye_L
  185. 100358: FKEye_R
  186. 100360: FKGlobalHead_M
  187. 100362: FKGlobalStaticHead_M
  188. 100364: FKHead_M
  189. 100366: FKHip_L
  190. 100368: FKHip_R
  191. 100370: FKIKArm_L
  192. 100372: FKIKArm_R
  193. 100374: FKIKLeg_L
  194. 100376: FKIKLeg_R
  195. 100378: FKIKParentConstraintArm_L
  196. 100380: FKIKParentConstraintArm_R
  197. 100382: FKIKParentConstraintLeg_L
  198. 100384: FKIKParentConstraintLeg_R
  199. 100386: FKIKParentConstraintSpine_M
  200. 100388: FKIKSpine_M
  201. 100390: FKIKSystem
  202. 100392: FKIndexFinger1_L
  203. 100394: FKIndexFinger1_R
  204. 100396: FKIndexFinger2_L
  205. 100398: FKIndexFinger2_R
  206. 100400: FKJaw_M
  207. 100402: FKKnee_L
  208. 100404: FKKnee_R
  209. 100406: FKMiddleFinger1_L
  210. 100408: FKMiddleFinger1_R
  211. 100410: FKMiddleFinger2_L
  212. 100412: FKMiddleFinger2_R
  213. 100414: FKNeck_M
  214. 100416: FKOffsetAnkle_L
  215. 100418: FKOffsetAnkle_R
  216. 100420: FKOffsetChest_M
  217. 100422: FKOffsetElbow_L
  218. 100424: FKOffsetElbow_R
  219. 100426: FKOffsetEye_L
  220. 100428: FKOffsetEye_R
  221. 100430: FKOffsetHead_M
  222. 100432: FKOffsetHip_L
  223. 100434: FKOffsetHip_R
  224. 100436: FKOffsetIndexFinger1_L
  225. 100438: FKOffsetIndexFinger1_R
  226. 100440: FKOffsetIndexFinger2_L
  227. 100442: FKOffsetIndexFinger2_R
  228. 100444: FKOffsetJaw_M
  229. 100446: FKOffsetKnee_L
  230. 100448: FKOffsetKnee_R
  231. 100450: FKOffsetMiddleFinger1_L
  232. 100452: FKOffsetMiddleFinger1_R
  233. 100454: FKOffsetMiddleFinger2_L
  234. 100456: FKOffsetMiddleFinger2_R
  235. 100458: FKOffsetNeck_M
  236. 100460: FKOffsetPinkyFinger1_L
  237. 100462: FKOffsetPinkyFinger1_R
  238. 100464: FKOffsetPinkyFinger2_L
  239. 100466: FKOffsetPinkyFinger2_R
  240. 100468: FKOffsetRingFinger1_L
  241. 100470: FKOffsetRingFinger1_R
  242. 100472: FKOffsetRingFinger2_L
  243. 100474: FKOffsetRingFinger2_R
  244. 100476: FKOffsetRoot_M
  245. 100478: FKOffsetScapula_L
  246. 100480: FKOffsetScapula_R
  247. 100482: FKOffsetShoulder_L
  248. 100484: FKOffsetShoulder_R
  249. 100486: FKOffsetSpine1_M
  250. 100488: FKOffsetThumbFinger1_L
  251. 100490: FKOffsetThumbFinger1_R
  252. 100492: FKOffsetThumbFinger2_L
  253. 100494: FKOffsetThumbFinger2_R
  254. 100496: FKOffsetToes_L
  255. 100498: FKOffsetToes_R
  256. 100500: FKOffsetWrist_L
  257. 100502: FKOffsetWrist_R
  258. 100504: FKParentConstraintToChest_M
  259. 100506: FKParentConstraintToRoot_M
  260. 100508: FKParentConstraintToScapula_L
  261. 100510: FKParentConstraintToScapula_R
  262. 100512: FKParentConstraintToWrist_L
  263. 100514: FKParentConstraintToWrist_R
  264. 100516: FKPinkyFinger1_L
  265. 100518: FKPinkyFinger1_R
  266. 100520: FKPinkyFinger2_L
  267. 100522: FKPinkyFinger2_R
  268. 100524: FKRingFinger1_L
  269. 100526: FKRingFinger1_R
  270. 100528: FKRingFinger2_L
  271. 100530: FKRingFinger2_R
  272. 100532: FKRoot_M
  273. 100534: FKScapula_L
  274. 100536: FKScapula_R
  275. 100538: FKShoulder_L
  276. 100540: FKShoulder_R
  277. 100542: FKSpine1_M
  278. 100544: FKSystem
  279. 100546: FKThumbFinger1_L
  280. 100548: FKThumbFinger1_R
  281. 100550: FKThumbFinger2_L
  282. 100552: FKThumbFinger2_R
  283. 100554: FKToes_L
  284. 100556: FKToes_R
  285. 100558: FKWrist_L
  286. 100560: FKWrist_R
  287. 100562: FKXAnkle_L
  288. 100564: FKXAnkle_R
  289. 100566: FKXChest_M
  290. 100568: FKXElbow_L
  291. 100570: FKXElbow_R
  292. 100572: FKXEye_L
  293. 100574: FKXEye_R
  294. 100576: FKXHead_M
  295. 100578: FKXHip_L
  296. 100580: FKXHip_R
  297. 100582: FKXIndexFinger1_L
  298. 100584: FKXIndexFinger1_R
  299. 100586: FKXIndexFinger2_L
  300. 100588: FKXIndexFinger2_R
  301. 100590: FKXJaw_M
  302. 100592: FKXKnee_L
  303. 100594: FKXKnee_R
  304. 100596: FKXMiddleFinger1_L
  305. 100598: FKXMiddleFinger1_R
  306. 100600: FKXMiddleFinger2_L
  307. 100602: FKXMiddleFinger2_R
  308. 100604: FKXNeck_M
  309. 100606: FKXPinkyFinger1_L
  310. 100608: FKXPinkyFinger1_R
  311. 100610: FKXPinkyFinger2_L
  312. 100612: FKXPinkyFinger2_R
  313. 100614: FKXRingFinger1_L
  314. 100616: FKXRingFinger1_R
  315. 100618: FKXRingFinger2_L
  316. 100620: FKXRingFinger2_R
  317. 100622: FKXRoot_M
  318. 100624: FKXScapula_L
  319. 100626: FKXScapula_R
  320. 100628: FKXShoulder_L
  321. 100630: FKXShoulder_R
  322. 100632: FKXSpine1_M
  323. 100634: FKXThumbFinger1_L
  324. 100636: FKXThumbFinger1_R
  325. 100638: FKXThumbFinger2_L
  326. 100640: FKXThumbFinger2_R
  327. 100642: FKXToes_L
  328. 100644: FKXToes_R
  329. 100646: FKXWrist_L
  330. 100648: FKXWrist_R
  331. 100650: HipSwingerStabilizer
  332. 100652: HipSwingReverse
  333. 100654: HipSwingReverseRoot
  334. 100656: IKAcChest_M
  335. 100658: IKAcPociXformChest_M
  336. 100660: IKAcPociXformSpine1_M
  337. 100662: IKAcRoot_M
  338. 100664: IKAcRootFollowOffset_M
  339. 100666: IKAcSpine1_M
  340. 100668: IKAcSpine1FollowOffset_M
  341. 100670: IKAcSpineOffset2_M
  342. 100672: IKAcSpineOffset3_M
  343. 100674: IKAcSpineOffset_M
  344. 100676: IKArm_L
  345. 100678: IKArm_R
  346. 100680: IKCurve
  347. 100682: IKcvSpine1_M
  348. 100684: IKdistanceArm_L
  349. 100686: IKdistanceArm_R
  350. 100688: IKdistanceLeg_L
  351. 100690: IKdistanceLeg_R
  352. 100692: IKExtraArm_L
  353. 100694: IKExtraArm_R
  354. 100696: IKExtracvSpine1_M
  355. 100698: IKExtraLeg_L
  356. 100700: IKExtraLeg_R
  357. 100702: IKExtraSpine1_M
  358. 100704: IKExtraSpine2_M
  359. 100706: IKExtraSpine3_M
  360. 100708: IKfake0Spine_M
  361. 100710: IKFixedOrientRoot_M
  362. 100712: IKFKAlignedArm_L
  363. 100714: IKFKAlignedArm_R
  364. 100716: IKFKAlignedLeg_L
  365. 100718: IKFKAlignedLeg_R
  366. 100720: IKFKAlignedOffsetArm_L
  367. 100722: IKFKAlignedOffsetArm_R
  368. 100724: IKFKAlignedOffsetLeg_L
  369. 100726: IKFKAlignedOffsetLeg_R
  370. 100728: IKHandle
  371. 100730: IKhybridExtraSpine1_M
  372. 100732: IKhybridExtraSpine2_M
  373. 100734: IKhybridExtraSpine3_M
  374. 100736: IKhybridFollowSpine1_M
  375. 100738: IKhybridOffsetSpine1_M
  376. 100740: IKhybridOffsetSpine2_M
  377. 100742: IKhybridOffsetSpine3_M
  378. 100744: IKhybridSpine1_M
  379. 100746: IKhybridSpine2_M
  380. 100748: IKhybridSpine3_M
  381. 100750: IKJoints
  382. 100752: IKLeg_L
  383. 100754: IKLeg_R
  384. 100756: IKMessure
  385. 100758: IKmessureConstrainToArm_L
  386. 100760: IKmessureConstrainToArm_R
  387. 100762: IKmessureConstrainToLeg_L
  388. 100764: IKmessureConstrainToLeg_R
  389. 100766: IKMessureFromHip_L
  390. 100768: IKMessureFromHip_R
  391. 100770: IKMessureFromShoulder_L
  392. 100772: IKMessureFromShoulder_R
  393. 100774: IKmessureLoc1Arm_L
  394. 100776: IKmessureLoc1Arm_R
  395. 100778: IKmessureLoc1Leg_L
  396. 100780: IKmessureLoc1Leg_R
  397. 100782: IKmessureLoc2Arm_L
  398. 100784: IKmessureLoc2Arm_R
  399. 100786: IKmessureLoc2Leg_L
  400. 100788: IKmessureLoc2Leg_R
  401. 100790: IKOffsetArm_L
  402. 100792: IKOffsetArm_R
  403. 100794: IKOffsetConstrainedSpine1_M
  404. 100796: IKOffsetcvSpine1_M
  405. 100798: IKOffsetLeg_L
  406. 100800: IKOffsetLeg_R
  407. 100802: IKOffsetSpine1_M
  408. 100804: IKOffsetSpine2_M
  409. 100806: IKOffsetSpine3_M
  410. 100808: IKParentConstraintHip_L
  411. 100810: IKParentConstraintHip_R
  412. 100812: IKParentConstraintRoot_M
  413. 100814: IKParentConstraintShoulder_L
  414. 100816: IKParentConstraintShoulder_R
  415. 100818: IKScalerChest_M
  416. 100820: IKScalerRoot_M
  417. 100822: IKScalerSpine1_M
  418. 100824: IKSpChest_M
  419. 100826: IKSpChestFollowOffset_M
  420. 100828: IKSpine1_M
  421. 100830: IKSpine1LocalOrient1_M
  422. 100832: IKSpine1LocalOrient2_M
  423. 100834: IKSpine2_M
  424. 100836: IKSpine2LocalOrient1_M
  425. 100838: IKSpine2LocalOrient2_M
  426. 100840: IKSpine3_M
  427. 100842: IKSpine3LocalOrient1_M
  428. 100844: IKSpine3LocalOrient2_M
  429. 100846: IKSpineCurve_M
  430. 100848: IKSpineLocator0_M
  431. 100850: IKSpineLocator1_M
  432. 100852: IKSpineLocator2_M
  433. 100854: IKSpRootFollowOffset_M
  434. 100856: IKSpSpine1_M
  435. 100858: IKSpSpine1FollowOffset_M
  436. 100860: IKSpSpineOffset_M
  437. 100862: IKSystem
  438. 100864: IKXAnkle_L
  439. 100866: IKXAnkle_R
  440. 100868: IKXChest_M
  441. 100870: IKXElbow_L
  442. 100872: IKXElbow_R
  443. 100874: IKXHip_L
  444. 100876: IKXHip_R
  445. 100878: IKXKnee_L
  446. 100880: IKXKnee_R
  447. 100882: IKXOffsetHip_L
  448. 100884: IKXOffsetHip_R
  449. 100886: IKXOffsetRoot_M
  450. 100888: IKXOffsetShoulder_L
  451. 100890: IKXOffsetShoulder_R
  452. 100892: IKXRoot_M
  453. 100894: IKXShoulder_L
  454. 100896: IKXShoulder_R
  455. 100898: IKXSpine1_M
  456. 100900: IKXToes_L
  457. 100902: IKXToes_R
  458. 100904: IKXWrist_L
  459. 100906: IKXWrist_R
  460. 100908: man-pirate
  461. 100910: man-ski
  462. 100912: MotionSystem
  463. 100914: PoleArm_L
  464. 100916: PoleArm_R
  465. 100918: PoleExtraArm_L
  466. 100920: PoleExtraArm_R
  467. 100922: PoleExtraLeg_L
  468. 100924: PoleExtraLeg_R
  469. 100926: PoleLeg_L
  470. 100928: PoleLeg_R
  471. 100930: PoleOffsetArm_L
  472. 100932: PoleOffsetArm_R
  473. 100934: PoleOffsetLeg_L
  474. 100936: PoleOffsetLeg_R
  475. 100938: RollExtraHeel_L
  476. 100940: RollExtraHeel_R
  477. 100942: RollExtraToes_L
  478. 100944: RollExtraToes_R
  479. 100946: RollExtraToesEnd_L
  480. 100948: RollExtraToesEnd_R
  481. 100950: RollHeel_L
  482. 100952: RollHeel_R
  483. 100954: RollOffsetHeel_L
  484. 100956: RollOffsetHeel_R
  485. 100958: RollOffsetToes_L
  486. 100960: RollOffsetToes_R
  487. 100962: RollOffsetToesEnd_L
  488. 100964: RollOffsetToesEnd_R
  489. 100966: RollRollerHeel_L
  490. 100968: RollRollerHeel_R
  491. 100970: RollRollerToes_L
  492. 100972: RollRollerToes_R
  493. 100974: RollRollerToesEnd_L
  494. 100976: RollRollerToesEnd_R
  495. 100978: RollToes_L
  496. 100980: RollToes_R
  497. 100982: RollToesEnd_L
  498. 100984: RollToesEnd_R
  499. 100986: SDKFKIndexFinger1_L
  500. 100988: SDKFKIndexFinger1_R
  501. 100990: SDKFKIndexFinger2_L
  502. 100992: SDKFKIndexFinger2_R
  503. 100994: SDKFKMiddleFinger1_L
  504. 100996: SDKFKMiddleFinger1_R
  505. 100998: SDKFKMiddleFinger2_L
  506. 101000: SDKFKMiddleFinger2_R
  507. 101002: SDKFKPinkyFinger1_L
  508. 101004: SDKFKPinkyFinger1_R
  509. 101006: SDKFKPinkyFinger2_L
  510. 101008: SDKFKPinkyFinger2_R
  511. 101010: SDKFKRingFinger1_L
  512. 101012: SDKFKRingFinger1_R
  513. 101014: SDKFKRingFinger2_L
  514. 101016: SDKFKRingFinger2_R
  515. 101018: SDKFKThumbFinger2_L
  516. 101020: SDKFKThumbFinger2_R
  517. 101022: woman-cyclist
  518. 101024: man-boxer
  519. 101026: woman-boxer
  520. 101028: woman-ninja
  521. 101030: woman-hazard
  522. 101032: woman-pirate
  523. 400000: //RootNode
  524. 400002: Ankle_L
  525. 400004: Ankle_R
  526. 400006: BottomLip_M
  527. 400008: Cheek_L
  528. 400010: Cheek_R
  529. 400012: Chest_M
  530. 400014: DeformationSystem
  531. 400016: Elbow_L
  532. 400018: Elbow_R
  533. 400020: Eye_L
  534. 400022: Eye_R
  535. 400024: EyebrowCenter_M
  536. 400026: EyebrowInner_L
  537. 400028: EyebrowInner_R
  538. 400030: EyebrowMid_L
  539. 400032: EyebrowMid_R
  540. 400034: EyebrowOuter_L
  541. 400036: EyebrowOuter_R
  542. 400038: EyeEnd_L
  543. 400040: EyeEnd_R
  544. 400042: Geometry
  545. 400044: Head_M
  546. 400046: HeadEnd_M
  547. 400048: Hip_L
  548. 400050: Hip_R
  549. 400052: IndexFinger1_L
  550. 400054: IndexFinger1_R
  551. 400056: IndexFinger2_L
  552. 400058: IndexFinger2_R
  553. 400060: IndexFinger3_L
  554. 400062: IndexFinger3_R
  555. 400064: Jaw_M
  556. 400066: JawEnd_M
  557. 400068: Knee_L
  558. 400070: Knee_R
  559. 400072: LowerCheek_L
  560. 400074: LowerCheek_R
  561. 400076: LowerNose_L
  562. 400078: LowerNose_R
  563. 400080: LowerNoseMid_M
  564. 400082: Main
  565. 400084: man-astronaut
  566. 400086: man-basketball-player
  567. 400088: man-business
  568. 400090: man-casual
  569. 400092: man-chef
  570. 400094: man-clown
  571. 400096: man-construction-worker
  572. 400098: man-cowboy
  573. 400100: man-cyclist
  574. 400102: man-diving
  575. 400104: man-doctor
  576. 400106: man-farm
  577. 400108: man-fire
  578. 400110: man-hazard
  579. 400112: man-knight
  580. 400114: man-lumberjack
  581. 400116: man-ninja
  582. 400118: man-police
  583. 400120: man-prehistoric
  584. 400122: man-skate
  585. 400124: man-skeleton
  586. 400126: man-soldier
  587. 400128: man-swimsuit
  588. 400130: man-wizard
  589. 400132: man-zombie
  590. 400134: MiddleFinger1_L
  591. 400136: MiddleFinger1_R
  592. 400138: MiddleFinger2_L
  593. 400140: MiddleFinger2_R
  594. 400142: MiddleFinger3_L
  595. 400144: MiddleFinger3_R
  596. 400146: Neck_M
  597. 400148: OuterMouth_L
  598. 400150: OuterMouth_R
  599. 400152: PinkyFinger1_L
  600. 400154: PinkyFinger1_R
  601. 400156: PinkyFinger2_L
  602. 400158: PinkyFinger2_R
  603. 400160: PinkyFinger3_L
  604. 400162: PinkyFinger3_R
  605. 400164: RingFinger1_L
  606. 400166: RingFinger1_R
  607. 400168: RingFinger2_L
  608. 400170: RingFinger2_R
  609. 400172: RingFinger3_L
  610. 400174: RingFinger3_R
  611. 400176: Root_M
  612. 400178: Scapula_L
  613. 400180: Scapula_R
  614. 400182: Shoulder_L
  615. 400184: Shoulder_R
  616. 400186: Spine1_M
  617. 400188: ThumbFinger1_L
  618. 400190: ThumbFinger1_R
  619. 400192: ThumbFinger2_L
  620. 400194: ThumbFinger2_R
  621. 400196: ThumbFinger3_L
  622. 400198: ThumbFinger3_R
  623. 400200: Toes_L
  624. 400202: Toes_R
  625. 400204: ToesEnd_L
  626. 400206: ToesEnd_R
  627. 400208: UpperLip_M
  628. 400210: UpperNose_L
  629. 400212: UpperNose_R
  630. 400214: woman-astronaut
  631. 400216: woman-basketball-player
  632. 400218: woman-business
  633. 400220: woman-casual
  634. 400222: woman-chef
  635. 400224: woman-clown
  636. 400226: woman-construction-worker
  637. 400228: woman-cowgirl
  638. 400230: woman-doctor
  639. 400232: woman-farm
  640. 400234: woman-fire
  641. 400236: woman-lumberjack
  642. 400238: woman-police
  643. 400240: woman-prehistoric
  644. 400242: woman-skate
  645. 400244: woman-soldier
  646. 400246: woman-swimsuit
  647. 400248: woman-zombie
  648. 400250: Wrist_L
  649. 400252: Wrist_R
  650. 400254: FKAimEye_L
  651. 400256: FKAimEye_R
  652. 400258: FKAnkle_L
  653. 400260: FKAnkle_R
  654. 400262: FKChest_M
  655. 400264: FKElbow_L
  656. 400266: FKElbow_R
  657. 400268: FKExtraAnkle_L
  658. 400270: FKExtraAnkle_R
  659. 400272: FKExtraChest_M
  660. 400274: FKExtraElbow_L
  661. 400276: FKExtraElbow_R
  662. 400278: FKExtraEye_L
  663. 400280: FKExtraEye_R
  664. 400282: FKExtraHead_M
  665. 400284: FKExtraHip_L
  666. 400286: FKExtraHip_R
  667. 400288: FKExtraIndexFinger1_L
  668. 400290: FKExtraIndexFinger1_R
  669. 400292: FKExtraIndexFinger2_L
  670. 400294: FKExtraIndexFinger2_R
  671. 400296: FKExtraJaw_M
  672. 400298: FKExtraKnee_L
  673. 400300: FKExtraKnee_R
  674. 400302: FKExtraMiddleFinger1_L
  675. 400304: FKExtraMiddleFinger1_R
  676. 400306: FKExtraMiddleFinger2_L
  677. 400308: FKExtraMiddleFinger2_R
  678. 400310: FKExtraNeck_M
  679. 400312: FKExtraPinkyFinger1_L
  680. 400314: FKExtraPinkyFinger1_R
  681. 400316: FKExtraPinkyFinger2_L
  682. 400318: FKExtraPinkyFinger2_R
  683. 400320: FKExtraRingFinger1_L
  684. 400322: FKExtraRingFinger1_R
  685. 400324: FKExtraRingFinger2_L
  686. 400326: FKExtraRingFinger2_R
  687. 400328: FKExtraRoot_M
  688. 400330: FKExtraScapula_L
  689. 400332: FKExtraScapula_R
  690. 400334: FKExtraShoulder_L
  691. 400336: FKExtraShoulder_R
  692. 400338: FKExtraSpine1_M
  693. 400340: FKExtraThumbFinger1_L
  694. 400342: FKExtraThumbFinger1_R
  695. 400344: FKExtraThumbFinger2_L
  696. 400346: FKExtraThumbFinger2_R
  697. 400348: FKExtraToes_L
  698. 400350: FKExtraToes_R
  699. 400352: FKExtraWrist_L
  700. 400354: FKExtraWrist_R
  701. 400356: FKEye_L
  702. 400358: FKEye_R
  703. 400360: FKGlobalHead_M
  704. 400362: FKGlobalStaticHead_M
  705. 400364: FKHead_M
  706. 400366: FKHip_L
  707. 400368: FKHip_R
  708. 400370: FKIKArm_L
  709. 400372: FKIKArm_R
  710. 400374: FKIKLeg_L
  711. 400376: FKIKLeg_R
  712. 400378: FKIKParentConstraintArm_L
  713. 400380: FKIKParentConstraintArm_R
  714. 400382: FKIKParentConstraintLeg_L
  715. 400384: FKIKParentConstraintLeg_R
  716. 400386: FKIKParentConstraintSpine_M
  717. 400388: FKIKSpine_M
  718. 400390: FKIKSystem
  719. 400392: FKIndexFinger1_L
  720. 400394: FKIndexFinger1_R
  721. 400396: FKIndexFinger2_L
  722. 400398: FKIndexFinger2_R
  723. 400400: FKJaw_M
  724. 400402: FKKnee_L
  725. 400404: FKKnee_R
  726. 400406: FKMiddleFinger1_L
  727. 400408: FKMiddleFinger1_R
  728. 400410: FKMiddleFinger2_L
  729. 400412: FKMiddleFinger2_R
  730. 400414: FKNeck_M
  731. 400416: FKOffsetAnkle_L
  732. 400418: FKOffsetAnkle_R
  733. 400420: FKOffsetChest_M
  734. 400422: FKOffsetElbow_L
  735. 400424: FKOffsetElbow_R
  736. 400426: FKOffsetEye_L
  737. 400428: FKOffsetEye_R
  738. 400430: FKOffsetHead_M
  739. 400432: FKOffsetHip_L
  740. 400434: FKOffsetHip_R
  741. 400436: FKOffsetIndexFinger1_L
  742. 400438: FKOffsetIndexFinger1_R
  743. 400440: FKOffsetIndexFinger2_L
  744. 400442: FKOffsetIndexFinger2_R
  745. 400444: FKOffsetJaw_M
  746. 400446: FKOffsetKnee_L
  747. 400448: FKOffsetKnee_R
  748. 400450: FKOffsetMiddleFinger1_L
  749. 400452: FKOffsetMiddleFinger1_R
  750. 400454: FKOffsetMiddleFinger2_L
  751. 400456: FKOffsetMiddleFinger2_R
  752. 400458: FKOffsetNeck_M
  753. 400460: FKOffsetPinkyFinger1_L
  754. 400462: FKOffsetPinkyFinger1_R
  755. 400464: FKOffsetPinkyFinger2_L
  756. 400466: FKOffsetPinkyFinger2_R
  757. 400468: FKOffsetRingFinger1_L
  758. 400470: FKOffsetRingFinger1_R
  759. 400472: FKOffsetRingFinger2_L
  760. 400474: FKOffsetRingFinger2_R
  761. 400476: FKOffsetRoot_M
  762. 400478: FKOffsetScapula_L
  763. 400480: FKOffsetScapula_R
  764. 400482: FKOffsetShoulder_L
  765. 400484: FKOffsetShoulder_R
  766. 400486: FKOffsetSpine1_M
  767. 400488: FKOffsetThumbFinger1_L
  768. 400490: FKOffsetThumbFinger1_R
  769. 400492: FKOffsetThumbFinger2_L
  770. 400494: FKOffsetThumbFinger2_R
  771. 400496: FKOffsetToes_L
  772. 400498: FKOffsetToes_R
  773. 400500: FKOffsetWrist_L
  774. 400502: FKOffsetWrist_R
  775. 400504: FKParentConstraintToChest_M
  776. 400506: FKParentConstraintToRoot_M
  777. 400508: FKParentConstraintToScapula_L
  778. 400510: FKParentConstraintToScapula_R
  779. 400512: FKParentConstraintToWrist_L
  780. 400514: FKParentConstraintToWrist_R
  781. 400516: FKPinkyFinger1_L
  782. 400518: FKPinkyFinger1_R
  783. 400520: FKPinkyFinger2_L
  784. 400522: FKPinkyFinger2_R
  785. 400524: FKRingFinger1_L
  786. 400526: FKRingFinger1_R
  787. 400528: FKRingFinger2_L
  788. 400530: FKRingFinger2_R
  789. 400532: FKRoot_M
  790. 400534: FKScapula_L
  791. 400536: FKScapula_R
  792. 400538: FKShoulder_L
  793. 400540: FKShoulder_R
  794. 400542: FKSpine1_M
  795. 400544: FKSystem
  796. 400546: FKThumbFinger1_L
  797. 400548: FKThumbFinger1_R
  798. 400550: FKThumbFinger2_L
  799. 400552: FKThumbFinger2_R
  800. 400554: FKToes_L
  801. 400556: FKToes_R
  802. 400558: FKWrist_L
  803. 400560: FKWrist_R
  804. 400562: FKXAnkle_L
  805. 400564: FKXAnkle_R
  806. 400566: FKXChest_M
  807. 400568: FKXElbow_L
  808. 400570: FKXElbow_R
  809. 400572: FKXEye_L
  810. 400574: FKXEye_R
  811. 400576: FKXHead_M
  812. 400578: FKXHip_L
  813. 400580: FKXHip_R
  814. 400582: FKXIndexFinger1_L
  815. 400584: FKXIndexFinger1_R
  816. 400586: FKXIndexFinger2_L
  817. 400588: FKXIndexFinger2_R
  818. 400590: FKXJaw_M
  819. 400592: FKXKnee_L
  820. 400594: FKXKnee_R
  821. 400596: FKXMiddleFinger1_L
  822. 400598: FKXMiddleFinger1_R
  823. 400600: FKXMiddleFinger2_L
  824. 400602: FKXMiddleFinger2_R
  825. 400604: FKXNeck_M
  826. 400606: FKXPinkyFinger1_L
  827. 400608: FKXPinkyFinger1_R
  828. 400610: FKXPinkyFinger2_L
  829. 400612: FKXPinkyFinger2_R
  830. 400614: FKXRingFinger1_L
  831. 400616: FKXRingFinger1_R
  832. 400618: FKXRingFinger2_L
  833. 400620: FKXRingFinger2_R
  834. 400622: FKXRoot_M
  835. 400624: FKXScapula_L
  836. 400626: FKXScapula_R
  837. 400628: FKXShoulder_L
  838. 400630: FKXShoulder_R
  839. 400632: FKXSpine1_M
  840. 400634: FKXThumbFinger1_L
  841. 400636: FKXThumbFinger1_R
  842. 400638: FKXThumbFinger2_L
  843. 400640: FKXThumbFinger2_R
  844. 400642: FKXToes_L
  845. 400644: FKXToes_R
  846. 400646: FKXWrist_L
  847. 400648: FKXWrist_R
  848. 400650: HipSwingerStabilizer
  849. 400652: HipSwingReverse
  850. 400654: HipSwingReverseRoot
  851. 400656: IKAcChest_M
  852. 400658: IKAcPociXformChest_M
  853. 400660: IKAcPociXformSpine1_M
  854. 400662: IKAcRoot_M
  855. 400664: IKAcRootFollowOffset_M
  856. 400666: IKAcSpine1_M
  857. 400668: IKAcSpine1FollowOffset_M
  858. 400670: IKAcSpineOffset2_M
  859. 400672: IKAcSpineOffset3_M
  860. 400674: IKAcSpineOffset_M
  861. 400676: IKArm_L
  862. 400678: IKArm_R
  863. 400680: IKCurve
  864. 400682: IKcvSpine1_M
  865. 400684: IKdistanceArm_L
  866. 400686: IKdistanceArm_R
  867. 400688: IKdistanceLeg_L
  868. 400690: IKdistanceLeg_R
  869. 400692: IKExtraArm_L
  870. 400694: IKExtraArm_R
  871. 400696: IKExtracvSpine1_M
  872. 400698: IKExtraLeg_L
  873. 400700: IKExtraLeg_R
  874. 400702: IKExtraSpine1_M
  875. 400704: IKExtraSpine2_M
  876. 400706: IKExtraSpine3_M
  877. 400708: IKfake0Spine_M
  878. 400710: IKFixedOrientRoot_M
  879. 400712: IKFKAlignedArm_L
  880. 400714: IKFKAlignedArm_R
  881. 400716: IKFKAlignedLeg_L
  882. 400718: IKFKAlignedLeg_R
  883. 400720: IKFKAlignedOffsetArm_L
  884. 400722: IKFKAlignedOffsetArm_R
  885. 400724: IKFKAlignedOffsetLeg_L
  886. 400726: IKFKAlignedOffsetLeg_R
  887. 400728: IKHandle
  888. 400730: IKhybridExtraSpine1_M
  889. 400732: IKhybridExtraSpine2_M
  890. 400734: IKhybridExtraSpine3_M
  891. 400736: IKhybridFollowSpine1_M
  892. 400738: IKhybridOffsetSpine1_M
  893. 400740: IKhybridOffsetSpine2_M
  894. 400742: IKhybridOffsetSpine3_M
  895. 400744: IKhybridSpine1_M
  896. 400746: IKhybridSpine2_M
  897. 400748: IKhybridSpine3_M
  898. 400750: IKJoints
  899. 400752: IKLeg_L
  900. 400754: IKLeg_R
  901. 400756: IKMessure
  902. 400758: IKmessureConstrainToArm_L
  903. 400760: IKmessureConstrainToArm_R
  904. 400762: IKmessureConstrainToLeg_L
  905. 400764: IKmessureConstrainToLeg_R
  906. 400766: IKMessureFromHip_L
  907. 400768: IKMessureFromHip_R
  908. 400770: IKMessureFromShoulder_L
  909. 400772: IKMessureFromShoulder_R
  910. 400774: IKmessureLoc1Arm_L
  911. 400776: IKmessureLoc1Arm_R
  912. 400778: IKmessureLoc1Leg_L
  913. 400780: IKmessureLoc1Leg_R
  914. 400782: IKmessureLoc2Arm_L
  915. 400784: IKmessureLoc2Arm_R
  916. 400786: IKmessureLoc2Leg_L
  917. 400788: IKmessureLoc2Leg_R
  918. 400790: IKOffsetArm_L
  919. 400792: IKOffsetArm_R
  920. 400794: IKOffsetConstrainedSpine1_M
  921. 400796: IKOffsetcvSpine1_M
  922. 400798: IKOffsetLeg_L
  923. 400800: IKOffsetLeg_R
  924. 400802: IKOffsetSpine1_M
  925. 400804: IKOffsetSpine2_M
  926. 400806: IKOffsetSpine3_M
  927. 400808: IKParentConstraintHip_L
  928. 400810: IKParentConstraintHip_R
  929. 400812: IKParentConstraintRoot_M
  930. 400814: IKParentConstraintShoulder_L
  931. 400816: IKParentConstraintShoulder_R
  932. 400818: IKScalerChest_M
  933. 400820: IKScalerRoot_M
  934. 400822: IKScalerSpine1_M
  935. 400824: IKSpChest_M
  936. 400826: IKSpChestFollowOffset_M
  937. 400828: IKSpine1_M
  938. 400830: IKSpine1LocalOrient1_M
  939. 400832: IKSpine1LocalOrient2_M
  940. 400834: IKSpine2_M
  941. 400836: IKSpine2LocalOrient1_M
  942. 400838: IKSpine2LocalOrient2_M
  943. 400840: IKSpine3_M
  944. 400842: IKSpine3LocalOrient1_M
  945. 400844: IKSpine3LocalOrient2_M
  946. 400846: IKSpineCurve_M
  947. 400848: IKSpineLocator0_M
  948. 400850: IKSpineLocator1_M
  949. 400852: IKSpineLocator2_M
  950. 400854: IKSpRootFollowOffset_M
  951. 400856: IKSpSpine1_M
  952. 400858: IKSpSpine1FollowOffset_M
  953. 400860: IKSpSpineOffset_M
  954. 400862: IKSystem
  955. 400864: IKXAnkle_L
  956. 400866: IKXAnkle_R
  957. 400868: IKXChest_M
  958. 400870: IKXElbow_L
  959. 400872: IKXElbow_R
  960. 400874: IKXHip_L
  961. 400876: IKXHip_R
  962. 400878: IKXKnee_L
  963. 400880: IKXKnee_R
  964. 400882: IKXOffsetHip_L
  965. 400884: IKXOffsetHip_R
  966. 400886: IKXOffsetRoot_M
  967. 400888: IKXOffsetShoulder_L
  968. 400890: IKXOffsetShoulder_R
  969. 400892: IKXRoot_M
  970. 400894: IKXShoulder_L
  971. 400896: IKXShoulder_R
  972. 400898: IKXSpine1_M
  973. 400900: IKXToes_L
  974. 400902: IKXToes_R
  975. 400904: IKXWrist_L
  976. 400906: IKXWrist_R
  977. 400908: man-pirate
  978. 400910: man-ski
  979. 400912: MotionSystem
  980. 400914: PoleArm_L
  981. 400916: PoleArm_R
  982. 400918: PoleExtraArm_L
  983. 400920: PoleExtraArm_R
  984. 400922: PoleExtraLeg_L
  985. 400924: PoleExtraLeg_R
  986. 400926: PoleLeg_L
  987. 400928: PoleLeg_R
  988. 400930: PoleOffsetArm_L
  989. 400932: PoleOffsetArm_R
  990. 400934: PoleOffsetLeg_L
  991. 400936: PoleOffsetLeg_R
  992. 400938: RollExtraHeel_L
  993. 400940: RollExtraHeel_R
  994. 400942: RollExtraToes_L
  995. 400944: RollExtraToes_R
  996. 400946: RollExtraToesEnd_L
  997. 400948: RollExtraToesEnd_R
  998. 400950: RollHeel_L
  999. 400952: RollHeel_R
  1000. 400954: RollOffsetHeel_L
  1001. 400956: RollOffsetHeel_R
  1002. 400958: RollOffsetToes_L
  1003. 400960: RollOffsetToes_R
  1004. 400962: RollOffsetToesEnd_L
  1005. 400964: RollOffsetToesEnd_R
  1006. 400966: RollRollerHeel_L
  1007. 400968: RollRollerHeel_R
  1008. 400970: RollRollerToes_L
  1009. 400972: RollRollerToes_R
  1010. 400974: RollRollerToesEnd_L
  1011. 400976: RollRollerToesEnd_R
  1012. 400978: RollToes_L
  1013. 400980: RollToes_R
  1014. 400982: RollToesEnd_L
  1015. 400984: RollToesEnd_R
  1016. 400986: SDKFKIndexFinger1_L
  1017. 400988: SDKFKIndexFinger1_R
  1018. 400990: SDKFKIndexFinger2_L
  1019. 400992: SDKFKIndexFinger2_R
  1020. 400994: SDKFKMiddleFinger1_L
  1021. 400996: SDKFKMiddleFinger1_R
  1022. 400998: SDKFKMiddleFinger2_L
  1023. 401000: SDKFKMiddleFinger2_R
  1024. 401002: SDKFKPinkyFinger1_L
  1025. 401004: SDKFKPinkyFinger1_R
  1026. 401006: SDKFKPinkyFinger2_L
  1027. 401008: SDKFKPinkyFinger2_R
  1028. 401010: SDKFKRingFinger1_L
  1029. 401012: SDKFKRingFinger1_R
  1030. 401014: SDKFKRingFinger2_L
  1031. 401016: SDKFKRingFinger2_R
  1032. 401018: SDKFKThumbFinger2_L
  1033. 401020: SDKFKThumbFinger2_R
  1034. 401022: woman-cyclist
  1035. 401024: man-boxer
  1036. 401026: woman-boxer
  1037. 401028: woman-ninja
  1038. 401030: woman-hazard
  1039. 401032: woman-pirate
  1040. 4300000: woman-zombie
  1041. 4300002: woman-swimsuit
  1042. 4300004: woman-soldier
  1043. 4300006: woman-skate
  1044. 4300008: woman-prehistoric
  1045. 4300010: woman-police
  1046. 4300012: woman-lumberjack
  1047. 4300014: woman-fire
  1048. 4300016: woman-farm
  1049. 4300018: woman-doctor
  1050. 4300020: woman-cowgirl
  1051. 4300022: woman-construction-worker
  1052. 4300024: woman-clown
  1053. 4300026: woman-chef
  1054. 4300028: woman-casual
  1055. 4300030: woman-business
  1056. 4300032: woman-basketball-player
  1057. 4300034: woman-astronaut
  1058. 4300036: man-zombie
  1059. 4300038: man-wizard
  1060. 4300040: man-swimsuit
  1061. 4300042: man-soldier
  1062. 4300044: man-skeleton
  1063. 4300046: man-skate
  1064. 4300048: man-prehistoric
  1065. 4300050: man-police
  1066. 4300052: man-ninja
  1067. 4300054: man-lumberjack
  1068. 4300056: man-knight
  1069. 4300058: man-fire
  1070. 4300060: man-farm
  1071. 4300062: man-doctor
  1072. 4300064: man-cyclist
  1073. 4300066: man-cowboy
  1074. 4300068: man-construction-worker
  1075. 4300070: man-clown
  1076. 4300072: man-chef
  1077. 4300074: man-casual
  1078. 4300076: man-business
  1079. 4300078: man-basketball-player
  1080. 4300080: man-astronaut
  1081. 4300082: man-hazard
  1082. 4300084: man-diving
  1083. 4300086: woman-cyclist
  1084. 4300088: man-pirate
  1085. 4300090: man-ski
  1086. 4300092: man-boxer
  1087. 4300094: woman-boxer
  1088. 4300096: woman-ninja
  1089. 4300098: woman-hazard
  1090. 4300100: woman-pirate
  1091. 7400000: Take 001
  1092. 9500000: //RootNode
  1093. 13700000: man-astronaut
  1094. 13700002: man-basketball-player
  1095. 13700004: man-business
  1096. 13700006: man-casual
  1097. 13700008: man-chef
  1098. 13700010: man-clown
  1099. 13700012: man-construction-worker
  1100. 13700014: man-cowboy
  1101. 13700016: man-cyclist
  1102. 13700018: man-diving
  1103. 13700020: man-doctor
  1104. 13700022: man-farm
  1105. 13700024: man-fire
  1106. 13700026: man-hazard
  1107. 13700028: man-knight
  1108. 13700030: man-lumberjack
  1109. 13700032: man-ninja
  1110. 13700034: man-police
  1111. 13700036: man-prehistoric
  1112. 13700038: man-skate
  1113. 13700040: man-skeleton
  1114. 13700042: man-soldier
  1115. 13700044: man-swimsuit
  1116. 13700046: man-wizard
  1117. 13700048: man-zombie
  1118. 13700050: woman-astronaut
  1119. 13700052: woman-basketball-player
  1120. 13700054: woman-business
  1121. 13700056: woman-casual
  1122. 13700058: woman-chef
  1123. 13700060: woman-clown
  1124. 13700062: woman-construction-worker
  1125. 13700064: woman-cowgirl
  1126. 13700066: woman-doctor
  1127. 13700068: woman-farm
  1128. 13700070: woman-fire
  1129. 13700072: woman-lumberjack
  1130. 13700074: woman-police
  1131. 13700076: woman-prehistoric
  1132. 13700078: woman-skate
  1133. 13700080: woman-soldier
  1134. 13700082: woman-swimsuit
  1135. 13700084: woman-zombie
  1136. 13700086: man-pirate
  1137. 13700088: man-ski
  1138. 13700090: woman-cyclist
  1139. 13700092: man-boxer
  1140. 13700094: woman-boxer
  1141. 13700096: woman-ninja
  1142. 13700098: woman-hazard
  1143. 13700100: woman-pirate
  1144. externalObjects: {}
  1145. materials:
  1146. importMaterials: 0
  1147. materialName: 0
  1148. materialSearch: 1
  1149. materialLocation: 0
  1150. animations:
  1151. legacyGenerateAnimations: 4
  1152. bakeSimulation: 0
  1153. resampleCurves: 1
  1154. optimizeGameObjects: 0
  1155. motionNodeName:
  1156. rigImportErrors:
  1157. rigImportWarnings: "Avatar Rig Configuration mis-match. Bone length in configuration
  1158. does not match position in animation file:\n\t'Knee_L' : position error = 17.686569
  1159. mm\n\t'Ankle_L' : position error = 21.128174 mm\n"
  1160. animationImportErrors:
  1161. animationImportWarnings:
  1162. animationRetargetingWarnings:
  1163. animationDoRetargetingWarnings: 0
  1164. importAnimatedCustomProperties: 0
  1165. animationCompression: 3
  1166. animationRotationError: 0.5
  1167. animationPositionError: 0.5
  1168. animationScaleError: 0.5
  1169. animationWrapMode: 0
  1170. extraExposedTransformPaths: []
  1171. extraUserProperties: []
  1172. clipAnimations: []
  1173. isReadable: 1
  1174. meshes:
  1175. lODScreenPercentages: []
  1176. globalScale: 1
  1177. meshCompression: 0
  1178. addColliders: 0
  1179. importVisibility: 1
  1180. importBlendShapes: 1
  1181. importCameras: 1
  1182. importLights: 1
  1183. swapUVChannels: 0
  1184. generateSecondaryUV: 0
  1185. useFileUnits: 1
  1186. optimizeMeshForGPU: 1
  1187. keepQuads: 0
  1188. weldVertices: 1
  1189. preserveHierarchy: 0
  1190. indexFormat: 1
  1191. secondaryUVAngleDistortion: 8
  1192. secondaryUVAreaDistortion: 15.000001
  1193. secondaryUVHardAngle: 88
  1194. secondaryUVPackMargin: 4
  1195. useFileScale: 1
  1196. tangentSpace:
  1197. normalSmoothAngle: 60
  1198. normalImportMode: 0
  1199. tangentImportMode: 3
  1200. normalCalculationMode: 4
  1201. importAnimation: 1
  1202. copyAvatar: 0
  1203. humanDescription:
  1204. serializedVersion: 2
  1205. human:
  1206. - boneName: Root_M
  1207. humanName: Hips
  1208. limit:
  1209. min: {x: 0, y: 0, z: 0}
  1210. max: {x: 0, y: 0, z: 0}
  1211. value: {x: 0, y: 0, z: 0}
  1212. length: 0
  1213. modified: 0
  1214. - boneName: Hip_L
  1215. humanName: LeftUpperLeg
  1216. limit:
  1217. min: {x: 0, y: 0, z: 0}
  1218. max: {x: 0, y: 0, z: 0}
  1219. value: {x: 0, y: 0, z: 0}
  1220. length: 0
  1221. modified: 0
  1222. - boneName: Hip_R
  1223. humanName: RightUpperLeg
  1224. limit:
  1225. min: {x: 0, y: 0, z: 0}
  1226. max: {x: 0, y: 0, z: 0}
  1227. value: {x: 0, y: 0, z: 0}
  1228. length: 0
  1229. modified: 0
  1230. - boneName: Knee_L
  1231. humanName: LeftLowerLeg
  1232. limit:
  1233. min: {x: 0, y: 0, z: 0}
  1234. max: {x: 0, y: 0, z: 0}
  1235. value: {x: 0, y: 0, z: 0}
  1236. length: 0
  1237. modified: 0
  1238. - boneName: Knee_R
  1239. humanName: RightLowerLeg
  1240. limit:
  1241. min: {x: 0, y: 0, z: 0}
  1242. max: {x: 0, y: 0, z: 0}
  1243. value: {x: 0, y: 0, z: 0}
  1244. length: 0
  1245. modified: 0
  1246. - boneName: Ankle_L
  1247. humanName: LeftFoot
  1248. limit:
  1249. min: {x: 0, y: 0, z: 0}
  1250. max: {x: 0, y: 0, z: 0}
  1251. value: {x: 0, y: 0, z: 0}
  1252. length: 0
  1253. modified: 0
  1254. - boneName: Ankle_R
  1255. humanName: RightFoot
  1256. limit:
  1257. min: {x: 0, y: 0, z: 0}
  1258. max: {x: 0, y: 0, z: 0}
  1259. value: {x: 0, y: 0, z: 0}
  1260. length: 0
  1261. modified: 0
  1262. - boneName: Spine1_M
  1263. humanName: Spine
  1264. limit:
  1265. min: {x: 0, y: 0, z: 0}
  1266. max: {x: 0, y: 0, z: 0}
  1267. value: {x: 0, y: 0, z: 0}
  1268. length: 0
  1269. modified: 0
  1270. - boneName: Neck_M
  1271. humanName: Neck
  1272. limit:
  1273. min: {x: 0, y: 0, z: 0}
  1274. max: {x: 0, y: 0, z: 0}
  1275. value: {x: 0, y: 0, z: 0}
  1276. length: 0
  1277. modified: 0
  1278. - boneName: Head_M
  1279. humanName: Head
  1280. limit:
  1281. min: {x: 0, y: 0, z: 0}
  1282. max: {x: 0, y: 0, z: 0}
  1283. value: {x: 0, y: 0, z: 0}
  1284. length: 0
  1285. modified: 0
  1286. - boneName: Scapula_L
  1287. humanName: LeftShoulder
  1288. limit:
  1289. min: {x: 0, y: 0, z: 0}
  1290. max: {x: 0, y: 0, z: 0}
  1291. value: {x: 0, y: 0, z: 0}
  1292. length: 0
  1293. modified: 0
  1294. - boneName: Scapula_R
  1295. humanName: RightShoulder
  1296. limit:
  1297. min: {x: 0, y: 0, z: 0}
  1298. max: {x: 0, y: 0, z: 0}
  1299. value: {x: 0, y: 0, z: 0}
  1300. length: 0
  1301. modified: 0
  1302. - boneName: Shoulder_L
  1303. humanName: LeftUpperArm
  1304. limit:
  1305. min: {x: 0, y: 0, z: 0}
  1306. max: {x: 0, y: 0, z: 0}
  1307. value: {x: 0, y: 0, z: 0}
  1308. length: 0
  1309. modified: 0
  1310. - boneName: Shoulder_R
  1311. humanName: RightUpperArm
  1312. limit:
  1313. min: {x: 0, y: 0, z: 0}
  1314. max: {x: 0, y: 0, z: 0}
  1315. value: {x: 0, y: 0, z: 0}
  1316. length: 0
  1317. modified: 0
  1318. - boneName: Elbow_L
  1319. humanName: LeftLowerArm
  1320. limit:
  1321. min: {x: 0, y: 0, z: 0}
  1322. max: {x: 0, y: 0, z: 0}
  1323. value: {x: 0, y: 0, z: 0}
  1324. length: 0
  1325. modified: 0
  1326. - boneName: Elbow_R
  1327. humanName: RightLowerArm
  1328. limit:
  1329. min: {x: 0, y: 0, z: 0}
  1330. max: {x: 0, y: 0, z: 0}
  1331. value: {x: 0, y: 0, z: 0}
  1332. length: 0
  1333. modified: 0
  1334. - boneName: Wrist_L
  1335. humanName: LeftHand
  1336. limit:
  1337. min: {x: 0, y: 0, z: 0}
  1338. max: {x: 0, y: 0, z: 0}
  1339. value: {x: 0, y: 0, z: 0}
  1340. length: 0
  1341. modified: 0
  1342. - boneName: Wrist_R
  1343. humanName: RightHand
  1344. limit:
  1345. min: {x: 0, y: 0, z: 0}
  1346. max: {x: 0, y: 0, z: 0}
  1347. value: {x: 0, y: 0, z: 0}
  1348. length: 0
  1349. modified: 0
  1350. - boneName: Toes_L
  1351. humanName: LeftToes
  1352. limit:
  1353. min: {x: 0, y: 0, z: 0}
  1354. max: {x: 0, y: 0, z: 0}
  1355. value: {x: 0, y: 0, z: 0}
  1356. length: 0
  1357. modified: 0
  1358. - boneName: Toes_R
  1359. humanName: RightToes
  1360. limit:
  1361. min: {x: 0, y: 0, z: 0}
  1362. max: {x: 0, y: 0, z: 0}
  1363. value: {x: 0, y: 0, z: 0}
  1364. length: 0
  1365. modified: 0
  1366. - boneName: Eye_L
  1367. humanName: LeftEye
  1368. limit:
  1369. min: {x: 0, y: 0, z: 0}
  1370. max: {x: 0, y: 0, z: 0}
  1371. value: {x: 0, y: 0, z: 0}
  1372. length: 0
  1373. modified: 0
  1374. - boneName: Eye_R
  1375. humanName: RightEye
  1376. limit:
  1377. min: {x: 0, y: 0, z: 0}
  1378. max: {x: 0, y: 0, z: 0}
  1379. value: {x: 0, y: 0, z: 0}
  1380. length: 0
  1381. modified: 0
  1382. - boneName: Jaw_M
  1383. humanName: Jaw
  1384. limit:
  1385. min: {x: 0, y: 0, z: 0}
  1386. max: {x: 0, y: 0, z: 0}
  1387. value: {x: 0, y: 0, z: 0}
  1388. length: 0
  1389. modified: 0
  1390. - boneName: ThumbFinger1_L
  1391. humanName: Left Thumb Proximal
  1392. limit:
  1393. min: {x: 0, y: 0, z: 0}
  1394. max: {x: 0, y: 0, z: 0}
  1395. value: {x: 0, y: 0, z: 0}
  1396. length: 0
  1397. modified: 0
  1398. - boneName: ThumbFinger2_L
  1399. humanName: Left Thumb Intermediate
  1400. limit:
  1401. min: {x: 0, y: 0, z: 0}
  1402. max: {x: 0, y: 0, z: 0}
  1403. value: {x: 0, y: 0, z: 0}
  1404. length: 0
  1405. modified: 0
  1406. - boneName: IndexFinger1_L
  1407. humanName: Left Index Proximal
  1408. limit:
  1409. min: {x: 0, y: 0, z: 0}
  1410. max: {x: 0, y: 0, z: 0}
  1411. value: {x: 0, y: 0, z: 0}
  1412. length: 0
  1413. modified: 0
  1414. - boneName: IndexFinger2_L
  1415. humanName: Left Index Intermediate
  1416. limit:
  1417. min: {x: 0, y: 0, z: 0}
  1418. max: {x: 0, y: 0, z: 0}
  1419. value: {x: 0, y: 0, z: 0}
  1420. length: 0
  1421. modified: 0
  1422. - boneName: MiddleFinger1_L
  1423. humanName: Left Middle Proximal
  1424. limit:
  1425. min: {x: 0, y: 0, z: 0}
  1426. max: {x: 0, y: 0, z: 0}
  1427. value: {x: 0, y: 0, z: 0}
  1428. length: 0
  1429. modified: 0
  1430. - boneName: MiddleFinger2_L
  1431. humanName: Left Middle Intermediate
  1432. limit:
  1433. min: {x: 0, y: 0, z: 0}
  1434. max: {x: 0, y: 0, z: 0}
  1435. value: {x: 0, y: 0, z: 0}
  1436. length: 0
  1437. modified: 0
  1438. - boneName: RingFinger1_L
  1439. humanName: Left Ring Proximal
  1440. limit:
  1441. min: {x: 0, y: 0, z: 0}
  1442. max: {x: 0, y: 0, z: 0}
  1443. value: {x: 0, y: 0, z: 0}
  1444. length: 0
  1445. modified: 0
  1446. - boneName: RingFinger2_L
  1447. humanName: Left Ring Intermediate
  1448. limit:
  1449. min: {x: 0, y: 0, z: 0}
  1450. max: {x: 0, y: 0, z: 0}
  1451. value: {x: 0, y: 0, z: 0}
  1452. length: 0
  1453. modified: 0
  1454. - boneName: PinkyFinger1_L
  1455. humanName: Left Little Proximal
  1456. limit:
  1457. min: {x: 0, y: 0, z: 0}
  1458. max: {x: 0, y: 0, z: 0}
  1459. value: {x: 0, y: 0, z: 0}
  1460. length: 0
  1461. modified: 0
  1462. - boneName: PinkyFinger2_L
  1463. humanName: Left Little Intermediate
  1464. limit:
  1465. min: {x: 0, y: 0, z: 0}
  1466. max: {x: 0, y: 0, z: 0}
  1467. value: {x: 0, y: 0, z: 0}
  1468. length: 0
  1469. modified: 0
  1470. - boneName: ThumbFinger1_R
  1471. humanName: Right Thumb Proximal
  1472. limit:
  1473. min: {x: 0, y: 0, z: 0}
  1474. max: {x: 0, y: 0, z: 0}
  1475. value: {x: 0, y: 0, z: 0}
  1476. length: 0
  1477. modified: 0
  1478. - boneName: ThumbFinger2_R
  1479. humanName: Right Thumb Intermediate
  1480. limit:
  1481. min: {x: 0, y: 0, z: 0}
  1482. max: {x: 0, y: 0, z: 0}
  1483. value: {x: 0, y: 0, z: 0}
  1484. length: 0
  1485. modified: 0
  1486. - boneName: IndexFinger1_R
  1487. humanName: Right Index Proximal
  1488. limit:
  1489. min: {x: 0, y: 0, z: 0}
  1490. max: {x: 0, y: 0, z: 0}
  1491. value: {x: 0, y: 0, z: 0}
  1492. length: 0
  1493. modified: 0
  1494. - boneName: IndexFinger2_R
  1495. humanName: Right Index Intermediate
  1496. limit:
  1497. min: {x: 0, y: 0, z: 0}
  1498. max: {x: 0, y: 0, z: 0}
  1499. value: {x: 0, y: 0, z: 0}
  1500. length: 0
  1501. modified: 0
  1502. - boneName: MiddleFinger1_R
  1503. humanName: Right Middle Proximal
  1504. limit:
  1505. min: {x: 0, y: 0, z: 0}
  1506. max: {x: 0, y: 0, z: 0}
  1507. value: {x: 0, y: 0, z: 0}
  1508. length: 0
  1509. modified: 0
  1510. - boneName: MiddleFinger2_R
  1511. humanName: Right Middle Intermediate
  1512. limit:
  1513. min: {x: 0, y: 0, z: 0}
  1514. max: {x: 0, y: 0, z: 0}
  1515. value: {x: 0, y: 0, z: 0}
  1516. length: 0
  1517. modified: 0
  1518. - boneName: RingFinger1_R
  1519. humanName: Right Ring Proximal
  1520. limit:
  1521. min: {x: 0, y: 0, z: 0}
  1522. max: {x: 0, y: 0, z: 0}
  1523. value: {x: 0, y: 0, z: 0}
  1524. length: 0
  1525. modified: 0
  1526. - boneName: RingFinger2_R
  1527. humanName: Right Ring Intermediate
  1528. limit:
  1529. min: {x: 0, y: 0, z: 0}
  1530. max: {x: 0, y: 0, z: 0}
  1531. value: {x: 0, y: 0, z: 0}
  1532. length: 0
  1533. modified: 0
  1534. - boneName: PinkyFinger1_R
  1535. humanName: Right Little Proximal
  1536. limit:
  1537. min: {x: 0, y: 0, z: 0}
  1538. max: {x: 0, y: 0, z: 0}
  1539. value: {x: 0, y: 0, z: 0}
  1540. length: 0
  1541. modified: 0
  1542. - boneName: PinkyFinger2_R
  1543. humanName: Right Little Intermediate
  1544. limit:
  1545. min: {x: 0, y: 0, z: 0}
  1546. max: {x: 0, y: 0, z: 0}
  1547. value: {x: 0, y: 0, z: 0}
  1548. length: 0
  1549. modified: 0
  1550. skeleton:
  1551. - name: _MainRig(Clone)
  1552. parentName:
  1553. position: {x: -0, y: 0, z: 0}
  1554. rotation: {x: 0, y: -0, z: -0, w: 1}
  1555. scale: {x: 1, y: 1, z: 1}
  1556. - name: Geometry
  1557. parentName: _MainRig(Clone)
  1558. position: {x: -0, y: 0, z: 0}
  1559. rotation: {x: 0, y: -0, z: -0, w: 1}
  1560. scale: {x: 1, y: 1, z: 1}
  1561. - name: man-astronaut
  1562. parentName: Geometry
  1563. position: {x: -0, y: 0, z: 0}
  1564. rotation: {x: 0, y: -0, z: -0, w: 1}
  1565. scale: {x: 1, y: 1, z: 1}
  1566. - name: man-basketball-player
  1567. parentName: Geometry
  1568. position: {x: -0, y: 0, z: 0}
  1569. rotation: {x: 0, y: -0, z: -0, w: 1}
  1570. scale: {x: 1, y: 1, z: 1}
  1571. - name: man-business
  1572. parentName: Geometry
  1573. position: {x: -0, y: 0, z: 0}
  1574. rotation: {x: 0, y: -0, z: -0, w: 1}
  1575. scale: {x: 1, y: 1, z: 1}
  1576. - name: man-casual
  1577. parentName: Geometry
  1578. position: {x: -0, y: 0, z: 0}
  1579. rotation: {x: 0, y: -0, z: -0, w: 1}
  1580. scale: {x: 1, y: 1, z: 1}
  1581. - name: man-chef
  1582. parentName: Geometry
  1583. position: {x: -0, y: 0, z: 0}
  1584. rotation: {x: 0, y: -0, z: -0, w: 1}
  1585. scale: {x: 1, y: 1, z: 1}
  1586. - name: man-clown
  1587. parentName: Geometry
  1588. position: {x: -0, y: 0, z: 0}
  1589. rotation: {x: 0, y: -0, z: -0, w: 1}
  1590. scale: {x: 1, y: 1, z: 1}
  1591. - name: man-construction-worker
  1592. parentName: Geometry
  1593. position: {x: -0, y: 0, z: 0}
  1594. rotation: {x: 0, y: -0, z: -0, w: 1}
  1595. scale: {x: 1, y: 1, z: 1}
  1596. - name: man-cowboy
  1597. parentName: Geometry
  1598. position: {x: -0, y: 0, z: 0}
  1599. rotation: {x: 0, y: -0, z: -0, w: 1}
  1600. scale: {x: 1, y: 1, z: 1}
  1601. - name: man-cyclist
  1602. parentName: Geometry
  1603. position: {x: -0, y: 0, z: 0}
  1604. rotation: {x: 0, y: -0, z: -0, w: 1}
  1605. scale: {x: 1, y: 1, z: 1}
  1606. - name: man-diving
  1607. parentName: Geometry
  1608. position: {x: -0, y: 0, z: 0}
  1609. rotation: {x: 0, y: -0, z: -0, w: 1}
  1610. scale: {x: 1, y: 1, z: 1}
  1611. - name: man-doctor
  1612. parentName: Geometry
  1613. position: {x: -0, y: 0, z: 0}
  1614. rotation: {x: 0, y: -0, z: -0, w: 1}
  1615. scale: {x: 1, y: 1, z: 1}
  1616. - name: man-farm
  1617. parentName: Geometry
  1618. position: {x: -0, y: 0, z: 0}
  1619. rotation: {x: 0, y: -0, z: -0, w: 1}
  1620. scale: {x: 1, y: 1, z: 1}
  1621. - name: man-fire
  1622. parentName: Geometry
  1623. position: {x: -0, y: 0, z: 0}
  1624. rotation: {x: 0, y: -0, z: -0, w: 1}
  1625. scale: {x: 1, y: 1, z: 1}
  1626. - name: man-hazard
  1627. parentName: Geometry
  1628. position: {x: -0, y: 0, z: 0}
  1629. rotation: {x: 0, y: -0, z: -0, w: 1}
  1630. scale: {x: 1, y: 1, z: 1}
  1631. - name: man-knight
  1632. parentName: Geometry
  1633. position: {x: -0, y: 0, z: 0}
  1634. rotation: {x: 0, y: -0, z: -0, w: 1}
  1635. scale: {x: 1, y: 1, z: 1}
  1636. - name: man-lumberjack
  1637. parentName: Geometry
  1638. position: {x: -0, y: 0, z: 0}
  1639. rotation: {x: 0, y: -0, z: -0, w: 1}
  1640. scale: {x: 1, y: 1, z: 1}
  1641. - name: man-ninja
  1642. parentName: Geometry
  1643. position: {x: -0, y: 0, z: 0}
  1644. rotation: {x: 0, y: -0, z: -0, w: 1}
  1645. scale: {x: 1, y: 1, z: 1}
  1646. - name: man-police
  1647. parentName: Geometry
  1648. position: {x: -0, y: 0, z: 0}
  1649. rotation: {x: 0, y: -0, z: -0, w: 1}
  1650. scale: {x: 1, y: 1, z: 1}
  1651. - name: man-prehistoric
  1652. parentName: Geometry
  1653. position: {x: -0, y: 0, z: 0}
  1654. rotation: {x: 0, y: -0, z: -0, w: 1}
  1655. scale: {x: 1, y: 1, z: 1}
  1656. - name: man-skate
  1657. parentName: Geometry
  1658. position: {x: -0, y: 0, z: 0}
  1659. rotation: {x: 0, y: -0, z: -0, w: 1}
  1660. scale: {x: 1, y: 1, z: 1}
  1661. - name: man-skeleton
  1662. parentName: Geometry
  1663. position: {x: -0, y: 0, z: 0}
  1664. rotation: {x: 0, y: -0, z: -0, w: 1}
  1665. scale: {x: 1, y: 1, z: 1}
  1666. - name: man-soldier
  1667. parentName: Geometry
  1668. position: {x: -0, y: 0, z: 0}
  1669. rotation: {x: 0, y: -0, z: -0, w: 1}
  1670. scale: {x: 1, y: 1, z: 1}
  1671. - name: man-swimsuit
  1672. parentName: Geometry
  1673. position: {x: -0, y: 0, z: 0}
  1674. rotation: {x: 0, y: -0, z: -0, w: 1}
  1675. scale: {x: 1, y: 1, z: 1}
  1676. - name: man-wizard
  1677. parentName: Geometry
  1678. position: {x: -0, y: 0, z: 0}
  1679. rotation: {x: 0, y: -0, z: -0, w: 1}
  1680. scale: {x: 1, y: 1, z: 1}
  1681. - name: man-zombie
  1682. parentName: Geometry
  1683. position: {x: -0, y: 0, z: 0}
  1684. rotation: {x: 0, y: -0, z: -0, w: 1}
  1685. scale: {x: 1, y: 1, z: 1}
  1686. - name: woman-astronaut
  1687. parentName: Geometry
  1688. position: {x: -0, y: 0, z: 0}
  1689. rotation: {x: 0, y: -0, z: -0, w: 1}
  1690. scale: {x: 1, y: 1, z: 1}
  1691. - name: woman-basketball-player
  1692. parentName: Geometry
  1693. position: {x: -0, y: 0, z: 0}
  1694. rotation: {x: 0, y: -0, z: -0, w: 1}
  1695. scale: {x: 1, y: 1, z: 1}
  1696. - name: woman-business
  1697. parentName: Geometry
  1698. position: {x: -0, y: 0, z: 0}
  1699. rotation: {x: 0, y: -0, z: -0, w: 1}
  1700. scale: {x: 1, y: 1, z: 1}
  1701. - name: woman-casual
  1702. parentName: Geometry
  1703. position: {x: -0, y: 0, z: 0}
  1704. rotation: {x: 0, y: -0, z: -0, w: 1}
  1705. scale: {x: 1, y: 1, z: 1}
  1706. - name: woman-chef
  1707. parentName: Geometry
  1708. position: {x: -0, y: 0, z: 0}
  1709. rotation: {x: 0, y: -0, z: -0, w: 1}
  1710. scale: {x: 1, y: 1, z: 1}
  1711. - name: woman-clown
  1712. parentName: Geometry
  1713. position: {x: -0, y: 0, z: 0}
  1714. rotation: {x: 0, y: -0, z: -0, w: 1}
  1715. scale: {x: 1, y: 1, z: 1}
  1716. - name: woman-construction-worker
  1717. parentName: Geometry
  1718. position: {x: -0, y: 0, z: 0}
  1719. rotation: {x: 0, y: -0, z: -0, w: 1}
  1720. scale: {x: 1, y: 1, z: 1}
  1721. - name: woman-cowgirl
  1722. parentName: Geometry
  1723. position: {x: -0, y: 0, z: 0}
  1724. rotation: {x: 0, y: -0, z: -0, w: 1}
  1725. scale: {x: 1, y: 1, z: 1}
  1726. - name: woman-doctor
  1727. parentName: Geometry
  1728. position: {x: -0, y: 0, z: 0}
  1729. rotation: {x: 0, y: -0, z: -0, w: 1}
  1730. scale: {x: 1, y: 1, z: 1}
  1731. - name: woman-farm
  1732. parentName: Geometry
  1733. position: {x: -0, y: 0, z: 0}
  1734. rotation: {x: 0, y: -0, z: -0, w: 1}
  1735. scale: {x: 1, y: 1, z: 1}
  1736. - name: woman-fire
  1737. parentName: Geometry
  1738. position: {x: -0, y: 0, z: 0}
  1739. rotation: {x: 0, y: -0, z: -0, w: 1}
  1740. scale: {x: 1, y: 1, z: 1}
  1741. - name: woman-lumberjack
  1742. parentName: Geometry
  1743. position: {x: -0, y: 0, z: 0}
  1744. rotation: {x: 0, y: -0, z: -0, w: 1}
  1745. scale: {x: 1, y: 1, z: 1}
  1746. - name: woman-police
  1747. parentName: Geometry
  1748. position: {x: -0, y: 0, z: 0}
  1749. rotation: {x: 0, y: -0, z: -0, w: 1}
  1750. scale: {x: 1, y: 1, z: 1}
  1751. - name: woman-prehistoric
  1752. parentName: Geometry
  1753. position: {x: -0, y: 0, z: 0}
  1754. rotation: {x: 0, y: -0, z: -0, w: 1}
  1755. scale: {x: 1, y: 1, z: 1}
  1756. - name: woman-skate
  1757. parentName: Geometry
  1758. position: {x: -0, y: 0, z: 0}
  1759. rotation: {x: 0, y: -0, z: -0, w: 1}
  1760. scale: {x: 1, y: 1, z: 1}
  1761. - name: woman-soldier
  1762. parentName: Geometry
  1763. position: {x: -0, y: 0, z: 0}
  1764. rotation: {x: 0, y: -0, z: -0, w: 1}
  1765. scale: {x: 1, y: 1, z: 1}
  1766. - name: woman-swimsuit
  1767. parentName: Geometry
  1768. position: {x: -0, y: 0, z: 0}
  1769. rotation: {x: 0, y: -0, z: -0, w: 1}
  1770. scale: {x: 1, y: 1, z: 1}
  1771. - name: woman-zombie
  1772. parentName: Geometry
  1773. position: {x: -0, y: 0, z: 0}
  1774. rotation: {x: 0, y: -0, z: -0, w: 1}
  1775. scale: {x: 1, y: 1, z: 1}
  1776. - name: Main
  1777. parentName: _MainRig(Clone)
  1778. position: {x: -0, y: 0, z: 0}
  1779. rotation: {x: 0, y: -0, z: -0, w: 1}
  1780. scale: {x: 1, y: 1, z: 1}
  1781. - name: DeformationSystem
  1782. parentName: Main
  1783. position: {x: -0, y: 0, z: 0}
  1784. rotation: {x: 0, y: -0, z: -0, w: 1}
  1785. scale: {x: 1, y: 1, z: 1}
  1786. - name: Root_M
  1787. parentName: DeformationSystem
  1788. position: {x: -1.9709482e-17, y: 0.982851, z: 0.015691962}
  1789. rotation: {x: 0.49605373, y: -0.5039154, z: -0.49605373, w: 0.50391537}
  1790. scale: {x: 1.0000207, y: 1.0000207, z: 1.0000005}
  1791. - name: Hip_R
  1792. parentName: Root_M
  1793. position: {x: 0.020835532, y: -0.0056810114, z: -0.08196866}
  1794. rotation: {x: -0.03360335, y: 0.99930567, z: 0.0009250938, w: -0.01606883}
  1795. scale: {x: 1.00004, y: 1.0000297, z: 1.000056}
  1796. - name: Knee_R
  1797. parentName: Hip_R
  1798. position: {x: -0.484527, y: -7.105427e-16, z: 4.796163e-16}
  1799. rotation: {x: 0.0000000136787985, y: -0.00000001117587, z: 0.14281005, w: 0.98975015}
  1800. scale: {x: 0.99999017, y: 1.0000024, z: 1.0000027}
  1801. - name: Ankle_R
  1802. parentName: Knee_R
  1803. position: {x: -0.35380888, y: 3.1974422e-16, z: 1.0658141e-16}
  1804. rotation: {x: -0.0109132035, y: -0.015062803, z: -0.101782195, w: 0.99463284}
  1805. scale: {x: 0.99997765, y: 1.0000409, z: 1.0000131}
  1806. - name: Toes_R
  1807. parentName: Ankle_R
  1808. position: {x: -0.11049568, y: 0.08593043, z: 5.2224888e-15}
  1809. rotation: {x: 0.0074460786, y: 0.0058315606, z: -0.61656046, w: 0.7872508}
  1810. scale: {x: 1.0000037, y: 1.0000381, z: 1.0000207}
  1811. - name: ToesEnd_R
  1812. parentName: Toes_R
  1813. position: {x: -0.093909815, y: -3.4816595e-14, z: 0.00000016266274}
  1814. rotation: {x: -0.00000010756773, y: -0.000000008381901, z: 0.000000029081995,
  1815. w: 1}
  1816. scale: {x: 1.0000286, y: 1.0000058, z: 1.0000218}
  1817. - name: Spine1_M
  1818. parentName: Root_M
  1819. position: {x: -0.17391375, y: -3.5527136e-17, z: -1.2639365e-16}
  1820. rotation: {x: -0.000000029802322, y: 0.000000029802322, z: -0.032334983, w: 0.99947715}
  1821. scale: {x: 1.0000192, y: 1.0000229, z: 1.0000205}
  1822. - name: Chest_M
  1823. parentName: Spine1_M
  1824. position: {x: -0.25686407, y: -4.4408918e-17, z: -1.4780501e-16}
  1825. rotation: {x: -0.000000003320256, y: -0.0000000031760443, z: 0.10885459, w: 0.9940577}
  1826. scale: {x: 0.99999666, y: 0.99999744, z: 1.0000052}
  1827. - name: Scapula_R
  1828. parentName: Chest_M
  1829. position: {x: -0.0037425128, y: -0.0078088413, z: -0.062583625}
  1830. rotation: {x: 0.17237413, y: 0.68582624, z: -0.054422915, w: -0.7049595}
  1831. scale: {x: 1.0000407, y: 1.0000308, z: 1.0000151}
  1832. - name: Shoulder_R
  1833. parentName: Scapula_R
  1834. position: {x: -0.104209974, y: -9.751311e-14, z: -5.968559e-15}
  1835. rotation: {x: 0.00004273651, y: 0.0001007318, z: -0.20158988, w: 0.97947}
  1836. scale: {x: 1.000127, y: 0.9999244, z: 1.0000187}
  1837. - name: Elbow_R
  1838. parentName: Shoulder_R
  1839. position: {x: -0.29240897, y: -2.7089442e-16, z: 1.0516033e-14}
  1840. rotation: {x: -0.000004324889, y: -0.000028893766, z: 0.007358887, w: 0.99997294}
  1841. scale: {x: 1.0001199, y: 0.9999675, z: 1.0000345}
  1842. - name: Wrist_R
  1843. parentName: Elbow_R
  1844. position: {x: -0.24820344, y: -7.105427e-17, z: 4.1495693e-14}
  1845. rotation: {x: 0.009792571, y: -0.033132862, z: 0.060677208, w: 0.9975593}
  1846. scale: {x: 0.99982285, y: 1.000216, z: 1.0000132}
  1847. - name: MiddleFinger1_R
  1848. parentName: Wrist_R
  1849. position: {x: -0.1490765, y: -2.1316282e-16, z: -8.5265126e-16}
  1850. rotation: {x: 0.00041803505, y: -0.0767387, z: 0.025053125, w: 0.9967364}
  1851. scale: {x: 1.000102, y: 1.00006, z: 0.9999176}
  1852. - name: MiddleFinger2_R
  1853. parentName: MiddleFinger1_R
  1854. position: {x: -0.038014963, y: -4.0301094e-16, z: -4.263256e-15}
  1855. rotation: {x: -0.00052042154, y: -0.036770467, z: 0.0036767481, w: 0.9993169}
  1856. scale: {x: 1.0002532, y: 1.0000292, z: 0.9997698}
  1857. - name: MiddleFinger3_R
  1858. parentName: MiddleFinger2_R
  1859. position: {x: -0.04345142, y: -1.9595436e-16, z: -4.5474734e-15}
  1860. rotation: {x: -0, y: -0, z: -3.6379785e-11, w: 1}
  1861. scale: {x: 1.0000463, y: 1.0000193, z: 1.0000337}
  1862. - name: ThumbFinger1_R
  1863. parentName: Wrist_R
  1864. position: {x: -0.09100499, y: 0.029188778, z: -0.0027256021}
  1865. rotation: {x: -0.44792166, y: 0.1007683, z: -0.34660956, w: 0.8179693}
  1866. scale: {x: 1.0004003, y: 0.9997729, z: 0.99994206}
  1867. - name: ThumbFinger2_R
  1868. parentName: ThumbFinger1_R
  1869. position: {x: -0.043006223, y: 5.684342e-16, z: 1.4210854e-16}
  1870. rotation: {x: 0.03045199, y: -0.028517721, z: 0.017871147, w: 0.99896955}
  1871. scale: {x: 0.9997778, y: 1.0002372, z: 1.0000603}
  1872. - name: ThumbFinger3_R
  1873. parentName: ThumbFinger2_R
  1874. position: {x: -0.048221167, y: -2.842171e-16, z: -7.105427e-16}
  1875. rotation: {x: -0, y: -0, z: -0.0000000018626449, w: 1}
  1876. scale: {x: 0.999992, y: 1.0000013, z: 1.0000051}
  1877. - name: IndexFinger1_R
  1878. parentName: Wrist_R
  1879. position: {x: -0.13667494, y: 0.020963771, z: -0.0006815952}
  1880. rotation: {x: -0.028846756, y: -0.07610667, z: -0.024493089, w: 0.9963813}
  1881. scale: {x: 1.000239, y: 0.9999874, z: 0.9999289}
  1882. - name: IndexFinger2_R
  1883. parentName: IndexFinger1_R
  1884. position: {x: -0.045857206, y: -3.375078e-16, z: -4.5474734e-15}
  1885. rotation: {x: -0.008874891, y: -0.03911826, z: 0.009040503, w: 0.99915427}
  1886. scale: {x: 1.00018, y: 1.0000712, z: 0.9999172}
  1887. - name: IndexFinger3_R
  1888. parentName: IndexFinger2_R
  1889. position: {x: -0.03863413, y: -3.5527136e-17, z: -1.4210854e-15}
  1890. rotation: {x: -0, y: -0, z: -6.4028405e-10, w: 1}
  1891. scale: {x: 1.0000433, y: 1.0000278, z: 1.0000311}
  1892. - name: RingFinger1_R
  1893. parentName: Wrist_R
  1894. position: {x: -0.13822326, y: -0.026915792, z: 0.002585328}
  1895. rotation: {x: 0.012621012, y: -0.06625157, z: 0.042745553, w: 0.99680704}
  1896. scale: {x: 1.0000592, y: 1.0001233, z: 0.99990094}
  1897. - name: RingFinger2_R
  1898. parentName: RingFinger1_R
  1899. position: {x: -0.046262268, y: 2.6645352e-17, z: -6.536993e-15}
  1900. rotation: {x: -0.0014234749, y: -0.037498794, z: 0.00484413, w: 0.99928397}
  1901. scale: {x: 1.0002337, y: 1.0000125, z: 0.9997712}
  1902. - name: RingFinger3_R
  1903. parentName: RingFinger2_R
  1904. position: {x: -0.036507413, y: 5.8619773e-16, z: 2.2737367e-15}
  1905. rotation: {x: -0, y: -0, z: 1.4551912e-10, w: 1}
  1906. scale: {x: 1.0000039, y: 1.0000037, z: 1.0000029}
  1907. - name: PinkyFinger1_R
  1908. parentName: Wrist_R
  1909. position: {x: -0.12759885, y: -0.0481367, z: 0.0068015186}
  1910. rotation: {x: 0.037714735, y: -0.06067043, z: 0.043537617, w: 0.9964945}
  1911. scale: {x: 1.0000817, y: 1.0001742, z: 0.9998579}
  1912. - name: PinkyFinger2_R
  1913. parentName: PinkyFinger1_R
  1914. position: {x: -0.047503743, y: -1.4210854e-16, z: 2.842171e-16}
  1915. rotation: {x: 0.0072689843, y: -0.022407588, z: -0.0345411, w: 0.9991256}
  1916. scale: {x: 1.0000829, y: 1.0000025, z: 0.9999429}
  1917. - name: PinkyFinger3_R
  1918. parentName: PinkyFinger2_R
  1919. position: {x: -0.030156612, y: -1.9539925e-16, z: -5.684342e-16}
  1920. rotation: {x: -0, y: -0.0000000018626449, z: 5.8207655e-10, w: 1}
  1921. scale: {x: 1.0000105, y: 1.0000156, z: 1.0000222}
  1922. - name: Neck_M
  1923. parentName: Chest_M
  1924. position: {x: -0.1372251, y: -1.0658141e-16, z: 6.0573433e-16}
  1925. rotation: {x: 0.0000000025280578, y: 0.000000002353497, z: -0.08188238, w: 0.99664205}
  1926. scale: {x: 1.0000423, y: 1.0000272, z: 1.0000353}
  1927. - name: Head_M
  1928. parentName: Neck_M
  1929. position: {x: -0.14186166, y: -6.883383e-17, z: -6.207701e-18}
  1930. rotation: {x: 7.749889e-11, y: 7.8525624e-11, z: -0.002617739, w: 0.9999966}
  1931. scale: {x: 1.0000223, y: 1.0000203, z: 1.0000248}
  1932. - name: LowerNose_R
  1933. parentName: Head_M
  1934. position: {x: 0.07170908, y: 0.12503974, z: -0.020640444}
  1935. rotation: {x: -0, y: -0, z: -6.085648e-21, w: 1}
  1936. scale: {x: 1.0000196, y: 1.0000216, z: 1.00002}
  1937. - name: LowerNose_L
  1938. parentName: Head_M
  1939. position: {x: 0.07170908, y: 0.12503974, z: 0.020640444}
  1940. rotation: {x: -0.000000014900702, y: -1.1714778e-10, z: 1, w: -0.00000004470348}
  1941. scale: {x: 1.0000196, y: 1.0000216, z: 1.00002}
  1942. - name: UpperNose_L
  1943. parentName: Head_M
  1944. position: {x: 0.03668772, y: 0.113807015, z: 0.015082455}
  1945. rotation: {x: -0.000000014900702, y: -1.1714778e-10, z: 1, w: -0.00000004470348}
  1946. scale: {x: 1.0000196, y: 1.0000216, z: 1.00002}
  1947. - name: Eye_R
  1948. parentName: Head_M
  1949. position: {x: 0.027244024, y: 0.10484986, z: -0.03423012}
  1950. rotation: {x: -0.000000017457253, y: -1.3724813e-10, z: -0.70710677, w: 0.7071068}
  1951. scale: {x: 1.0000377, y: 1.0000663, z: 1.0000359}
  1952. - name: EyeEnd_R
  1953. parentName: Eye_R
  1954. position: {x: -0.017087016, y: -3.126388e-15, z: 1.5543122e-16}
  1955. rotation: {x: 8.881782e-16, y: 8.881782e-16, z: -2.3959752e-18, w: 1}
  1956. scale: {x: 1.0000228, y: 1.0000451, z: 1.0000255}
  1957. - name: Jaw_M
  1958. parentName: Head_M
  1959. position: {x: 0.09673202, y: 0.03784826, z: 1.3945314e-17}
  1960. rotation: {x: -0.000000018987322, y: -8.7896074e-10, z: 0.8309021, w: -0.5564188}
  1961. scale: {x: 1.0000844, y: 1.0001352, z: 1.0000609}
  1962. - name: JawEnd_M
  1963. parentName: Jaw_M
  1964. position: {x: -0.09521113, y: 3.9790393e-15, z: -1.0804953e-16}
  1965. rotation: {x: 8.881781e-16, y: 1.8318674e-15, z: -1.6689108e-17, w: 1}
  1966. scale: {x: 1.0000331, y: 1.000053, z: 1.0000355}
  1967. - name: OuterMouth_R
  1968. parentName: Jaw_M
  1969. position: {x: -0.0764952, y: -0.029030904, z: -0.032475587}
  1970. rotation: {x: 0.000000018987318, y: 8.789606e-10, z: -0.83090204, w: -0.5564187}
  1971. scale: {x: 0.9999427, y: 1.0000575, z: 1.0000151}
  1972. - name: LowerCheek_R
  1973. parentName: Jaw_M
  1974. position: {x: -0.046832543, y: -0.019741269, z: -0.060822643}
  1975. rotation: {x: 0.000000018987318, y: 8.789606e-10, z: -0.83090204, w: -0.5564187}
  1976. scale: {x: 0.9999427, y: 1.0000575, z: 1.0000151}
  1977. - name: BottomLip_M
  1978. parentName: Jaw_M
  1979. position: {x: -0.09364047, y: -0.031114377, z: -6.8012807e-16}
  1980. rotation: {x: 0.000000018987318, y: 8.789606e-10, z: -0.83090204, w: -0.5564187}
  1981. scale: {x: 0.9999427, y: 1.0000575, z: 1.0000151}
  1982. - name: OuterMouth_L
  1983. parentName: Jaw_M
  1984. position: {x: -0.0764952, y: -0.029030904, z: 0.032475587}
  1985. rotation: {x: 0.000000009072652, y: -0.0000000065411134, z: -0.5564187, w: 0.8309021}
  1986. scale: {x: 0.9999522, y: 1.0000683, z: 1.0000201}
  1987. - name: LowerCheek_L
  1988. parentName: Jaw_M
  1989. position: {x: -0.046832543, y: -0.019741269, z: 0.060822643}
  1990. rotation: {x: 0.000000009072652, y: -0.0000000065411134, z: -0.5564187, w: 0.8309021}
  1991. scale: {x: 0.9999522, y: 1.0000683, z: 1.0000201}
  1992. - name: HeadEnd_M
  1993. parentName: Head_M
  1994. position: {x: -0.09642659, y: 6.0756953e-16, z: -1.606746e-16}
  1995. rotation: {x: -0, y: -0, z: -6.085648e-21, w: 1}
  1996. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  1997. - name: Cheek_R
  1998. parentName: Head_M
  1999. position: {x: 0.06519327, y: 0.09166024, z: -0.065865785}
  2000. rotation: {x: -0, y: -0, z: -6.085648e-21, w: 1}
  2001. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2002. - name: UpperNose_R
  2003. parentName: Head_M
  2004. position: {x: 0.03668772, y: 0.113807015, z: -0.015082455}
  2005. rotation: {x: -0, y: -0, z: -6.085648e-21, w: 1}
  2006. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2007. - name: EyebrowCenter_M
  2008. parentName: Head_M
  2009. position: {x: -0.004035544, y: 0.13062547, z: -7.492303e-16}
  2010. rotation: {x: -0, y: -0, z: -6.085648e-21, w: 1}
  2011. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2012. - name: UpperLip_M
  2013. parentName: Head_M
  2014. position: {x: 0.10034327, y: 0.13663757, z: -6.691345e-16}
  2015. rotation: {x: -0, y: -0, z: -6.085648e-21, w: 1}
  2016. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2017. - name: LowerNoseMid_M
  2018. parentName: Head_M
  2019. position: {x: 0.07873514, y: 0.1403271, z: -6.896809e-16}
  2020. rotation: {x: -0, y: -0, z: -6.085648e-21, w: 1}
  2021. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2022. - name: EyebrowInner_R
  2023. parentName: Head_M
  2024. position: {x: 0.0017180871, y: 0.13114001, z: -0.019924846}
  2025. rotation: {x: -0, y: -0, z: -6.085648e-21, w: 1}
  2026. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2027. - name: EyebrowMid_R
  2028. parentName: Head_M
  2029. position: {x: 0.0019047022, y: 0.11870839, z: -0.038879696}
  2030. rotation: {x: -0, y: -0, z: -6.085648e-21, w: 1}
  2031. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2032. - name: EyebrowOuter_R
  2033. parentName: Head_M
  2034. position: {x: 0.0021386193, y: 0.103120714, z: -0.06264672}
  2035. rotation: {x: -0, y: -0, z: -6.085648e-21, w: 1}
  2036. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2037. - name: Eye_L
  2038. parentName: Head_M
  2039. position: {x: 0.027244024, y: 0.10484986, z: 0.03423012}
  2040. rotation: {x: -0.000000017457253, y: -1.3724813e-10, z: -0.70710677, w: 0.7071068}
  2041. scale: {x: 1.0000377, y: 1.0000663, z: 1.0000359}
  2042. - name: EyeEnd_L
  2043. parentName: Eye_L
  2044. position: {x: -0.017087016, y: -3.410605e-15, z: -2.1316282e-16}
  2045. rotation: {x: 8.881782e-16, y: 8.881782e-16, z: -2.3959752e-18, w: 1}
  2046. scale: {x: 1.0000228, y: 1.0000451, z: 1.0000255}
  2047. - name: Cheek_L
  2048. parentName: Head_M
  2049. position: {x: 0.06519327, y: 0.09166024, z: 0.065865785}
  2050. rotation: {x: -0.000000014900702, y: -1.1714778e-10, z: 1, w: -0.00000004470348}
  2051. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2052. - name: EyebrowInner_L
  2053. parentName: Head_M
  2054. position: {x: 0.0017180871, y: 0.13114001, z: 0.019924846}
  2055. rotation: {x: -0.000000014900702, y: -1.1714778e-10, z: 1, w: -0.00000004470348}
  2056. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2057. - name: EyebrowMid_L
  2058. parentName: Head_M
  2059. position: {x: 0.0019047022, y: 0.11870839, z: 0.038879696}
  2060. rotation: {x: -0.000000014900702, y: -1.1714778e-10, z: 1, w: -0.00000004470348}
  2061. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2062. - name: EyebrowOuter_L
  2063. parentName: Head_M
  2064. position: {x: 0.0021386193, y: 0.103120714, z: 0.06264672}
  2065. rotation: {x: -0.000000014900702, y: -1.1714778e-10, z: 1, w: -0.00000004470348}
  2066. scale: {x: 1.00002, y: 1.0000222, z: 1.0000205}
  2067. - name: Scapula_L
  2068. parentName: Chest_M
  2069. position: {x: -0.0037425128, y: -0.0078088413, z: 0.062583625}
  2070. rotation: {x: -0.68582594, y: 0.17237471, z: -0.7049594, w: 0.05442362}
  2071. scale: {x: 1.0000502, y: 1.000014, z: 1.0000341}
  2072. - name: Shoulder_L
  2073. parentName: Scapula_L
  2074. position: {x: 0.104209974, y: 3.4129142e-13, z: 5.4001247e-15}
  2075. rotation: {x: -0.000042699263, y: -0.000100796075, z: 0.2015952, w: -0.9794689}
  2076. scale: {x: 1.0001616, y: 0.9999285, z: 1.000028}
  2077. - name: Elbow_L
  2078. parentName: Shoulder_L
  2079. position: {x: 0.29240897, y: 6.883383e-17, z: -9.379164e-15}
  2080. rotation: {x: -0.000004375964, y: -0.000029106439, z: 0.007353391, w: 0.999973}
  2081. scale: {x: 1.0002214, y: 0.9998466, z: 1.0000246}
  2082. - name: Wrist_L
  2083. parentName: Elbow_L
  2084. position: {x: 0.24820344, y: -3.907985e-16, z: -4.0643043e-14}
  2085. rotation: {x: 0.009792592, y: -0.033132914, z: 0.06067723, w: 0.99755937}
  2086. scale: {x: 0.9997566, y: 1.0003573, z: 1.0000397}
  2087. - name: MiddleFinger1_L
  2088. parentName: Wrist_L
  2089. position: {x: 0.1490765, y: 4.4408918e-17, z: 2.8421708e-15}
  2090. rotation: {x: 0.00041914065, y: -0.07674073, z: 0.025054434, w: 0.99673617}
  2091. scale: {x: 1.0001541, y: 1.0000604, z: 0.9998623}
  2092. - name: MiddleFinger2_L
  2093. parentName: MiddleFinger1_L
  2094. position: {x: 0.038014963, y: 4.7122026e-16, z: -8.5265126e-16}
  2095. rotation: {x: 0.00051826733, y: 0.03678502, z: -0.0036756403, w: -0.99931633}
  2096. scale: {x: 1.0003685, y: 1.0000297, z: 0.9996749}
  2097. - name: MiddleFinger3_L
  2098. parentName: MiddleFinger2_L
  2099. position: {x: 0.04345142, y: 1.1490808e-16, z: 1.4210854e-15}
  2100. rotation: {x: -1.1641528e-10, y: -0, z: -5.3114474e-10, w: 1}
  2101. scale: {x: 1.0000566, y: 1.0000306, z: 1.0000211}
  2102. - name: ThumbFinger1_L
  2103. parentName: Wrist_L
  2104. position: {x: 0.09100499, y: -0.029188778, z: 0.0027256021}
  2105. rotation: {x: 0.44792044, y: -0.10077203, z: 0.34662342, w: -0.8179636}
  2106. scale: {x: 1.0004636, y: 0.99962795, z: 0.9999648}
  2107. - name: ThumbFinger2_L
  2108. parentName: ThumbFinger1_L
  2109. position: {x: 0.043006223, y: -1.1368684e-15, z: -1.2789769e-15}
  2110. rotation: {x: 0.030451946, y: -0.028534517, z: 0.017896395, w: 0.9989686}
  2111. scale: {x: 0.9995327, y: 1.0003465, z: 1.0001758}
  2112. - name: ThumbFinger3_L
  2113. parentName: ThumbFinger2_L
  2114. position: {x: 0.048221167, y: -1.1368684e-15, z: -1.4210854e-16}
  2115. rotation: {x: 0.0000000018626449, y: -0, z: -0.0000000027939675, w: 1}
  2116. scale: {x: 0.9999925, y: 0.99999857, z: 0.99998975}
  2117. - name: IndexFinger1_L
  2118. parentName: Wrist_L
  2119. position: {x: 0.13667494, y: -0.020963771, z: 0.0006815952}
  2120. rotation: {x: 0.02884522, y: 0.07611139, z: 0.024495644, w: -0.996381}
  2121. scale: {x: 1.0002651, y: 0.9999678, z: 0.9998573}
  2122. - name: IndexFinger2_L
  2123. parentName: IndexFinger1_L
  2124. position: {x: 0.045857206, y: 2.842171e-16, z: 1.9895197e-15}
  2125. rotation: {x: -0.008874445, y: -0.03912576, z: 0.009041655, w: 0.99915403}
  2126. scale: {x: 1.0001822, y: 1.0000446, z: 0.99984056}
  2127. - name: IndexFinger3_L
  2128. parentName: IndexFinger2_L
  2129. position: {x: 0.03863413, y: -3.5527136e-17, z: -1.7053025e-15}
  2130. rotation: {x: -0, y: -0, z: 8.731147e-10, w: 1}
  2131. scale: {x: 1.0000306, y: 1.0000179, z: 1.0000132}
  2132. - name: RingFinger1_L
  2133. parentName: Wrist_L
  2134. position: {x: 0.13822326, y: 0.026915792, z: -0.002585328}
  2135. rotation: {x: 0.012622464, y: -0.06625299, z: 0.042747688, w: 0.99680686}
  2136. scale: {x: 1.0000951, y: 1.0000942, z: 0.9998337}
  2137. - name: RingFinger2_L
  2138. parentName: RingFinger1_L
  2139. position: {x: 0.046262268, y: 3.1086244e-16, z: 5.1159075e-15}
  2140. rotation: {x: -0.0014213952, y: -0.037513383, z: 0.004845721, w: 0.99928343}
  2141. scale: {x: 1.0003426, y: 1.0000137, z: 0.9996918}
  2142. - name: RingFinger3_L
  2143. parentName: RingFinger2_L
  2144. position: {x: 0.036507413, y: -9.414691e-16, z: 5.684342e-16}
  2145. rotation: {x: -0, y: -0, z: 3.2014205e-10, w: 1}
  2146. scale: {x: 1.0000062, y: 1.0000038, z: 1.0000058}
  2147. - name: PinkyFinger1_L
  2148. parentName: Wrist_L
  2149. position: {x: 0.12759885, y: 0.0481367, z: -0.0068015186}
  2150. rotation: {x: 0.03771779, y: -0.060671754, z: 0.043540742, w: 0.9964942}
  2151. scale: {x: 1.0001445, y: 1.0001651, z: 0.9997734}
  2152. - name: PinkyFinger2_L
  2153. parentName: PinkyFinger1_L
  2154. position: {x: 0.047503743, y: 3.5527136e-17, z: -2.842171e-16}
  2155. rotation: {x: 0.007269157, y: -0.022411605, z: -0.03454725, w: 0.99912536}
  2156. scale: {x: 1.0000768, y: 1.0000379, z: 0.99992436}
  2157. - name: PinkyFinger3_L
  2158. parentName: PinkyFinger2_L
  2159. position: {x: 0.030156612, y: -1.2434498e-16, z: -3.410605e-15}
  2160. rotation: {x: -0, y: -0.0000000018626449, z: 7.858033e-10, w: 1}
  2161. scale: {x: 1.0000217, y: 1.0000198, z: 1.0000149}
  2162. - name: Hip_L
  2163. parentName: Root_M
  2164. position: {x: 0.020835532, y: -0.0056810114, z: 0.08196866}
  2165. rotation: {x: 0.99930567, y: 0.033603296, z: 0.016068727, w: 0.0009251386}
  2166. scale: {x: 1.0000033, y: 1.0000216, z: 1.0000324}
  2167. - name: Knee_L
  2168. parentName: Hip_L
  2169. position: {x: 0.484527, y: 5.684342e-16, z: -2.664535e-16}
  2170. rotation: {x: 0.000000017345881, y: -0.000000037787682, z: -0.14280997, w: -0.9897501}
  2171. scale: {x: 1.0000173, y: 1.000019, z: 1.0000103}
  2172. - name: Ankle_L
  2173. parentName: Knee_L
  2174. position: {x: 0.35380888, y: -8.704148e-16, z: -1.4210854e-16}
  2175. rotation: {x: 0.010913162, y: 0.0150628, z: 0.1017822, w: -0.9946328}
  2176. scale: {x: 1.0000355, y: 0.99995387, z: 1.0000067}
  2177. - name: Toes_L
  2178. parentName: Ankle_L
  2179. position: {x: 0.11049568, y: -0.08593043, z: -5.435652e-15}
  2180. rotation: {x: 0.0074467612, y: 0.005832083, z: -0.61656046, w: 0.78725076}
  2181. scale: {x: 1.0000466, y: 1.0000355, z: 1.0000229}
  2182. - name: ToesEnd_L
  2183. parentName: Toes_L
  2184. position: {x: 0.093909815, y: -5.1514347e-16, z: 6.278986e-10}
  2185. rotation: {x: 0.00000011781229, y: 0.0000009201466, z: 0.000000016796546, w: 1}
  2186. scale: {x: 1.0000116, y: 1.0000327, z: 1.0000023}
  2187. armTwist: 0.5
  2188. foreArmTwist: 0.5
  2189. upperLegTwist: 0.5
  2190. legTwist: 0.5
  2191. armStretch: 0.05
  2192. legStretch: 0.05
  2193. feetSpacing: 0
  2194. rootMotionBoneName:
  2195. rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1}
  2196. hasTranslationDoF: 0
  2197. hasExtraRoot: 0
  2198. skeletonHasParents: 1
  2199. lastHumanDescriptionAvatarSource: {instanceID: 0}
  2200. animationType: 3
  2201. humanoidOversampling: 1
  2202. additionalBone: 0
  2203. userData:
  2204. assetBundleName:
  2205. assetBundleVariant: