123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037 |
- fileFormatVersion: 2
- guid: d556ab52e17604958b19876c5f242758
- timeCreated: 1434722105
- licenseType: Store
- ModelImporter:
- serializedVersion: 18
- fileIDToRecycleName:
- 100000: Chest
- 100002: chestProxy_geo
- 100004: Head
- 100006: headProxy_geo
- 100008: HeadTop_End
- 100010: Hips
- 100012: //RootNode
- 100014: Jaw
- 100016: JawEND
- 100018: jawProxy_geo
- 100020: l_ankleProxy_geo
- 100022: l_ballProxy_geo
- 100024: l_clavicleProxy_geo
- 100026: l_erbowProxy_geo
- 100028: l_hipProxy_geo
- 100030: l_indexProxy_01_geo
- 100032: l_indexProxy_02_geo
- 100034: l_indexProxy_03_geo
- 100036: l_kneeProxy_geo
- 100038: l_middleProxy_01_geo
- 100040: l_middleProxy_02_geo
- 100042: l_middleProxy_03_geo
- 100044: l_pinkyProxy_01_geo
- 100046: l_pinkyProxy_02_geo
- 100048: l_pinkyProxy_03_geo
- 100050: l_ringProxy_01_geo
- 100052: l_ringProxy_02_geo
- 100054: l_ringProxy_03_geo
- 100056: l_shourderProxy_geo
- 100058: l_thumbProxy_01_geo
- 100060: l_thumbProxy_02_geo
- 100062: l_thumbProxy_03_geo
- 100064: l_UNI_eye
- 100066: l_wristProxy_geo
- 100068: LeftArm
- 100070: LeftCheek
- 100072: LeftEye
- 100074: LeftEyelidLower
- 100076: LeftEyelidUpper
- 100078: LeftFoot
- 100080: LeftForeArm
- 100082: LeftHand
- 100084: LeftHandIndex1
- 100086: LeftHandIndex13
- 100088: LeftHandIndex17
- 100090: LeftHandIndex2
- 100092: LeftHandIndex3
- 100094: LeftHandMiddle1
- 100096: LeftHandMiddle13
- 100098: LeftHandMiddle17
- 100100: LeftHandMiddle2
- 100102: LeftHandMiddle3
- 100104: LeftHandPinky1
- 100106: LeftHandPinky13
- 100108: LeftHandPinky17
- 100110: LeftHandPinky2
- 100112: LeftHandPinky3
- 100114: LeftHandRing1
- 100116: LeftHandRing13
- 100118: LeftHandRing17
- 100120: LeftHandRing2
- 100122: LeftHandRing3
- 100124: LeftHandThumb1
- 100126: LeftHandThumb13
- 100128: LeftHandThumb17
- 100130: LeftHandThumb2
- 100132: LeftHandThumb3
- 100134: LeftInnerBrow
- 100136: LeftIOuterBrow
- 100138: LeftLeg
- 100140: LeftLipCorner
- 100142: LeftLipLower
- 100144: LeftLipUpper
- 100146: LeftNostril
- 100148: LeftShoulder
- 100150: LeftToes
- 100152: LeftUpLeg
- 100154: LToeBase_End2
- 100156: LToeBase_End3
- 100158: Neck
- 100160: neckProxy_geo
- 100162: pelvisProxy_geo
- 100164: r_ankleProxy_geo
- 100166: r_ballProxy_geo
- 100168: r_clavicleProxy_geo
- 100170: r_erbowProxy_geo
- 100172: r_hipProxy_geo
- 100174: r_indexProxy_01_geo
- 100176: r_indexProxy_02_geo
- 100178: r_indexProxy_03_geo
- 100180: r_kneeProxy_geo
- 100182: r_middleProxy_01_geo
- 100184: r_middleProxy_02_geo
- 100186: r_middleProxy_03_geo
- 100188: r_pinkyProxy_01_geo
- 100190: r_pinkyProxy_02_geo
- 100192: r_pinkyProxy_03_geo
- 100194: r_ringProxy_01_geo
- 100196: r_ringProxy_02_geo
- 100198: r_ringProxy_03_geo
- 100200: r_shourderProxy_geo
- 100202: r_thumbProxy_01_geo
- 100204: r_thumbProxy_02_geo
- 100206: r_thumbProxy_03_geo
- 100208: r_UNI_eye
- 100210: r_wristProxy_geo
- 100212: Reference
- 100214: RightArm
- 100216: RightCheek
- 100218: RightEye
- 100220: RightEyelidLower
- 100222: RightEyelidUpper
- 100224: RightFoot
- 100226: RightForeArm
- 100228: RightHand
- 100230: RightHandIndex1
- 100232: RightHandIndex2
- 100234: RightHandIndex3
- 100236: RightHandMiddle1
- 100238: RightHandMiddle2
- 100240: RightHandMiddle3
- 100242: RightHandPinky1
- 100244: RightHandPinky2
- 100246: RightHandPinky3
- 100248: RightHandRing1
- 100250: RightHandRing2
- 100252: RightHandRing3
- 100254: RightHandThumb1
- 100256: RightHandThumb2
- 100258: RightHandThumb3
- 100260: RightInnerBrow
- 100262: RightIOuterBrow
- 100264: RightLeg
- 100266: RightLipCorner
- 100268: RightLipLower
- 100270: RightLipUpper
- 100272: RightNostril
- 100274: RightShoulder
- 100276: RightToes
- 100278: RightUpLeg
- 100280: Spine
- 100282: spineProxy_geo
- 100284: TongueBack
- 100286: TongueTip
- 100288: UNI_01_Lower_teethProxy
- 100290: UNI_01_TongueBaseProxy
- 100292: UNI_01_TongueTipProxy
- 100294: UNI_01_Upper_teethProxy
- 400000: Chest
- 400002: chestProxy_geo
- 400004: Head
- 400006: headProxy_geo
- 400008: HeadTop_End
- 400010: Hips
- 400012: //RootNode
- 400014: Jaw
- 400016: JawEND
- 400018: jawProxy_geo
- 400020: l_ankleProxy_geo
- 400022: l_ballProxy_geo
- 400024: l_clavicleProxy_geo
- 400026: l_erbowProxy_geo
- 400028: l_hipProxy_geo
- 400030: l_indexProxy_01_geo
- 400032: l_indexProxy_02_geo
- 400034: l_indexProxy_03_geo
- 400036: l_kneeProxy_geo
- 400038: l_middleProxy_01_geo
- 400040: l_middleProxy_02_geo
- 400042: l_middleProxy_03_geo
- 400044: l_pinkyProxy_01_geo
- 400046: l_pinkyProxy_02_geo
- 400048: l_pinkyProxy_03_geo
- 400050: l_ringProxy_01_geo
- 400052: l_ringProxy_02_geo
- 400054: l_ringProxy_03_geo
- 400056: l_shourderProxy_geo
- 400058: l_thumbProxy_01_geo
- 400060: l_thumbProxy_02_geo
- 400062: l_thumbProxy_03_geo
- 400064: l_UNI_eye
- 400066: l_wristProxy_geo
- 400068: LeftArm
- 400070: LeftCheek
- 400072: LeftEye
- 400074: LeftEyelidLower
- 400076: LeftEyelidUpper
- 400078: LeftFoot
- 400080: LeftForeArm
- 400082: LeftHand
- 400084: LeftHandIndex1
- 400086: LeftHandIndex13
- 400088: LeftHandIndex17
- 400090: LeftHandIndex2
- 400092: LeftHandIndex3
- 400094: LeftHandMiddle1
- 400096: LeftHandMiddle13
- 400098: LeftHandMiddle17
- 400100: LeftHandMiddle2
- 400102: LeftHandMiddle3
- 400104: LeftHandPinky1
- 400106: LeftHandPinky13
- 400108: LeftHandPinky17
- 400110: LeftHandPinky2
- 400112: LeftHandPinky3
- 400114: LeftHandRing1
- 400116: LeftHandRing13
- 400118: LeftHandRing17
- 400120: LeftHandRing2
- 400122: LeftHandRing3
- 400124: LeftHandThumb1
- 400126: LeftHandThumb13
- 400128: LeftHandThumb17
- 400130: LeftHandThumb2
- 400132: LeftHandThumb3
- 400134: LeftInnerBrow
- 400136: LeftIOuterBrow
- 400138: LeftLeg
- 400140: LeftLipCorner
- 400142: LeftLipLower
- 400144: LeftLipUpper
- 400146: LeftNostril
- 400148: LeftShoulder
- 400150: LeftToes
- 400152: LeftUpLeg
- 400154: LToeBase_End2
- 400156: LToeBase_End3
- 400158: Neck
- 400160: neckProxy_geo
- 400162: pelvisProxy_geo
- 400164: r_ankleProxy_geo
- 400166: r_ballProxy_geo
- 400168: r_clavicleProxy_geo
- 400170: r_erbowProxy_geo
- 400172: r_hipProxy_geo
- 400174: r_indexProxy_01_geo
- 400176: r_indexProxy_02_geo
- 400178: r_indexProxy_03_geo
- 400180: r_kneeProxy_geo
- 400182: r_middleProxy_01_geo
- 400184: r_middleProxy_02_geo
- 400186: r_middleProxy_03_geo
- 400188: r_pinkyProxy_01_geo
- 400190: r_pinkyProxy_02_geo
- 400192: r_pinkyProxy_03_geo
- 400194: r_ringProxy_01_geo
- 400196: r_ringProxy_02_geo
- 400198: r_ringProxy_03_geo
- 400200: r_shourderProxy_geo
- 400202: r_thumbProxy_01_geo
- 400204: r_thumbProxy_02_geo
- 400206: r_thumbProxy_03_geo
- 400208: r_UNI_eye
- 400210: r_wristProxy_geo
- 400212: Reference
- 400214: RightArm
- 400216: RightCheek
- 400218: RightEye
- 400220: RightEyelidLower
- 400222: RightEyelidUpper
- 400224: RightFoot
- 400226: RightForeArm
- 400228: RightHand
- 400230: RightHandIndex1
- 400232: RightHandIndex2
- 400234: RightHandIndex3
- 400236: RightHandMiddle1
- 400238: RightHandMiddle2
- 400240: RightHandMiddle3
- 400242: RightHandPinky1
- 400244: RightHandPinky2
- 400246: RightHandPinky3
- 400248: RightHandRing1
- 400250: RightHandRing2
- 400252: RightHandRing3
- 400254: RightHandThumb1
- 400256: RightHandThumb2
- 400258: RightHandThumb3
- 400260: RightInnerBrow
- 400262: RightIOuterBrow
- 400264: RightLeg
- 400266: RightLipCorner
- 400268: RightLipLower
- 400270: RightLipUpper
- 400272: RightNostril
- 400274: RightShoulder
- 400276: RightToes
- 400278: RightUpLeg
- 400280: Spine
- 400282: spineProxy_geo
- 400284: TongueBack
- 400286: TongueTip
- 400288: UNI_01_Lower_teethProxy
- 400290: UNI_01_TongueBaseProxy
- 400292: UNI_01_TongueTipProxy
- 400294: UNI_01_Upper_teethProxy
- 2300000: chestProxy_geo
- 2300002: headProxy_geo
- 2300004: jawProxy_geo
- 2300006: l_ankleProxy_geo
- 2300008: l_ballProxy_geo
- 2300010: l_clavicleProxy_geo
- 2300012: l_erbowProxy_geo
- 2300014: l_hipProxy_geo
- 2300016: l_indexProxy_01_geo
- 2300018: l_indexProxy_02_geo
- 2300020: l_indexProxy_03_geo
- 2300022: l_kneeProxy_geo
- 2300024: l_middleProxy_01_geo
- 2300026: l_middleProxy_02_geo
- 2300028: l_middleProxy_03_geo
- 2300030: l_pinkyProxy_01_geo
- 2300032: l_pinkyProxy_02_geo
- 2300034: l_pinkyProxy_03_geo
- 2300036: l_ringProxy_01_geo
- 2300038: l_ringProxy_02_geo
- 2300040: l_ringProxy_03_geo
- 2300042: l_shourderProxy_geo
- 2300044: l_thumbProxy_01_geo
- 2300046: l_thumbProxy_02_geo
- 2300048: l_thumbProxy_03_geo
- 2300050: l_UNI_eye
- 2300052: l_wristProxy_geo
- 2300054: neckProxy_geo
- 2300056: pelvisProxy_geo
- 2300058: r_ankleProxy_geo
- 2300060: r_ballProxy_geo
- 2300062: r_clavicleProxy_geo
- 2300064: r_erbowProxy_geo
- 2300066: r_hipProxy_geo
- 2300068: r_indexProxy_01_geo
- 2300070: r_indexProxy_02_geo
- 2300072: r_indexProxy_03_geo
- 2300074: r_kneeProxy_geo
- 2300076: r_middleProxy_01_geo
- 2300078: r_middleProxy_02_geo
- 2300080: r_middleProxy_03_geo
- 2300082: r_pinkyProxy_01_geo
- 2300084: r_pinkyProxy_02_geo
- 2300086: r_pinkyProxy_03_geo
- 2300088: r_ringProxy_01_geo
- 2300090: r_ringProxy_02_geo
- 2300092: r_ringProxy_03_geo
- 2300094: r_shourderProxy_geo
- 2300096: r_thumbProxy_01_geo
- 2300098: r_thumbProxy_02_geo
- 2300100: r_thumbProxy_03_geo
- 2300102: r_UNI_eye
- 2300104: r_wristProxy_geo
- 2300106: spineProxy_geo
- 2300108: UNI_01_Lower_teethProxy
- 2300110: UNI_01_TongueBaseProxy
- 2300112: UNI_01_TongueTipProxy
- 2300114: UNI_01_Upper_teethProxy
- 3300000: chestProxy_geo
- 3300002: headProxy_geo
- 3300004: jawProxy_geo
- 3300006: l_ankleProxy_geo
- 3300008: l_ballProxy_geo
- 3300010: l_clavicleProxy_geo
- 3300012: l_erbowProxy_geo
- 3300014: l_hipProxy_geo
- 3300016: l_indexProxy_01_geo
- 3300018: l_indexProxy_02_geo
- 3300020: l_indexProxy_03_geo
- 3300022: l_kneeProxy_geo
- 3300024: l_middleProxy_01_geo
- 3300026: l_middleProxy_02_geo
- 3300028: l_middleProxy_03_geo
- 3300030: l_pinkyProxy_01_geo
- 3300032: l_pinkyProxy_02_geo
- 3300034: l_pinkyProxy_03_geo
- 3300036: l_ringProxy_01_geo
- 3300038: l_ringProxy_02_geo
- 3300040: l_ringProxy_03_geo
- 3300042: l_shourderProxy_geo
- 3300044: l_thumbProxy_01_geo
- 3300046: l_thumbProxy_02_geo
- 3300048: l_thumbProxy_03_geo
- 3300050: l_UNI_eye
- 3300052: l_wristProxy_geo
- 3300054: neckProxy_geo
- 3300056: pelvisProxy_geo
- 3300058: r_ankleProxy_geo
- 3300060: r_ballProxy_geo
- 3300062: r_clavicleProxy_geo
- 3300064: r_erbowProxy_geo
- 3300066: r_hipProxy_geo
- 3300068: r_indexProxy_01_geo
- 3300070: r_indexProxy_02_geo
- 3300072: r_indexProxy_03_geo
- 3300074: r_kneeProxy_geo
- 3300076: r_middleProxy_01_geo
- 3300078: r_middleProxy_02_geo
- 3300080: r_middleProxy_03_geo
- 3300082: r_pinkyProxy_01_geo
- 3300084: r_pinkyProxy_02_geo
- 3300086: r_pinkyProxy_03_geo
- 3300088: r_ringProxy_01_geo
- 3300090: r_ringProxy_02_geo
- 3300092: r_ringProxy_03_geo
- 3300094: r_shourderProxy_geo
- 3300096: r_thumbProxy_01_geo
- 3300098: r_thumbProxy_02_geo
- 3300100: r_thumbProxy_03_geo
- 3300102: r_UNI_eye
- 3300104: r_wristProxy_geo
- 3300106: spineProxy_geo
- 3300108: UNI_01_Lower_teethProxy
- 3300110: UNI_01_TongueBaseProxy
- 3300112: UNI_01_TongueTipProxy
- 3300114: UNI_01_Upper_teethProxy
- 4300000: l_UNI_eye
- 4300002: r_UNI_eye
- 4300004: UNI_01_TongueBaseProxy
- 4300006: UNI_01_TongueTipProxy
- 4300008: UNI_01_Lower_teethProxy
- 4300010: jawProxy_geo
- 4300012: headProxy_geo
- 4300014: UNI_01_Upper_teethProxy
- 4300016: neckProxy_geo
- 4300018: r_pinkyProxy_03_geo
- 4300020: r_pinkyProxy_02_geo
- 4300022: r_pinkyProxy_01_geo
- 4300024: r_ringProxy_03_geo
- 4300026: r_ringProxy_02_geo
- 4300028: r_ringProxy_01_geo
- 4300030: r_middleProxy_03_geo
- 4300032: r_middleProxy_02_geo
- 4300034: r_middleProxy_01_geo
- 4300036: r_indexProxy_03_geo
- 4300038: r_indexProxy_02_geo
- 4300040: r_indexProxy_01_geo
- 4300042: r_thumbProxy_03_geo
- 4300044: r_thumbProxy_02_geo
- 4300046: r_thumbProxy_01_geo
- 4300048: r_wristProxy_geo
- 4300050: r_erbowProxy_geo
- 4300052: r_shourderProxy_geo
- 4300054: r_clavicleProxy_geo
- 4300056: chestProxy_geo
- 4300058: l_pinkyProxy_03_geo
- 4300060: l_pinkyProxy_02_geo
- 4300062: l_pinkyProxy_01_geo
- 4300064: l_ringProxy_03_geo
- 4300066: l_ringProxy_02_geo
- 4300068: l_ringProxy_01_geo
- 4300070: l_middleProxy_03_geo
- 4300072: l_middleProxy_02_geo
- 4300074: l_middleProxy_01_geo
- 4300076: l_indexProxy_03_geo
- 4300078: l_indexProxy_02_geo
- 4300080: l_indexProxy_01_geo
- 4300082: l_thumbProxy_03_geo
- 4300084: l_thumbProxy_02_geo
- 4300086: l_thumbProxy_01_geo
- 4300088: l_wristProxy_geo
- 4300090: l_erbowProxy_geo
- 4300092: l_shourderProxy_geo
- 4300094: l_clavicleProxy_geo
- 4300096: spineProxy_geo
- 4300098: r_ballProxy_geo
- 4300100: r_ankleProxy_geo
- 4300102: r_kneeProxy_geo
- 4300104: r_hipProxy_geo
- 4300106: pelvisProxy_geo
- 4300108: l_ballProxy_geo
- 4300110: l_ankleProxy_geo
- 4300112: l_kneeProxy_geo
- 4300114: l_hipProxy_geo
- 7400000: Idle
- 9500000: //RootNode
- materials:
- importMaterials: 0
- materialName: 0
- materialSearch: 1
- animations:
- legacyGenerateAnimations: 4
- bakeSimulation: 0
- optimizeGameObjects: 0
- motionNodeName:
- animationImportErrors:
- animationImportWarnings:
- animationRetargetingWarnings:
- animationDoRetargetingWarnings: 0
- animationCompression: 3
- animationRotationError: .5
- animationPositionError: .5
- animationScaleError: .5
- animationWrapMode: 0
- extraExposedTransformPaths: []
- clipAnimations:
- - serializedVersion: 16
- name: Idle
- takeName: Idle
- firstFrame: 120
- lastFrame: 1100
- wrapMode: 0
- orientationOffsetY: 0
- level: 0
- cycleOffset: 0
- loop: 0
- loopTime: 1
- loopBlend: 1
- loopBlendOrientation: 1
- loopBlendPositionY: 1
- loopBlendPositionXZ: 1
- keepOriginalOrientation: 0
- keepOriginalPositionY: 1
- keepOriginalPositionXZ: 0
- heightFromFeet: 0
- mirror: 0
- bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
- curves: []
- events: []
- transformMask:
- - path:
- weight: 1
- - path: Reference
- weight: 1
- - path: Reference/Hips
- weight: 1
- - path: Reference/Hips/LeftUpLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
- weight: 1
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo
- weight: 0
- - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2
- weight: 0
- - path: Reference/Hips/pelvisProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/r_hipProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes
- weight: 1
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3
- weight: 0
- - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo
- weight: 0
- - path: Reference/Hips/Spine
- weight: 1
- - path: Reference/Hips/Spine/Chest
- weight: 1
- - path: Reference/Hips/Spine/Chest/chestProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye
- weight: 1
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy
- weight: 0
- - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
- weight: 1
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17
- weight: 0
- - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo
- weight: 0
- - path: Reference/Hips/Spine/spineProxy_geo
- weight: 0
- maskType: 0
- maskSource: {instanceID: 0}
- isReadable: 1
- meshes:
- lODScreenPercentages: []
- globalScale: .00999999978
- meshCompression: 0
- addColliders: 0
- importBlendShapes: 1
- swapUVChannels: 0
- generateSecondaryUV: 0
- useFileUnits: 1
- optimizeMeshForGPU: 1
- keepQuads: 0
- weldVertices: 1
- secondaryUVAngleDistortion: 8
- secondaryUVAreaDistortion: 15.000001
- secondaryUVHardAngle: 88
- secondaryUVPackMargin: 4
- useFileScale: 0
- tangentSpace:
- normalSmoothAngle: 60
- splitTangentsAcrossUV: 1
- normalImportMode: 0
- tangentImportMode: 1
- importAnimation: 1
- copyAvatar: 0
- humanDescription:
- human:
- - boneName: Hips
- humanName: Hips
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftUpLeg
- 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: RightUpLeg
- 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: LeftLeg
- 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: RightLeg
- 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: LeftFoot
- 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: RightFoot
- humanName: RightFoot
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Spine
- humanName: Spine
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Chest
- humanName: Chest
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Neck
- humanName: Neck
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Head
- humanName: Head
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftShoulder
- humanName: LeftShoulder
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightShoulder
- humanName: RightShoulder
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftArm
- 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: RightArm
- 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: LeftForeArm
- 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: RightForeArm
- 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: LeftHand
- 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: RightHand
- 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: LeftToes
- 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: RightToes
- humanName: RightToes
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: LeftEye
- humanName: LeftEye
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: RightEye
- humanName: RightEye
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- - boneName: Jaw
- humanName: Jaw
- 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: LeftHandThumb1
- 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: LeftHandThumb2
- 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: LeftHandThumb3
- 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: LeftHandIndex1
- 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: LeftHandIndex2
- 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: LeftHandIndex3
- 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: LeftHandMiddle1
- 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: LeftHandMiddle2
- 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: LeftHandMiddle3
- 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: LeftHandRing1
- 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: LeftHandRing2
- 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: LeftHandRing3
- 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: LeftHandPinky1
- 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: LeftHandPinky2
- 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: LeftHandPinky3
- 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: RightHandThumb1
- 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: RightHandThumb2
- 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: RightHandThumb3
- 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: RightHandIndex1
- 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: RightHandIndex2
- 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: RightHandIndex3
- 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: RightHandMiddle1
- 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: RightHandMiddle2
- 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: RightHandMiddle3
- 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: RightHandRing1
- 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: RightHandRing2
- 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: RightHandRing3
- 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: RightHandPinky1
- 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: RightHandPinky2
- 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: RightHandPinky3
- humanName: Right Little Distal
- limit:
- min: {x: 0, y: 0, z: 0}
- max: {x: 0, y: 0, z: 0}
- value: {x: 0, y: 0, z: 0}
- length: 0
- modified: 0
- skeleton:
- - name: Idles(Clone)
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Reference
- position: {x: 0, y: 0, z: 0}
- rotation: {x: 0, y: -0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Hips
- position: {x: .00052511692, y: .960555851, z: -.00229787827}
- rotation: {x: -.0251760688, y: -.00131116586, z: -.00571906008, w: .999665856}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftUpLeg
- position: {x: -.0754494965, y: -.0456640199, z: 0}
- rotation: {x: .033009842, y: .0290066097, z: -.00523679424, w: .999020338}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_hipProxy_geo
- position: {x: .0754494965, y: -.91813004, z: 0}
- rotation: {x: -6.12323426e-17, y: 1, z: 6.12323426e-17, w: -6.1232336e-17}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLeg
- position: {x: -.0205504987, y: -.409129977, z: -.000718647963}
- rotation: {x: .0269804429, y: -.179316893, z: -.0277288072, w: .983030379}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_kneeProxy_geo
- position: {x: .0960000008, y: -.509000003, z: .000718647963}
- rotation: {x: -6.12323426e-17, y: 1, z: 6.12323426e-17, w: -6.1232336e-17}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftFoot
- position: {x: -.00515299942, y: -.423155904, z: -.0276488513}
- rotation: {x: -.0217921138, y: .105009004, z: .0336682796, w: .993662238}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_ankleProxy_geo
- position: {x: .101153001, y: -.0858440921, z: .0283674989}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftToes
- position: {x: -.00748699997, y: -.0731673017, z: .145427123}
- rotation: {x: .044763796, y: .00451674778, z: .0129387779, w: .998903632}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_ballProxy_geo
- position: {x: .10864, y: -.0126768006, z: -.117059626}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LToeBase_End2
- position: {x: .0126400003, y: -.0131357787, z: .0358933695}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: pelvisProxy_geo
- position: {x: -0, y: -.963793993, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightUpLeg
- position: {x: .0754495338, y: -.0456639901, z: 0}
- rotation: {x: .0633131862, y: .102366365, z: .00139613473, w: .992728889}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_hipProxy_geo
- position: {x: -.0754495338, y: -.91813004, z: 0}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLeg
- position: {x: .0205504671, y: -.409130007, z: -.000718647963}
- rotation: {x: -.0345289335, y: .133973226, z: .0164565835, w: .990246534}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_kneeProxy_geo
- position: {x: -.0960000008, y: -.509000003, z: .000718647963}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightFoot
- position: {x: .00515299942, y: -.423155904, z: -.0276488513}
- rotation: {x: .0153136486, y: -.069597967, z: -.0255134702, w: .997131228}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_ankleProxy_geo
- position: {x: -.101153001, y: -.0858440921, z: .0283674989}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightToes
- position: {x: .00748699997, y: -.0731673017, z: .145427495}
- rotation: {x: .100880049, y: -.00876121689, z: .00148798968, w: .994858921}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LToeBase_End3
- position: {x: -.0126400003, y: -.0131357787, z: .0358929969}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_ballProxy_geo
- position: {x: -.10864, y: -.0126768006, z: -.117059998}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Spine
- position: {x: 2.6469779e-25, y: .0922631845, z: .0157713313}
- rotation: {x: .0526749492, y: .00267045246, z: .000112703448, w: .998608112}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Chest
- position: {x: -0, y: .162540287, z: -.00165605545}
- rotation: {x: .00494010048, y: .00823248643, z: .0108976308, w: .999894559}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: chestProxy_geo
- position: {x: -2.6469779e-25, y: -1.21859741, z: -.0141152758}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftShoulder
- position: {x: -.0382856205, y: .221622542, z: -.0170631818}
- rotation: {x: -.0141409775, y: -.019958118, z: .165910065, w: .985837579}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_clavicleProxy_geo
- position: {x: -.576741397, y: -1.3202554, z: -.00174654822}
- rotation: {x: .0132958535, y: .0596696772, z: -.217083633, w: .974236846}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftArm
- position: {x: -.100500897, y: 1.49460539e-06, z: -5.47152013e-08}
- rotation: {x: .088561371, y: -.00439856295, z: -.195124015, w: .976762056}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_shourderProxy_geo
- position: {x: .145532504, y: -1.39592445, z: .00981439184}
- rotation: {x: -9.73998685e-05, y: .0164502356, z: .00591997523, w: .999847174}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftForeArm
- position: {x: -.254049301, y: 5.68434176e-16, z: 1.11022296e-17}
- rotation: {x: .124596655, y: .0144561492, z: -.0065690279, w: .99208045}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_erbowProxy_geo
- position: {x: .443439782, y: -1.38239443, z: .0267205685}
- rotation: {x: .000123997524, y: -.00563636655, z: .0219935421, w: .99974221}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHand
- position: {x: -.24638927, y: 0, z: -1.99840139e-16}
- rotation: {x: -.0228965357, y: -.0335498974, z: -.0432982743, w: .998236179}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_wristProxy_geo
- position: {x: .689829111, y: -1.38239443, z: .0267205685}
- rotation: {x: .000123997524, y: -.00563636655, z: .0219935421, w: .99974221}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex1
- position: {x: -.0751257986, y: -.00784140453, z: .0326526426}
- rotation: {x: .00608500466, y: -.016760448, z: .0568630174, w: .998222828}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_indexProxy_01_geo
- position: {x: .707995355, y: -1.40068793, z: .106783867}
- rotation: {x: .000377955439, y: -.0859028324, z: .00438349601, w: .996293843}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex2
- position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036}
- rotation: {x: -.0674886778, y: .0152253956, z: .0327191874, w: .997067213}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_indexProxy_02_geo
- position: {x: .597788155, y: -1.46919715, z: .12853159}
- rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex3
- position: {x: -.0279684775, y: -6.28122487e-09, z: -5.17186614e-08}
- rotation: {x: -.0662777275, y: -.00754973339, z: .17120178, w: .982975185}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_indexProxy_03_geo
- position: {x: .625756621, y: -1.46919715, z: .128531635}
- rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex13
- position: {x: -.0186619665, y: .00437385263, z: -.00384002505}
- rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle1
- position: {x: -.0760238245, y: -.00188513438, z: .0101412293}
- rotation: {x: -.00380866975, y: .0447862782, z: .088190414, w: .995089054}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_middleProxy_01_geo
- position: {x: .704767466, y: -1.41134179, z: .0634717271}
- rotation: {x: 4.18855489e-05, y: -.0389639959, z: .00107416394, w: .999240041}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle2
- position: {x: -.0442804359, y: 4.79887422e-06, z: -.000425400125}
- rotation: {x: -.0125461277, y: -.00755129149, z: .0314758047, w: .999397278}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_middleProxy_02_geo
- position: {x: .585567176, y: -1.48780787, z: .0243592989}
- rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle3
- position: {x: -.0339648277, y: -1.21979289e-08, z: 3.75648268e-09}
- rotation: {x: -.00727167213, y: .000814449391, z: .290401876, w: .956876814}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_middleProxy_03_geo
- position: {x: .619532049, y: -1.48780787, z: .0243592951}
- rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle13
- position: {x: -.0196715724, y: .00392557262, z: -.000558814383}
- rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky1
- position: {x: -.0656599477, y: -.00782510638, z: -.0322512463}
- rotation: {x: -.0661564097, y: .0816886052, z: .0931294337, w: .990089476}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_pinkyProxy_01_geo
- position: {x: .66101706, y: -1.42205703, z: -.067025952}
- rotation: {x: .00097605685, y: .0847904682, z: -.0114691788, w: .996332347}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky2
- position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775}
- rotation: {x: .0470223501, y: -.0211624596, z: .0376865864, w: .997958362}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_pinkyProxy_02_geo
- position: {x: .705631673, y: -1.41450727, z: -.07956402}
- rotation: {x: .00058051158, y: .0944183916, z: -.00612070598, w: .995513618}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky3
- position: {x: -.0230640266, y: -6.40258077e-06, z: 1.8332095e-08}
- rotation: {x: .0462911464, y: -.000569255557, z: .241861746, w: .969205737}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_pinkyProxy_03_geo
- position: {x: .72869575, y: -1.41450083, z: -.0795640349}
- rotation: {x: .00058051158, y: .0944183916, z: -.00612070598, w: .995513618}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky13
- position: {x: -.0169719923, y: .00202882662, z: .00314032286}
- rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing1
- position: {x: -.0703021064, y: -.00374530931, z: -.0114117917}
- rotation: {x: -.0202593002, y: .0722949728, z: .0900596008, w: .993102431}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_ringProxy_01_geo
- position: {x: .67746079, y: -1.4215858, z: .00821865257}
- rotation: {x: .000123969759, y: .0157473162, z: -.00787121709, w: .999845028}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing2
- position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837}
- rotation: {x: .0183737725, y: -.0256201923, z: .0339745283, w: .998925388}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_ringProxy_02_geo
- position: {x: .558318734, y: -1.49264503, z: -.0224928856}
- rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing3
- position: {x: -.0308355652, y: 7.71032613e-11, z: -1.64932707e-08}
- rotation: {x: .0185099188, y: -.00236044498, z: .245544478, w: .969205737}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_ringProxy_03_geo
- position: {x: .589154303, y: -1.49264503, z: -.0224928688}
- rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing13
- position: {x: -.0205416381, y: .00325422082, z: .00137918338}
- rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb1
- position: {x: -.0142312413, y: -.0123778246, z: .0255316682}
- rotation: {x: -.109403558, y: -.053115543, z: -.109465428, w: .986522734}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_thumbProxy_01_geo
- position: {x: .643102229, y: -1.39965379, z: -.00606264407}
- rotation: {x: 1.89761495e-09, y: -1.12757026e-17, z: -5.58892439e-18, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb2
- position: {x: -.0163739994, y: -.00528999977, z: .0234914087}
- rotation: {x: -.0301016569, y: .0996776596, z: .00638790941, w: .99454391}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_thumbProxy_02_geo
- position: {x: .659476221, y: -1.39436388, z: -.0295540728}
- rotation: {x: 1.89761473e-09, y: 1.42085215e-08, z: -1.75474497e-08, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb3
- position: {x: -.0254599992, y: -.00763999997, z: .0208330005}
- rotation: {x: .0482733995, y: -.219707936, z: -.0199329332, w: .974166751}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_thumbProxy_03_geo
- position: {x: .684936106, y: -1.38672376, z: -.0503869802}
- rotation: {x: -3.8499806e-08, y: 2.97005425e-08, z: -3.3748627e-08, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb13
- position: {x: -.031868957, y: -.0052999449, z: .0258005001}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Neck
- position: {x: -0, y: .259009302, z: -.0324132554}
- rotation: {x: .0271569323, y: .00382573507, z: .00214142376, w: .99962157}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Head
- position: {x: -2.6469779e-25, y: .0830703825, z: .0113267815}
- rotation: {x: -.0548446439, y: .00923924614, z: -.0227429699, w: .998193085}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: headProxy_geo
- position: {x: -0, y: -1.56067717, z: .00697119767}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: HeadTop_End
- position: {x: -5.17045827e-18, y: .188178778, z: .0121086892}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: Jaw
- position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: JawEND
- position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: jawProxy_geo
- position: {x: -1.73472344e-20, y: -1.57180381, z: -.003356345}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLipCorner
- position: {x: -.032843262, y: -.01657876, z: .0661217645}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLipLower
- position: {x: -.0142508168, y: -.0216887593, z: .0822406337}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLipCorner
- position: {x: .0328399986, y: -.01657876, z: .0661187842}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLipLower
- position: {x: .0142508168, y: -.0216887593, z: .0822387859}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: TongueBack
- position: {x: -1.73472344e-20, y: -.022869369, z: .0100954091}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: UNI_01_TongueBaseProxy
- position: {x: -0, y: -1.54893458, z: -.0134517532}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: TongueTip
- position: {x: -1.73472344e-20, y: -.0232788119, z: .0383227095}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: UNI_01_TongueTipProxy
- position: {x: -0, y: -1.54852509, z: -.0416790508}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: UNI_01_Lower_teethProxy
- position: {x: -1.73472344e-20, y: -1.57180381, z: -.003356345}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftCheek
- position: {x: -.0542440265, y: .0337019488, z: .0594304018}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftEye
- position: {x: -.0208482333, y: .0825027004, z: .0554274321}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: l_UNI_eye
- position: {x: .0208482333, y: -1.64317989, z: -.048456233}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftEyelidLower
- position: {x: -.0356189571, y: .0650736615, z: .076234743}
- rotation: {x: -.0348994955, y: 0, z: -0, w: .999390841}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftEyelidUpper
- position: {x: -.0344068967, y: .10060814, z: .0802053064}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftInnerBrow
- position: {x: -.0120626912, y: .118765265, z: .0934668258}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftIOuterBrow
- position: {x: -.0550398715, y: .114825293, z: .061777398}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftLipUpper
- position: {x: -.0145013221, y: -.00511181122, z: .094618842}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftNostril
- position: {x: -.0178999994, y: .0263128281, z: .0908674002}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightCheek
- position: {x: .0542399958, y: .033702828, z: .0594273992}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightEye
- position: {x: .020849999, y: .082502827, z: .0554273985}
- rotation: {x: 0, y: -0, z: -0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_UNI_eye
- position: {x: -.020849999, y: -1.64317989, z: -.0484561995}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightEyelidLower
- position: {x: .0356200002, y: .065072827, z: .0762374029}
- rotation: {x: -.0348994955, y: 0, z: -0, w: .999390841}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightEyelidUpper
- position: {x: .0344099998, y: .100612827, z: .0802073926}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightInnerBrow
- position: {x: .0120626874, y: .118765265, z: .0934668258}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightIOuterBrow
- position: {x: .0550400019, y: .114822827, z: .061777398}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightLipUpper
- position: {x: .0145013221, y: -.00510717137, z: .094617404}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightNostril
- position: {x: .0178999994, y: .0263089053, z: .0908706188}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: UNI_01_Upper_teethProxy
- position: {x: -0, y: -1.56067717, z: .00697119767}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: neckProxy_geo
- position: {x: -2.6469779e-25, y: -1.47760677, z: .0182979777}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightShoulder
- position: {x: .038286224, y: .221621305, z: -.0170631967}
- rotation: {x: .162657544, y: .986624956, z: -.00401280075, w: .00988306664}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_clavicleProxy_geo
- position: {x: -.576691985, y: -1.32027555, z: .00174657279}
- rotation: {x: .217065632, y: .974240899, z: -.0132948151, w: .0596702173}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightArm
- position: {x: -.100501455, y: -2.49955224e-06, z: -5.15574072e-08}
- rotation: {x: .107551202, y: .991632342, z: -.0570656136, w: .0429148301}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_shourderProxy_geo
- position: {x: -.111510262, y: -1.39896846, z: .0182753969}
- rotation: {x: -9.73998758e-05, y: .0164502356, z: .00591997523, w: .999847174}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightForeArm
- position: {x: .253428251, y: .00601135287, z: -.0167045239}
- rotation: {x: .171659216, y: .0423706025, z: -.0215649083, w: .984008551}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_erbowProxy_geo
- position: {x: -.320759475, y: -1.41603601, z: .0180951431}
- rotation: {x: .000123997524, y: -.00563636655, z: .0219935421, w: .99974221}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHand
- position: {x: .245373696, y: .0216417722, z: .00555046508}
- rotation: {x: -.0745485798, y: .0462686867, z: .00503015378, w: .996130764}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_wristProxy_geo
- position: {x: -.566133142, y: -1.43767774, z: .0125446785}
- rotation: {x: .000123997524, y: -.00563636655, z: .0219935421, w: .99974221}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex1
- position: {x: .0747694969, y: -.00124305359, z: .0343444981}
- rotation: {x: -.00425042957, y: .162120968, z: -.0406836383, w: .985922694}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_indexProxy_01_geo
- position: {x: -.67848891, y: -1.41288495, z: -.134108156}
- rotation: {x: .000377955439, y: -.0859028324, z: .00438349601, w: .996293843}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex2
- position: {x: .0370584019, y: .00072612107, z: .0145388944}
- rotation: {x: -.0775990337, y: .0223527607, z: .0409148037, w: .995893955}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_indexProxy_02_geo
- position: {x: -.850647688, y: -1.33395886, z: -.171325743}
- rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandIndex3
- position: {x: .0252250377, y: -.00496646529, z: .0110121462}
- rotation: {x: .00452318415, y: .0132934451, z: -.0882905796, w: .99599582}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandIndex17
- position: {x: .019119978, y: .000846308249, z: .00398164755}
- rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_indexProxy_03_geo
- position: {x: -.875872731, y: -1.32899249, z: -.182337865}
- rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle1
- position: {x: .0756476447, y: .00479140272, z: .0118531818}
- rotation: {x: -.0018308931, y: .0143516297, z: -.0478135832, w: .998751581}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_middleProxy_01_geo
- position: {x: -.700037003, y: -1.41435838, z: -.0462522097}
- rotation: {x: 4.18855489e-05, y: -.0389639959, z: .00107416394, w: .999240041}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle2
- position: {x: .0438090637, y: .000194188149, z: .00645493623}
- rotation: {x: -.0188984647, y: -.0441103093, z: .0829460993, w: .995397985}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_middleProxy_02_geo
- position: {x: -.902008593, y: -1.32032251, z: -.013138772}
- rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandMiddle3
- position: {x: .0330724716, y: -.00754753686, z: .00168984616}
- rotation: {x: .00496165501, y: -.000514742918, z: -.197933272, w: .980202854}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandMiddle17
- position: {x: .0200548954, y: -.000547108881, z: .000442590448}
- rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_middleProxy_03_geo
- position: {x: -.935081065, y: -1.3127749, z: -.0148286186}
- rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky1
- position: {x: .0668033436, y: -.00199410878, z: -.0307561457}
- rotation: {x: -.0619648769, y: -.258615404, z: -.0167129003, w: .963846028}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_pinkyProxy_01_geo
- position: {x: -.708490908, y: -1.39051926, z: .167834207}
- rotation: {x: .00097605685, y: .0847904682, z: -.0114691788, w: .996332347}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky2
- position: {x: .0285308417, y: -.001397143, z: -.0116237961}
- rotation: {x: .0298866909, y: .000797491113, z: -.061677359, w: .997648299}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_pinkyProxy_02_geo
- position: {x: -.718481421, y: -1.39699113, z: .193045571}
- rotation: {x: .00058051158, y: .0944183916, z: -.00612070598, w: .995513618}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandPinky3
- position: {x: .0214268602, y: -.000553508929, z: -.00851660781}
- rotation: {x: -.0290977452, y: .000452432752, z: -.152252182, w: .987913191}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandPinky17
- position: {x: .016975116, y: .00161137758, z: -.00335797085}
- rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_pinkyProxy_03_geo
- position: {x: -.739908278, y: -1.39643753, z: .201562166}
- rotation: {x: .00058051158, y: .0944183916, z: -.00612070598, w: .995513618}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing1
- position: {x: .0705984756, y: .00245709647, z: -.00982145779}
- rotation: {x: -.0148128476, y: -.115994759, z: -.029717125, w: .992694736}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_ringProxy_01_geo
- position: {x: -.719976664, y: -1.39957821, z: .0522536784}
- rotation: {x: .000123969759, y: .0157473162, z: -.00787121709, w: .999845028}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing2
- position: {x: .0428871848, y: -.00137538207, z: -.00494585792}
- rotation: {x: .0208193082, y: -.0215571746, z: .0755800754, w: .99668932}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_ringProxy_02_geo
- position: {x: -.909907341, y: -1.30544066, z: .0899852142}
- rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandRing3
- position: {x: .0295006037, y: -.00769293541, z: -.00462225592}
- rotation: {x: -.0116721448, y: .00131289393, z: -.154780462, w: .987879097}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandRing17
- position: {x: .0206709336, y: -.00200043293, z: -.00177803368}
- rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_ringProxy_03_geo
- position: {x: -.939407945, y: -1.29774773, z: .094607465}
- rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb1
- position: {x: .0146849155, y: -.0111049423, z: .0258580949}
- rotation: {x: -.0976119265, y: .0286016259, z: .130226895, w: .986252904}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_thumbProxy_01_geo
- position: {x: -.64310205, y: -1.39964998, z: -.006062645}
- rotation: {x: 1.89764293e-09, y: 1.26634814e-16, z: 1.04058696e-15, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb2
- position: {x: .0163739994, y: -.00528999977, z: .0234913602}
- rotation: {x: -.0309326835, y: -.10171809, z: -.00585022708, w: .994315088}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_thumbProxy_02_geo
- position: {x: -.659475982, y: -1.39436007, z: -.0295539852}
- rotation: {x: 1.89764271e-09, y: 1.42085215e-08, z: -1.75474479e-08, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: RightHandThumb3
- position: {x: .0254599992, y: -.00763999997, z: .0208330005}
- rotation: {x: .0482766777, y: .219707221, z: .0199188776, w: .974166989}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: LeftHandThumb17
- position: {x: .0318690389, y: -.00529994583, z: .0258005001}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: r_thumbProxy_03_geo
- position: {x: -.684936047, y: -1.38671994, z: -.0503868572}
- rotation: {x: -3.65033976e-08, y: 2.97005425e-08, z: -3.3748627e-08, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- - name: spineProxy_geo
- position: {x: -2.6469779e-25, y: -1.05605721, z: -.0157713313}
- rotation: {x: 0, y: 0, z: 0, w: 1}
- scale: {x: 1, y: 1, z: 1}
- transformModified: 1
- armTwist: .5
- foreArmTwist: .5
- upperLegTwist: .5
- legTwist: .5
- armStretch: .0500000007
- legStretch: .0500000007
- feetSpacing: 0
- rootMotionBoneName:
- lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: ab846d93be6794935880f0918f60b63b,
- type: 3}
- animationType: 3
- additionalBone: 0
- userData:
- assetBundleName:
- assetBundleVariant:
|