mine_bot@back.FBX 276 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783
  1. ; FBX 7.3.0 project file
  2. ; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
  3. ; All rights reserved.
  4. ; ----------------------------------------------------
  5. FBXHeaderExtension: {
  6. FBXHeaderVersion: 1003
  7. FBXVersion: 7300
  8. CreationTimeStamp: {
  9. Version: 1000
  10. Year: 2020
  11. Month: 5
  12. Day: 4
  13. Hour: 13
  14. Minute: 15
  15. Second: 13
  16. Millisecond: 534
  17. }
  18. Creator: "FBX SDK/FBX Plugins version 2013.3"
  19. SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
  20. Type: "UserData"
  21. Version: 100
  22. MetaData: {
  23. Version: 100
  24. Title: ""
  25. Subject: ""
  26. Author: ""
  27. Keywords: ""
  28. Revision: ""
  29. Comment: ""
  30. }
  31. Properties70: {
  32. P: "DocumentUrl", "KString", "Url", "", "C:\Users\arong\a-pathfinding-project\Assets\AstarPathfindingProject\ExampleScenes\Prefabs\MineBot\FBX 2013\mine_bot@back.FBX"
  33. P: "SrcDocumentUrl", "KString", "Url", "", "C:\Users\arong\a-pathfinding-project\Assets\AstarPathfindingProject\ExampleScenes\Prefabs\MineBot\FBX 2013\mine_bot@back.FBX"
  34. P: "Original", "Compound", "", ""
  35. P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
  36. P: "Original|ApplicationName", "KString", "", "", "3ds Max"
  37. P: "Original|ApplicationVersion", "KString", "", "", "2011.1"
  38. P: "Original|DateTime_GMT", "DateTime", "", "", "27/02/2011 00:03:47.689"
  39. P: "Original|FileName", "KString", "", "", "C:\Users\bret.church\Documents\3-5_RobotSwarm\Assets\Objects\Enemies\mine_bot@back.FBX"
  40. P: "LastSaved", "Compound", "", ""
  41. P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
  42. P: "LastSaved|ApplicationName", "KString", "", "", "3ds Max"
  43. P: "LastSaved|ApplicationVersion", "KString", "", "", "2011.1"
  44. P: "LastSaved|DateTime_GMT", "DateTime", "", "", "27/02/2011 00:03:47.689"
  45. }
  46. }
  47. }
  48. GlobalSettings: {
  49. Version: 1000
  50. Properties70: {
  51. P: "UpAxis", "int", "Integer", "",2
  52. P: "UpAxisSign", "int", "Integer", "",1
  53. P: "FrontAxis", "int", "Integer", "",1
  54. P: "FrontAxisSign", "int", "Integer", "",-1
  55. P: "CoordAxis", "int", "Integer", "",0
  56. P: "CoordAxisSign", "int", "Integer", "",1
  57. P: "OriginalUpAxis", "int", "Integer", "",2
  58. P: "OriginalUpAxisSign", "int", "Integer", "",1
  59. P: "UnitScaleFactor", "double", "Number", "",1
  60. P: "OriginalUnitScaleFactor", "double", "Number", "",1
  61. P: "AmbientColor", "ColorRGB", "Color", "",0,0,0
  62. P: "DefaultCamera", "KString", "", "", "Producer Perspective"
  63. P: "TimeMode", "enum", "", "",6
  64. P: "TimeSpanStart", "KTime", "Time", "",0
  65. P: "TimeSpanStop", "KTime", "Time", "",18474463200
  66. P: "CustomFrameRate", "double", "Number", "",-1
  67. }
  68. }
  69. ; Documents Description
  70. ;------------------------------------------------------------------
  71. Documents: {
  72. Count: 1
  73. Document: 85981088, "", "Scene" {
  74. Properties70: {
  75. P: "SourceObject", "object", "", ""
  76. P: "ActiveAnimStackName", "KString", "", "", ""
  77. }
  78. RootNode: 0
  79. }
  80. }
  81. ; Document References
  82. ;------------------------------------------------------------------
  83. References: {
  84. }
  85. ; Object definitions
  86. ;------------------------------------------------------------------
  87. Definitions: {
  88. Version: 100
  89. Count: 123
  90. ObjectType: "GlobalSettings" {
  91. Count: 1
  92. }
  93. ObjectType: "NodeAttribute" {
  94. Count: 1
  95. PropertyTemplate: "FbxNull" {
  96. Properties70: {
  97. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  98. P: "Size", "double", "Number", "",100
  99. P: "Look", "enum", "", "",1
  100. }
  101. }
  102. }
  103. ObjectType: "Model" {
  104. Count: 11
  105. PropertyTemplate: "FbxNode" {
  106. Properties70: {
  107. P: "QuaternionInterpolate", "enum", "", "",0
  108. P: "RotationOffset", "Vector3D", "Vector", "",0,0,0
  109. P: "RotationPivot", "Vector3D", "Vector", "",0,0,0
  110. P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0
  111. P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0
  112. P: "TranslationActive", "bool", "", "",0
  113. P: "TranslationMin", "Vector3D", "Vector", "",0,0,0
  114. P: "TranslationMax", "Vector3D", "Vector", "",0,0,0
  115. P: "TranslationMinX", "bool", "", "",0
  116. P: "TranslationMinY", "bool", "", "",0
  117. P: "TranslationMinZ", "bool", "", "",0
  118. P: "TranslationMaxX", "bool", "", "",0
  119. P: "TranslationMaxY", "bool", "", "",0
  120. P: "TranslationMaxZ", "bool", "", "",0
  121. P: "RotationOrder", "enum", "", "",0
  122. P: "RotationSpaceForLimitOnly", "bool", "", "",0
  123. P: "RotationStiffnessX", "double", "Number", "",0
  124. P: "RotationStiffnessY", "double", "Number", "",0
  125. P: "RotationStiffnessZ", "double", "Number", "",0
  126. P: "AxisLen", "double", "Number", "",10
  127. P: "PreRotation", "Vector3D", "Vector", "",0,0,0
  128. P: "PostRotation", "Vector3D", "Vector", "",0,0,0
  129. P: "RotationActive", "bool", "", "",0
  130. P: "RotationMin", "Vector3D", "Vector", "",0,0,0
  131. P: "RotationMax", "Vector3D", "Vector", "",0,0,0
  132. P: "RotationMinX", "bool", "", "",0
  133. P: "RotationMinY", "bool", "", "",0
  134. P: "RotationMinZ", "bool", "", "",0
  135. P: "RotationMaxX", "bool", "", "",0
  136. P: "RotationMaxY", "bool", "", "",0
  137. P: "RotationMaxZ", "bool", "", "",0
  138. P: "InheritType", "enum", "", "",0
  139. P: "ScalingActive", "bool", "", "",0
  140. P: "ScalingMin", "Vector3D", "Vector", "",0,0,0
  141. P: "ScalingMax", "Vector3D", "Vector", "",1,1,1
  142. P: "ScalingMinX", "bool", "", "",0
  143. P: "ScalingMinY", "bool", "", "",0
  144. P: "ScalingMinZ", "bool", "", "",0
  145. P: "ScalingMaxX", "bool", "", "",0
  146. P: "ScalingMaxY", "bool", "", "",0
  147. P: "ScalingMaxZ", "bool", "", "",0
  148. P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0
  149. P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0
  150. P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1
  151. P: "MinDampRangeX", "double", "Number", "",0
  152. P: "MinDampRangeY", "double", "Number", "",0
  153. P: "MinDampRangeZ", "double", "Number", "",0
  154. P: "MaxDampRangeX", "double", "Number", "",0
  155. P: "MaxDampRangeY", "double", "Number", "",0
  156. P: "MaxDampRangeZ", "double", "Number", "",0
  157. P: "MinDampStrengthX", "double", "Number", "",0
  158. P: "MinDampStrengthY", "double", "Number", "",0
  159. P: "MinDampStrengthZ", "double", "Number", "",0
  160. P: "MaxDampStrengthX", "double", "Number", "",0
  161. P: "MaxDampStrengthY", "double", "Number", "",0
  162. P: "MaxDampStrengthZ", "double", "Number", "",0
  163. P: "PreferedAngleX", "double", "Number", "",0
  164. P: "PreferedAngleY", "double", "Number", "",0
  165. P: "PreferedAngleZ", "double", "Number", "",0
  166. P: "LookAtProperty", "object", "", ""
  167. P: "UpVectorProperty", "object", "", ""
  168. P: "Show", "bool", "", "",1
  169. P: "NegativePercentShapeSupport", "bool", "", "",1
  170. P: "DefaultAttributeIndex", "int", "Integer", "",-1
  171. P: "Freeze", "bool", "", "",0
  172. P: "LODBox", "bool", "", "",0
  173. P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0
  174. P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0
  175. P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1
  176. P: "Visibility", "Visibility", "", "A",1
  177. P: "Visibility Inheritance", "Visibility Inheritance", "", "",1
  178. }
  179. }
  180. }
  181. ObjectType: "Material" {
  182. Count: 1
  183. PropertyTemplate: "FbxSurfacePhong" {
  184. Properties70: {
  185. P: "ShadingModel", "KString", "", "", "Phong"
  186. P: "MultiLayer", "bool", "", "",0
  187. P: "EmissiveColor", "Color", "", "A",0,0,0
  188. P: "EmissiveFactor", "Number", "", "A",1
  189. P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2
  190. P: "AmbientFactor", "Number", "", "A",1
  191. P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8
  192. P: "DiffuseFactor", "Number", "", "A",1
  193. P: "Bump", "Vector3D", "Vector", "",0,0,0
  194. P: "NormalMap", "Vector3D", "Vector", "",0,0,0
  195. P: "BumpFactor", "double", "Number", "",1
  196. P: "TransparentColor", "Color", "", "A",0,0,0
  197. P: "TransparencyFactor", "Number", "", "A",0
  198. P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0
  199. P: "DisplacementFactor", "double", "Number", "",1
  200. P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0
  201. P: "VectorDisplacementFactor", "double", "Number", "",1
  202. P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2
  203. P: "SpecularFactor", "Number", "", "A",1
  204. P: "ShininessExponent", "Number", "", "A",20
  205. P: "ReflectionColor", "Color", "", "A",0,0,0
  206. P: "ReflectionFactor", "Number", "", "A",1
  207. }
  208. }
  209. }
  210. ObjectType: "Texture" {
  211. Count: 2
  212. PropertyTemplate: "FbxFileTexture" {
  213. Properties70: {
  214. P: "TextureTypeUse", "enum", "", "",0
  215. P: "Texture alpha", "Number", "", "A",1
  216. P: "CurrentMappingType", "enum", "", "",0
  217. P: "WrapModeU", "enum", "", "",0
  218. P: "WrapModeV", "enum", "", "",0
  219. P: "UVSwap", "bool", "", "",0
  220. P: "PremultiplyAlpha", "bool", "", "",1
  221. P: "Translation", "Vector", "", "A",0,0,0
  222. P: "Rotation", "Vector", "", "A",0,0,0
  223. P: "Scaling", "Vector", "", "A",1,1,1
  224. P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0
  225. P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0
  226. P: "CurrentTextureBlendMode", "enum", "", "",1
  227. P: "UVSet", "KString", "", "", "default"
  228. P: "UseMaterial", "bool", "", "",0
  229. P: "UseMipMap", "bool", "", "",0
  230. }
  231. }
  232. }
  233. ObjectType: "Video" {
  234. Count: 2
  235. PropertyTemplate: "FbxVideo" {
  236. Properties70: {
  237. P: "ImageSequence", "bool", "", "",0
  238. P: "ImageSequenceOffset", "int", "Integer", "",0
  239. P: "FrameRate", "double", "Number", "",0
  240. P: "LastFrame", "int", "Integer", "",0
  241. P: "Width", "int", "Integer", "",0
  242. P: "Height", "int", "Integer", "",0
  243. P: "Path", "KString", "XRefUrl", "", ""
  244. P: "StartFrame", "int", "Integer", "",0
  245. P: "StopFrame", "int", "Integer", "",0
  246. P: "PlaySpeed", "double", "Number", "",0
  247. P: "Offset", "KTime", "Time", "",0
  248. P: "InterlaceMode", "enum", "", "",0
  249. P: "FreeRunning", "bool", "", "",0
  250. P: "Loop", "bool", "", "",0
  251. P: "AccessMode", "enum", "", "",0
  252. }
  253. }
  254. }
  255. ObjectType: "AnimationStack" {
  256. Count: 1
  257. PropertyTemplate: "FbxAnimStack" {
  258. Properties70: {
  259. P: "Description", "KString", "", "", ""
  260. P: "LocalStart", "KTime", "Time", "",0
  261. P: "LocalStop", "KTime", "Time", "",0
  262. P: "ReferenceStart", "KTime", "Time", "",0
  263. P: "ReferenceStop", "KTime", "Time", "",0
  264. }
  265. }
  266. }
  267. ObjectType: "AnimationLayer" {
  268. Count: 1
  269. PropertyTemplate: "FbxAnimLayer" {
  270. Properties70: {
  271. P: "Weight", "Number", "", "A",100
  272. P: "Mute", "bool", "", "",0
  273. P: "Solo", "bool", "", "",0
  274. P: "Lock", "bool", "", "",0
  275. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  276. P: "BlendMode", "enum", "", "",0
  277. P: "RotationAccumulationMode", "enum", "", "",0
  278. P: "ScaleAccumulationMode", "enum", "", "",0
  279. P: "BlendModeBypass", "ULongLong", "", "",0
  280. }
  281. }
  282. }
  283. ObjectType: "Geometry" {
  284. Count: 10
  285. PropertyTemplate: "FbxMesh" {
  286. Properties70: {
  287. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  288. P: "BBoxMin", "Vector3D", "Vector", "",0,0,0
  289. P: "BBoxMax", "Vector3D", "Vector", "",0,0,0
  290. P: "Primary Visibility", "bool", "", "",1
  291. P: "Casts Shadows", "bool", "", "",1
  292. P: "Receive Shadows", "bool", "", "",1
  293. }
  294. }
  295. }
  296. ObjectType: "CollectionExclusive" {
  297. Count: 1
  298. PropertyTemplate: "FbxDisplayLayer" {
  299. Properties70: {
  300. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  301. P: "Show", "bool", "", "",1
  302. P: "Freeze", "bool", "", "",0
  303. P: "LODBox", "bool", "", "",0
  304. }
  305. }
  306. }
  307. ObjectType: "AnimationCurve" {
  308. Count: 69
  309. }
  310. ObjectType: "AnimationCurveNode" {
  311. Count: 23
  312. PropertyTemplate: "FbxAnimCurveNode" {
  313. Properties70: {
  314. P: "d", "Compound", "", ""
  315. }
  316. }
  317. }
  318. }
  319. ; Object properties
  320. ;------------------------------------------------------------------
  321. Objects: {
  322. NodeAttribute: 86593568, "NodeAttribute::", "Null" {
  323. Properties70: {
  324. P: "Look", "enum", "", "",0
  325. }
  326. TypeFlags: "Null"
  327. }
  328. Geometry: 86434848, "Geometry::", "Mesh" {
  329. Properties70: {
  330. P: "Color", "ColorRGB", "Color", "",0,0,0
  331. }
  332. Vertices: *480 {
  333. a: -12.4304065704346,-29.9597072601318,-21.1175994873047,-17.2964401245117,-29.9582748413086,-6.91423797607422,-17.2957763671875,-29.9571266174316,4.9024829864502,-18.784008026123,-28.4702091217041,-6.91993713378906,-18.7836952209473,-28.4697322845459,1.51968765258789,-12.4040145874023,-26.4017734527588,-25.5209121704102,-13.9182891845703,-28.4721145629883,-21.1218719482422,-13.8918981552124,-24.9141826629639,-25.5237655639648,-9.09450340270996,-18.7805480957031,1.51883316040039,-9.09450149536133,-18.7805480957031,-6.92079544067383,-6.66060733795166,-21.2144393920898,-21.1221580505371,-8.42637538909912,-19.4486656188965,-25.5237655639648,-29.95969581604,12.4303960800171,-21.1175994873047,-29.9582633972168,17.2964286804199,-6.91423797607422,-28.4701976776123,18.7839965820313,-6.91993713378906,-28.4697208404541,18.7836837768555,1.51968765258789,-26.401762008667,12.4040040969849,-25.5209121704102,-28.4721031188965,13.9182786941528,-21.1218719482422,-24.9141712188721,13.8918876647949,-25.5237655639648,-18.7805366516113,9.09449291229248,1.51883316040039,-18.7805366516113,9.09449100494385,-6.92079544067383,-21.214427947998,6.66059637069702,-21.1221580505371,-19.4486541748047,8.42636489868164,-25.5237655639648,-28.6946487426758,-16.5668678283691,6.47702598571777,-29.9571208953857,-17.2957763671875,4.9024829864502,-28.4697284698486,-18.7836971282959,1.51968812942505,-29.9596996307373,-12.4304075241089,-21.1175975799561,-28.4721088409424,-13.9182901382446,-21.1218719482422,-24.914176940918,-13.8919010162354,-25.5237636566162,-26.4017658233643,-12.404016494751,-25.5209121704102,-28.4702053070068,-18.7840099334717,-6.9199390411377,-18.7805404663086,-9.09450626373291,-6.92079448699951,-21.2144298553467,-6.66061115264893,-21.1221580505371,-19.448657989502,-8.4263801574707,-25.5237636566162,-18.7805404663086,-9.09450817108154,1.51883292198181,16.5668792724609,-28.6946468353271,6.47702598571777,17.2957706451416,-29.9571304321289,4.9024829864502,18.7836894989014,-28.4697360992432,1.51968812942505,17.2964344024658,-29.9582786560059,-6.91423845291138,
  334. 12.4303998947144,-29.9597091674805,-21.1175975799561,13.9182834625244,-28.4721183776855,-21.1218719482422,13.8918933868408,-24.9141864776611,-25.5237636566162,12.4040088653564,-26.4017753601074,-25.5209121704102,18.7840023040771,-28.4702129364014,-6.9199390411377,9.09449768066406,-18.7805500030518,-6.92079448699951,6.66060304641724,-21.2144412994385,-21.1221580505371,8.42637157440186,-19.4486675262451,-25.5237636566162,9.0944995880127,-18.7805500030518,1.51883292198181,-29.9571151733398,17.2957649230957,4.9024829864502,12.4304056167603,29.9596843719482,-21.1175994873047,17.2964401245117,29.958251953125,-6.91423797607422,17.2957763671875,29.957103729248,4.9024829864502,18.784008026123,28.4701862335205,-6.91993713378906,18.7836952209473,28.4697093963623,1.51968765258789,12.404013633728,26.4017505645752,-25.5209121704102,13.918288230896,28.4720916748047,-21.1218719482422,13.8918972015381,24.9141597747803,-25.5237655639648,9.09450244903564,18.7805252075195,1.51883316040039,9.09450054168701,18.7805252075195,-6.92079544067383,6.6606068611145,21.2144165039063,-21.1221580505371,8.4263744354248,19.4486427307129,-25.5237655639648,29.95969581604,-12.4304180145264,-21.1175994873047,29.9582633972168,-17.2964515686035,-6.91423797607422,28.6946449279785,-16.5668716430664,6.47702598571777,28.4701976776123,-18.7840194702148,-6.91993713378906,28.4697208404541,-18.7837066650391,1.51968765258789,26.401762008667,-12.4040260314941,-25.5209121704102,28.4721031188965,-13.9183006286621,-21.1218719482422,24.9141712188721,-13.8919095993042,-25.5237655639648,18.7805366516113,-9.09451484680176,1.51883316040039,18.7805366516113,-9.09451293945313,-6.92079544067383,21.214427947998,-6.66061878204346,-21.1221580505371,19.4486541748047,-8.42638683319092,-25.5237655639648,29.9571208953857,17.2957534790039,4.9024829864502,28.4697284698486,18.7836742401123,1.51968812942505,29.9582691192627,17.2964172363281,-6.91423845291138,29.9596996307373,12.4303855895996,-21.1175975799561,28.4721088409424,13.9182682037354,-21.1218719482422,24.914176940918,13.8918790817261,-25.5237636566162,
  335. 26.4017658233643,12.4039945602417,-25.5209121704102,28.4702053070068,18.7839870452881,-6.9199390411377,18.7805404663086,9.09448432922363,-6.92079448699951,21.2144298553467,6.66058874130249,-21.1221580505371,19.448657989502,8.42635822296143,-25.5237636566162,18.7805404663086,9.09448623657227,1.51883292198181,-16.566858291626,28.6946258544922,6.47702503204346,-17.2957706451416,29.9571075439453,4.9024829864502,-18.7836894989014,28.4697132110596,1.51968812942505,-12.4304008483887,29.9596862792969,-21.1175975799561,-13.9182844161987,28.472095489502,-21.1218719482422,-13.8918943405151,24.9141635894775,-25.5237636566162,-12.4040098190308,26.4017524719238,-25.5209121704102,-18.7840023040771,28.4701900482178,-6.9199390411377,-9.09449863433838,18.7805271148682,-6.92079448699951,-6.66060352325439,21.2144184112549,-21.1221580505371,-8.42637252807617,19.4486446380615,-25.5237636566162,-9.09450054168701,18.7805271148682,1.51883292198181,29.9571151733398,-17.2957878112793,4.9024829864502,-31.6633014678955,-6.95487546920776,-2.78791809082031,-32.6585998535156,-7.32734966278076,-1.06401634216309,-34.6491928100586,-8.07229614257813,-1.06401634216309,-35.6444931030273,-8.44477081298828,-2.78791809082031,-34.6491928100586,-8.07229614257813,-4.51181983947754,-32.6585998535156,-7.32734966278076,-4.51181983947754,-31.6633033752441,6.95481824874878,-2.78791809082031,-32.6585998535156,7.32729053497314,-1.06401634216309,-34.6491928100586,8.07223510742188,-1.06401634216309,-35.6444892883301,8.4447078704834,-2.78791809082031,-34.6491928100586,8.07223510742188,-4.51181983947754,-32.6585998535156,7.32729053497314,-4.51181983947754,-29.9582633972168,-7.98788070678711,-2.78791809082031,-29.9582633972168,-8.9633617401123,-1.06401634216309,-29.9582614898682,-10.9143218994141,-1.06401634216309,-29.9582614898682,-11.8898029327393,-2.78791809082031,-29.9582614898682,-10.9143218994141,-4.51181983947754,-29.9582633972168,-8.9633617401123,-4.51181983947754,-29.9582672119141,7.98782300949097,-2.78791809082031,-29.9582672119141,8.96330261230469,-1.06401634216309,
  336. -29.9582691192627,10.9142627716064,-1.06401634216309,-29.9582672119141,11.8897457122803,-2.78791856765747,-29.9582691192627,10.9142627716064,-4.51181983947754,-29.9582672119141,8.96330261230469,-4.5118203163147,-17.2964344024658,29.9582557678223,-6.91423845291138,-29.9582691192627,-17.2964401245117,-6.91423845291138,-28.6946315765381,16.5668640136719,6.47702598571777,-16.5668830871582,-28.6946449279785,6.47702598571777,16.5668601989746,28.6946239471436,6.47702598571777,28.6946334838867,16.566858291626,6.47702598571777,-16.5668392181396,28.6946258544922,12.2806358337402,-28.6946277618408,16.5668563842773,12.2806358337402,-28.694652557373,-16.5668525695801,12.2806358337402,-16.5668869018555,-28.6946468353271,12.2806358337402,16.566837310791,28.6946277618408,12.2806358337402,28.6946258544922,16.5668563842773,12.2806358337402,28.694652557373,-16.5668544769287,12.2806358337402,16.5668869018555,-28.6946468353271,12.2806358337402,31.6621513366699,6.95481538772583,-2.78791809082031,31.6621475219727,-6.95487451553345,-2.78791809082031,32.6574478149414,-7.3273458480835,-1.06401634216309,32.6574478149414,7.32728862762451,-1.06401634216309,34.6480369567871,-8.07228851318359,-1.06401634216309,34.6480445861816,8.07223510742188,-1.06401634216309,35.6433372497559,-8.44476318359375,-2.78791809082031,35.6433410644531,8.4447078704834,-2.78791809082031,34.6480369567871,-8.07228851318359,-4.51181983947754,34.6480445861816,8.07223510742188,-4.51181983947754,32.6574478149414,-7.3273458480835,-4.51181983947754,32.6574478149414,7.32728862762451,-4.51181983947754,29.9571113586426,-7.98787927627563,-2.78791809082031,29.9571113586426,-8.96335601806641,-1.06401634216309,29.9571151733398,-10.9143161773682,-1.06401634216309,29.9571113586426,-11.889799118042,-2.78791856765747,29.9571151733398,-10.9143161773682,-4.51181983947754,29.9571113586426,-8.96335601806641,-4.5118203163147,29.9571113586426,7.98781967163086,-2.78791809082031,29.9571113586426,8.96330070495605,-1.06401634216309,29.9571113586426,10.9142589569092,-1.06401634216309,29.9571113586426,11.889741897583,-2.78791809082031,
  337. 29.9571113586426,10.9142589569092,-4.51181983947754,29.9571113586426,8.96330070495605,-4.51181983947754
  338. }
  339. PolygonVertexIndex: *568 {
  340. a: 2,4,3,-2,3,6,0,-2,6,7,5,-1,8,9,3,-5,9,10,6,-4,25,34,8,-5,6,10,11,-8,11,46,41,-8,11,33,22,95,60,83,72,-47,10,9,31,-33,9,8,34,-32,48,15,14,-14,12,16,29,-27,14,17,12,-14,17,18,16,-13,24,23,124,-49,16,18,28,-30,19,20,14,-16,20,21,17,-15,17,21,22,-19,24,2,125,-24,24,123,30,-26,30,123,26,-28,27,26,29,-29,34,25,30,-32,31,30,27,-33,24,25,4,-3,27,28,33,-33,33,28,18,-23,33,11,10,-33,37,47,69,-66,36,38,43,-38,39,0,5,-43,43,38,39,-41,40,39,42,-42,36,35,125,-3,42,5,7,-42,47,37,43,-45,44,43,40,-46,40,41,46,-46,19,15,87,-97,22,21,94,-96,21,20,93,-95,20,19,96,-94,45,46,72,-72,44,45,71,-71,47,44,70,-70,24,48,13,-124,2,1,38,-37,51,53,52,-51,52,55,49,-51,55,56,54,-50,57,58,52,-54,58,59,55,-53,74,84,57,-54,55,59,60,-57,60,95,90,-57,59,58,81,-83,58,57,84,-82,61,76,75,-63,97,65,64,-63,61,66,79,-77,64,67,61,-63,67,68,66,-62,73,127,63,-98,66,68,78,-80,69,70,64,-66,70,71,67,-65,67,71,72,-69,73,51,126,-128,73,75,80,-75,80,75,76,-78,77,76,79,-79,84,74,80,-82,81,80,77,-83,73,74,53,-52,77,78,83,-83,83,78,68,-73,83,60,59,-83,86,87,15,-49,86,122,92,-88,88,49,54,-92,92,122,88,-90,89,88,91,-91,86,85,126,-52,91,54,56,-91,96,87,92,-94,93,92,89,-95,89,90,95,-95,97,63,35,-37,65,97,36,-38,85,86,48,-125,75,73,97,-63,86,51,50,-123,98,104,105,-100,99,105,106,-101,100,106,107,-102,101,107,108,-103,102,108,109,-104,103,109,104,-99,104,116,117,-106,105,117,118,-107,106,118,119,-108,107,119,120,-109,108,120,121,-110,109,121,116,-105,110,98,99,-112,111,99,100,-113,112,100,101,-114,113,101,102,-115,114,102,103,-116,115,103,98,-111,50,49,88,-123,1,0,39,-39,13,12,26,-124,128,132,126,-86,129,128,85,-125,130,129,124,-24,131,130,23,-126,135,131,125,-36,132,133,127,-127,133,134,63,-128,134,135,35,-64,136,137,138,-140,139,138,140,-142,141,140,142,-144,143,142,144,-146,145,144,146,-148,147,146,137,-137,137,148,149,-139,138,149,150,-141,140,150,151,-143,142,151,152,-145,144,152,153,-147,146,153,148,-138,154,136,139,-156,155,139,141,-157,156,141,143,-158,157,143,145,-159,158,145,147,-160,159,147,136,-155
  341. }
  342. Edges: *300 {
  343. a: 0,1,2,3,4,5,6,8,9,10,12,13,15,16,17,20,21,23,25,26,28,29,30,32,33,34,35,36,37,38,41,42,43,46,48,49,50,51,52,53,54,55,56,57,58,60,61,64,65,66,67,69,70,72,73,75,76,77,81,82,84,85,86,88,89,90,91,93,94,95,99,102,106,113,114,124,125,126,127,128,129,130,131,132,134,135,137,138,139,142,143,144,145,147,154,155,158,159,162,165,166,167,169,170,173,174,178,182,183,186,187,190,194,197,200,201,202,203,204,205,206,208,209,210,212,213,215,216,217,220,221,223,225,226,229,230,233,234,235,238,240,241,242,243,244,245,246,247,248,249,250,252,253,256,257,260,261,262,263,265,266,269,273,278,280,281,282,284,285,286,287,290,291,295,298,302,309,310,320,323,324,325,326,328,330,331,333,334,335,338,339,340,341,343,350,354,361,363,371,378,380,381,382,383,385,386,387,389,390,391,393,394,395,397,398,399,401,403,404,405,406,409,410,413,414,417,418,421,422,425,428,430,431,434,435,438,439,442,443,446,447,451,464,465,467,468,471,472,475,476,479,480,483,484,485,488,489,492,496,497,498,499,501,502,503,505,506,507,509,510,511,513,514,515,517,519,520,521,522,525,526,529,530,533,534,537,538,541,544,546,547,550,551,554,555,558,559,562,563,567
  344. }
  345. GeometryVersion: 124
  346. LayerElementNormal: 0 {
  347. Version: 101
  348. Name: ""
  349. MappingInformationType: "ByPolygonVertex"
  350. ReferenceInformationType: "Direct"
  351. Normals: *1704 {
  352. a: -0.707123994827271,-0.707089483737946,0.000103243539342657,-0.70713347196579,-0.707080066204071,9.95033406070434e-005,-0.702731847763062,-0.703023076057434,-0.10920824855566,-0.701263785362244,-0.701615929603577,-0.126348882913589,-0.702731847763062,-0.703023076057434,-0.10920824855566,-0.653819799423218,-0.654875755310059,-0.379021674394608,-0.659583270549774,-0.660594582557678,-0.358559221029282,-0.701263785362244,-0.701615929603577,-0.126348882913589,-0.653819799423218,-0.654875755310059,-0.379021674394608,-0.611995041370392,-0.613310813903809,-0.499311476945877,-0.611995041370392,-0.613310813903809,-0.499311476945877,-0.659583270549774,-0.660594582557678,-0.358559221029282,-0.707109451293945,0.707104027271271,-6.94348727847682e-006,-0.702121317386627,0.702107608318329,-0.118619218468666,-0.702885627746582,0.702872514724731,-0.109187453985214,-0.70710951089859,0.707104086875916,-6.94348864271888e-006,-0.702121317386627,0.702107608318329,-0.118619218468666,-0.700276255607605,0.700270712375641,0.138687700033188,-0.70640367269516,0.706393837928772,0.0447411499917507,-0.702885627746582,0.702872514724731,-0.109187453985214,-4.41197516920511e-005,-4.41074298578314e-005,-0.999999940395355,-4.41197516920511e-005,-4.41074334958103e-005,-1,-4.41197553300299e-005,-4.41074334958103e-005,-1,-4.41197516920511e-005,-4.41074371337891e-005,-1,-0.70640367269516,0.706393837928772,0.0447411499917507,-0.700276255607605,0.700270712375641,0.138687700033188,-0.615021049976349,0.61503267288208,0.493440747261047,-0.615021109580994,0.61503279209137,0.493440836668015,8.54613162459827e-008,-7.45604224655682e-015,-1,8.54613162459827e-008,-7.45604224655682e-015,-1,6.07625310067306e-008,-0.000958684540819377,-0.999999523162842,6.07625167958759e-008,-0.000958684890065342,-0.999999523162842,1.21332109563809e-017,1.32348898008484e-023,-1,-7.44391188771919e-015,-4.27306758865598e-008,-1,-7.44391104068624e-015,-4.27306652284187e-008,-1,-4.27306616757051e-008,3.72802112327841e-015,-1,-4.27306616757051e-008,3.72802112327841e-015,-1,
  353. 7.46817768759213e-015,4.27306758865598e-008,-1,7.46817684055918e-015,4.27306652284187e-008,-1,1.21332109563809e-017,1.32348898008484e-023,-1,-0.70710688829422,-0.707106649875641,-1.9981359855592e-007,-0.70710688829422,-0.707106649875641,-1.99813584345065e-007,-0.707106828689575,-0.707106649875641,-1.99813584345065e-007,-0.70710688829422,-0.707106649875641,-1.9981359855592e-007,-0.70710688829422,-0.707106649875641,-1.567361493926e-007,-0.707106947898865,-0.707106709480286,-1.56736163603455e-007,-0.707106947898865,-0.707106709480286,-1.56736163603455e-007,-0.70710700750351,-0.707106649875641,-1.56736163603455e-007,-0.70708954334259,0.707123994827271,0.000102989106380846,-0.707080125808716,0.70713347196579,9.93246503639966e-005,-0.703023016452789,0.702731907367706,-0.109208226203918,-0.701615929603577,0.701263785362244,-0.126348853111267,-0.953657388687134,1.3870450743525e-007,-0.300894469022751,-0.777819335460663,9.49671417060927e-008,-0.628487944602966,-0.777819335460663,9.49671417060927e-008,-0.628487944602966,-0.953657448291779,1.38704521646105e-007,-0.300894439220428,-0.703023016452789,0.702731907367706,-0.109208226203918,-0.654875755310059,0.653819799423218,-0.379021644592285,-0.660594582557678,0.659583270549774,-0.358559191226959,-0.701615929603577,0.701263785362244,-0.126348853111267,-0.654875755310059,0.653819799423218,-0.379021644592285,-0.413984954357147,0.412187337875366,-0.811614394187927,-0.328477740287781,0.32658714056015,-0.886252284049988,-0.660594582557678,0.659583270549774,-0.358559191226959,-0.674928545951843,-0.293465465307236,0.677015066146851,-0.689713001251221,-0.262841612100601,0.674692690372467,-0.689711689949036,0.262842237949371,0.674693882465363,-0.674928069114685,0.293463945388794,0.677016198635101,-0.328477740287781,0.32658714056015,-0.886252284049988,-0.413984954357147,0.412187337875366,-0.811614394187927,-0.413985520601273,-0.412187308073044,-0.811614274978638,-0.328477829694748,-0.326586753129959,-0.886252403259277,0.707104027271271,0.707109451293945,-6.95173412168515e-006,0.702107608318329,0.702121317386627,-0.118619203567505,
  354. 0.702872514724731,0.702885627746582,-0.109187431633472,0.707104027271271,0.707109451293945,-6.9517345764325e-006,0.702107608318329,0.702121317386627,-0.118619203567505,0.700270712375641,0.700276255607605,0.138687714934349,0.706393778324127,0.706403613090515,0.0447411984205246,0.702872514724731,0.702885627746582,-0.109187431633472,0.706393778324127,0.706403613090515,0.0447411984205246,0.700270712375641,0.700276255607605,0.138687714934349,0.61503279209137,0.615021049976349,0.493440836668015,0.615032851696014,0.615021049976349,0.493440836668015,-0.674928545951843,-0.293465465307236,0.677015066146851,-0.293464094400406,-0.674928605556488,0.677015602588654,-0.26284322142601,-0.689711570739746,0.674693465232849,-0.689713001251221,-0.262841612100601,0.674692690372467,-0.707090020179749,-0.707123577594757,0.000103242549812421,-0.701616883277893,-0.701262950897217,-0.126348778605461,-0.703023850917816,-0.702731013298035,-0.109208233654499,-0.707080721855164,-0.707132816314697,9.95018053799868e-005,-0.703023850917816,-0.702731013298035,-0.109208233654499,-0.701616883277893,-0.701262950897217,-0.126348778605461,-0.660595297813416,-0.659582614898682,-0.358559101819992,-0.654876351356506,-0.653819143772125,-0.379021733999252,-0.654876351356506,-0.653819143772125,-0.379021733999252,-0.660595297813416,-0.659582614898682,-0.358559101819992,-0.328477829694748,-0.326586753129959,-0.886252403259277,-0.413985520601273,-0.412187308073044,-0.811614274978638,0.707103908061981,-0.707109689712524,-6.94348727847682e-006,0.707103908061981,-0.707109749317169,-6.94348773322417e-006,0.702872335910797,-0.702885866165161,-0.109187468886375,0.702107429504395,-0.702121615409851,-0.118619211018085,0.702107429504395,-0.702121615409851,-0.118619211018085,0.702872335910797,-0.702885866165161,-0.109187468886375,0.706393480300903,-0.706403851509094,0.0447412021458149,0.700270414352417,-0.700276494026184,0.138687774538994,-0.707090020179749,-0.707123577594757,0.000103242549812421,-0.707080721855164,-0.707132816314697,9.95018053799868e-005,-0.70713347196579,-0.707080066204071,9.95033406070434e-005,
  355. -0.707123994827271,-0.707089483737946,0.000103243539342657,0.706393480300903,-0.706403851509094,0.0447412021458149,0.615032434463501,-0.615021228790283,0.493441015481949,0.615032434463501,-0.615021288394928,0.493440985679626,0.700270414352417,-0.700276494026184,0.138687774538994,-7.44391188771919e-015,-4.27306758865598e-008,-1,-1.48999532872431e-014,-8.54613304568375e-008,-1,-1.48999532872431e-014,-8.54613304568375e-008,-1,-7.44391104068624e-015,-4.27306652284187e-008,-1,-0.707106828689575,-0.707106709480286,-6.94860091243754e-007,-0.70710688829422,-0.707106709480286,-6.94860091243754e-007,-0.70710688829422,-0.70710676908493,-6.94860091243754e-007,-0.707106828689575,-0.707106649875641,-6.94860091243754e-007,4.41074407717679e-005,-4.41197516920511e-005,-1,4.41074371337891e-005,-4.41197553300299e-005,-1,4.41074371337891e-005,-4.41197553300299e-005,-1,4.41074371337891e-005,-4.41197516920511e-005,-1,0.707123935222626,-0.70708954334259,0.000102967052953318,0.701263666152954,-0.701616227626801,-0.126348838210106,0.702731728553772,-0.703023254871368,-0.109208278357983,0.707133412361145,-0.707080125808716,9.93100693449378e-005,-7.25847328908458e-008,-0.953657388687134,-0.300894409418106,-7.25847399962731e-008,-0.953657448291779,-0.300894469022751,8.47020853456115e-009,-0.344974130392075,-0.938612222671509,8.47021563998851e-009,-0.34497407078743,-0.938612222671509,0.702731728553772,-0.703023254871368,-0.109208278357983,0.701263666152954,-0.701616227626801,-0.126348838210106,0.659582734107971,-0.660595118999481,-0.358559250831604,0.65381920337677,-0.654876232147217,-0.379021823406219,0.65381920337677,-0.654876232147217,-0.379021823406219,0.659582734107971,-0.660595118999481,-0.358559250831604,0.611994326114655,-0.613311231136322,-0.499311685562134,0.611994385719299,-0.613311290740967,-0.499311715364456,0.29346364736557,-0.674928605556488,0.677015900611877,0.262843132019043,-0.689711332321167,0.674693763256073,-0.26284322142601,-0.689711570739746,0.674693465232849,-0.293464094400406,-0.674928605556488,0.677015602588654,8.47021563998851e-009,-0.34497407078743,-0.938612222671509,
  356. 8.47020853456115e-009,-0.344974130392075,-0.938612222671509,6.07625167958759e-008,-0.000958684890065342,-0.999999523162842,6.07625310067306e-008,-0.000958684540819377,-0.999999523162842,0.70710951089859,0.707103967666626,-6.95173321219045e-006,0.707109570503235,0.707104027271271,-6.9517336669378e-006,0.702885746955872,0.702872455120087,-0.109187468886375,0.702121496200562,0.702107489109039,-0.118619203567505,0.702121496200562,0.702107489109039,-0.118619203567505,0.702885746955872,0.702872455120087,-0.109187468886375,0.706403732299805,0.706393659114838,0.0447412133216858,0.70027631521225,0.700270473957062,0.138687789440155,0.706403732299805,0.706393659114838,0.0447412133216858,0.615021049976349,0.615032494068146,0.493441015481949,0.615021109580994,0.615032494068146,0.493440985679626,0.70027631521225,0.700270473957062,0.138687789440155,-4.41074407717679e-005,4.41197516920511e-005,-1,-4.41074407717679e-005,4.41197516920511e-005,-1,-4.41074407717679e-005,4.41197516920511e-005,-1,-4.41074407717679e-005,4.41197516920511e-005,-1,-0.707106709480286,0.707106828689575,-8.26644111384667e-007,-0.707106649875641,0.70710676908493,-8.26644111384667e-007,-0.707106709480286,0.707106828689575,-8.26644111384667e-007,-0.70710676908493,0.70710688829422,-8.26644168228086e-007,-0.707106709480286,0.707106828689575,-1.80224063228707e-007,-0.707106709480286,0.707106828689575,-1.80224063228707e-007,-0.707106709480286,0.70710676908493,-1.80224063228707e-007,-0.707106709480286,0.707106828689575,-1.80224063228707e-007,-0.707106709480286,0.70710688829422,-1.64985479500501e-007,-0.70710676908493,0.70710688829422,-1.64985493711356e-007,-0.70710676908493,0.70710688829422,-1.64985493711356e-007,-0.70710676908493,0.70710688829422,-1.64985479500501e-007,0.70710676908493,-0.70710676908493,-8.6258501141856e-007,0.70710676908493,-0.70710676908493,-8.6258501141856e-007,0.707106709480286,-0.707106709480286,-8.6258501141856e-007,0.70710676908493,-0.70710676908493,-8.62585125105397e-007,0.707106709480286,-0.707106828689575,-1.52798648400676e-007,0.707106709480286,-0.70710688829422,-1.52798648400676e-007,
  357. 0.707106709480286,-0.70710688829422,-1.52798648400676e-007,0.707106709480286,-0.70710688829422,-1.52798648400676e-007,0.70710676908493,-0.70710688829422,-1.56736206236019e-007,0.70710676908493,-0.70710688829422,-1.56736206236019e-007,0.707106709480286,-0.70710688829422,-1.56736192025164e-007,0.70710676908493,-0.70710688829422,-1.56736206236019e-007,-1,1.65413609920506e-007,9.71694098552689e-005,-1,1.65413609920506e-007,9.71694098552689e-005,-1,1.63205086778362e-007,9.8764372523874e-005,-1,1.63205086778362e-007,9.87643797998317e-005,-1.10274960718471e-007,-0.999999940395355,9.71694025793113e-005,-1.04083611063288e-007,-1,9.87643579719588e-005,-1.04083596852433e-007,-1,9.87643579719588e-005,-1.10274960718471e-007,-0.999999940395355,9.71694025793113e-005,0.707123994827271,0.707089483737946,0.000103243539342657,0.70713347196579,0.707080066204071,9.95033406070434e-005,0.702731847763062,0.703023016452789,-0.109208256006241,0.701263844966888,0.701615989208221,-0.126348927617073,0.702731847763062,0.703023016452789,-0.109208256006241,0.653819799423218,0.654875755310059,-0.379021674394608,0.659583210945129,0.660594582557678,-0.358559250831604,0.701263844966888,0.701615989208221,-0.126348927617073,0.653819799423218,0.654875755310059,-0.379021674394608,0.412187337875366,0.413984954357147,-0.811614394187927,0.32658714056015,0.328477740287781,-0.886252284049988,0.659583210945129,0.660594582557678,-0.358559250831604,0.707109391689301,-0.70710414648056,-6.94348682372947e-006,0.702121317386627,-0.702107667922974,-0.118619218468666,0.702885568141937,-0.702872633934021,-0.109187439084053,0.707109451293945,-0.707104206085205,-6.94348818797152e-006,0.702121317386627,-0.702107667922974,-0.118619218468666,0.700276136398315,-0.700270712375641,0.138687670230865,0.706403613090515,-0.706393778324127,0.0447411462664604,0.702885568141937,-0.702872633934021,-0.109187439084053,4.41197516920511e-005,4.41074298578314e-005,-1,4.41197516920511e-005,4.41074334958103e-005,-1,4.41197516920511e-005,4.41074334958103e-005,-0.999999940395355,4.41197516920511e-005,4.41074371337891e-005,-1,
  358. 0.706403613090515,-0.706393778324127,0.0447411462664604,0.700276136398315,-0.700270712375641,0.138687670230865,0.615020990371704,-0.61503267288208,0.493440717458725,0.615021049976349,-0.615032732486725,0.49344077706337,-4.27306616757051e-008,3.72802112327841e-015,-1,-4.27306616757051e-008,3.72802112327841e-015,-1,-8.54613162459827e-008,7.45604139952387e-015,-1,-8.54613162459827e-008,7.45604224655682e-015,-1,0.70710688829422,0.707106709480286,-2.07649449635028e-007,0.707106828689575,0.707106649875641,-2.07649435424173e-007,0.707106828689575,0.707106709480286,-2.07649435424173e-007,0.70710688829422,0.707106709480286,-2.07649449635028e-007,0.707106828689575,0.707106828689575,-1.48486876128118e-007,0.70710676908493,0.70710676908493,-1.48486861917263e-007,0.70710676908493,0.70710676908493,-1.48486861917263e-007,0.707106828689575,0.70710676908493,-1.48486876128118e-007,0.953657388687134,-1.38703882157643e-007,-0.300894469022751,0.953657448291779,-1.38703882157643e-007,-0.300894439220428,1,-1.63204617820156e-007,9.87643797998317e-005,1,-1.63204603609302e-007,9.8764372523874e-005,0.70708954334259,-0.707123994827271,0.00010296607069904,0.707080125808716,-0.70713347196579,9.93085413938388e-005,0.703023016452789,-0.702731847763062,-0.10920824855566,0.701615929603577,-0.701263785362244,-0.126348882913589,0.953657388687134,-1.38703882157643e-007,-0.300894469022751,0.777819335460663,-9.49671417060927e-008,-0.628487944602966,0.777819335460663,-9.49671417060927e-008,-0.628487944602966,0.953657448291779,-1.38703882157643e-007,-0.300894439220428,0.703023016452789,-0.702731847763062,-0.10920824855566,0.654875755310059,-0.653819799423218,-0.379021674394608,0.660594582557678,-0.659583270549774,-0.358559191226959,0.701615929603577,-0.701263785362244,-0.126348882913589,0.654875755310059,-0.653819799423218,-0.379021674394608,0.413984954357147,-0.412187337875366,-0.811614394187927,0.328477740287781,-0.32658714056015,-0.886252284049988,0.660594582557678,-0.659583270549774,-0.358559191226959,0.674928367137909,0.293463230133057,0.677016258239746,
  359. 0.689711391925812,0.262842565774918,0.674694001674652,0.689712822437286,-0.262841045856476,0.674692988395691,0.674927830696106,-0.293466091156006,0.677015483379364,0.328477740287781,-0.32658714056015,-0.886252284049988,0.413984954357147,-0.412187337875366,-0.811614394187927,0.413985520601273,0.412187308073044,-0.811614274978638,0.328477829694748,0.326586753129959,-0.886252403259277,-0.707104027271271,-0.707109451293945,-6.9517345764325e-006,-0.702107608318329,-0.702121317386627,-0.118619203567505,-0.702872514724731,-0.702885627746582,-0.109187431633472,-0.707104086875916,-0.70710951089859,-6.9517354859272e-006,-0.702107608318329,-0.702121317386627,-0.118619203567505,-0.700270712375641,-0.700276255607605,0.13868772983551,-0.706393778324127,-0.706403613090515,0.0447411984205246,-0.702872514724731,-0.702885627746582,-0.109187431633472,-0.706393778324127,-0.706403613090515,0.0447411984205246,-0.700270712375641,-0.700276255607605,0.13868772983551,-0.615032732486725,-0.615021049976349,0.493440806865692,-0.615032732486725,-0.615021049976349,0.49344077706337,0.674928367137909,0.293463230133057,0.677016258239746,0.293465197086334,0.674927115440369,0.677016735076904,0.262840926647186,0.689711809158325,0.674694180488586,0.689711391925812,0.262842565774918,0.674694001674652,0.707090020179749,0.707123577594757,0.000103242549812421,0.701616823673248,0.701262950897217,-0.126348733901978,0.703023850917816,0.702731013298035,-0.109208203852177,0.707080721855164,0.707132816314697,9.95018053799868e-005,0.703023850917816,0.702731013298035,-0.109208203852177,0.701616823673248,0.701262950897217,-0.126348733901978,0.660595297813416,0.659582614898682,-0.35855907201767,0.654876351356506,0.653819143772125,-0.379021674394608,0.654876351356506,0.653819143772125,-0.379021674394608,0.660595297813416,0.659582614898682,-0.35855907201767,0.328477829694748,0.326586753129959,-0.886252403259277,0.413985520601273,0.412187308073044,-0.811614274978638,-0.707103848457336,0.707109749317169,-6.95173412168515e-006,-0.707103848457336,0.707109749317169,-6.95173412168515e-006,
  360. -0.702872276306152,0.702885866165161,-0.109187461435795,-0.70210736989975,0.702121675014496,-0.118619211018085,-0.70210736989975,0.702121675014496,-0.118619211018085,-0.702872276306152,0.702885866165161,-0.109187461435795,-0.706393539905548,0.706403851509094,0.0447412021458149,-0.700270414352417,0.700276494026184,0.138687774538994,0.707090020179749,0.707123577594757,0.000103242549812421,0.707080721855164,0.707132816314697,9.95018053799868e-005,0.70713347196579,0.707080066204071,9.95033406070434e-005,0.707123994827271,0.707089483737946,0.000103243539342657,-0.706393539905548,0.706403851509094,0.0447412021458149,-0.615032494068146,0.615021228790283,0.493441015481949,-0.615032494068146,0.615021228790283,0.493440985679626,-0.700270414352417,0.700276494026184,0.138687774538994,7.46817768759213e-015,4.27306758865598e-008,-1,1.4924219087116e-014,8.54613304568375e-008,-1,1.4924219087116e-014,8.54613304568375e-008,-1,7.46817684055918e-015,4.27306652284187e-008,-1,0.707106828689575,0.707106709480286,-6.70899396482127e-007,0.70710688829422,0.707106709480286,-6.70899396482127e-007,0.70710688829422,0.70710676908493,-6.70899396482127e-007,0.707106828689575,0.707106649875641,-6.70899396482127e-007,-0.707123935222626,0.70708954334259,0.000102990103187039,-0.707133412361145,0.707080125808716,9.93261783150956e-005,-0.707080125808716,0.70713347196579,9.93246503639966e-005,-0.70708954334259,0.707123994827271,0.000102989106380846,-0.707123935222626,0.70708954334259,0.000102990103187039,-0.701263666152954,0.701616287231445,-0.126348793506622,-0.702731609344482,0.703023254871368,-0.10920824855566,-0.707133412361145,0.707080125808716,9.93261783150956e-005,7.25847399962731e-008,0.953657388687134,-0.300894409418106,7.25847399962731e-008,0.953657448291779,-0.300894439220428,3.47647493015302e-008,0.777819335460663,-0.628487944602966,3.47647493015302e-008,0.777819395065308,-0.628487944602966,-0.702731609344482,0.703023254871368,-0.10920824855566,-0.701263666152954,0.701616287231445,-0.126348793506622,-0.659582674503326,0.660595118999481,-0.358559221029282,
  361. -0.65381920337677,0.654876232147217,-0.379021793603897,-0.65381920337677,0.654876232147217,-0.379021793603897,-0.659582674503326,0.660595118999481,-0.358559221029282,-0.326586693525314,0.328477829694748,-0.886252462863922,-0.412187188863754,0.41398549079895,-0.811614215373993,-0.293464690446854,0.674927294254303,0.677016735076904,-0.262841045856476,0.68971174955368,0.674694299697876,0.262840926647186,0.689711809158325,0.674694180488586,0.293465197086334,0.674927115440369,0.677016735076904,-0.326586693525314,0.328477829694748,-0.886252462863922,0.32658714056015,0.328477740287781,-0.886252284049988,0.412187337875366,0.413984954357147,-0.811614394187927,-0.412187188863754,0.41398549079895,-0.811614215373993,-0.707109570503235,-0.707103908061981,-6.95173412168515e-006,-0.70710963010788,-0.707103967666626,-6.9517345764325e-006,-0.702885806560516,-0.702872335910797,-0.109187468886375,-0.702121555805206,-0.702107489109039,-0.118619211018085,-0.702121555805206,-0.702107489109039,-0.118619211018085,-0.702885806560516,-0.702872335910797,-0.109187468886375,-0.706403791904449,-0.706393599510193,0.044741228222847,-0.700276374816895,-0.700270473957062,0.138687804341316,-0.706403791904449,-0.706393599510193,0.044741228222847,-0.615021049976349,-0.615032494068146,0.493441015481949,-0.615021109580994,-0.615032494068146,0.493440985679626,-0.700276374816895,-0.700270473957062,0.138687804341316,0.674927830696106,-0.293466091156006,0.677015483379364,0.689712822437286,-0.262841045856476,0.674692988395691,0.262843132019043,-0.689711332321167,0.674693763256073,0.29346364736557,-0.674928605556488,0.677015900611877,0.707080125808716,-0.70713347196579,9.93085413938388e-005,0.70708954334259,-0.707123994827271,0.00010296607069904,0.707123935222626,-0.70708954334259,0.000102967052953318,0.707133412361145,-0.707080125808716,9.93100693449378e-005,-0.262841045856476,0.68971174955368,0.674694299697876,-0.293464690446854,0.674927294254303,0.677016735076904,-0.674928069114685,0.293463945388794,0.677016198635101,-0.689711689949036,0.262842237949371,0.674693882465363,
  362. 1,-1.63204617820156e-007,9.87643797998317e-005,1,-1.65413609920506e-007,9.71694098552689e-005,1,-1.65413609920506e-007,9.71694098552689e-005,1,-1.63204603609302e-007,9.8764372523874e-005,1.10274960718471e-007,0.999999940395355,9.71694025793113e-005,1.10274960718471e-007,0.999999940395355,9.71694025793113e-005,1.04083596852433e-007,1,9.8764372523874e-005,1.04083611063288e-007,1,9.87643797998317e-005,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.308456540107727,-0.165541589260101,0.936723351478577,0.308456271886826,0.165541529655457,0.936723470687866,0.308456271886826,0.165541529655457,0.936723470687866,0.308456540107727,-0.165541589260101,0.936723351478577,-0.507036685943604,0.308346420526505,0.804882705211639,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.507036685943604,0.308346420526505,0.804882705211639,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.507036685943604,0.308346390724182,-0.804882705211639,-0.50703638792038,-0.308346599340439,-0.804882884025574,-0.50703638792038,-0.308346599340439,-0.804882884025574,-0.507036685943604,0.308346390724182,-0.804882705211639,0.308456510305405,-0.165541559457779,-0.936723351478577,0.308456242084503,0.165541514754295,-0.936723411083221,0.308456242084503,0.165541514754295,-0.936723411083221,0.308456510305405,-0.165541559457779,-0.936723351478577,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.518173396587372,-0.855275571346283,5.4311520614192e-008,0.208569690585136,-0.344256490468979,0.91541588306427,0.308456540107727,-0.165541589260101,0.936723351478577,0.308456540107727,-0.165541589260101,0.936723351478577,0.208569690585136,-0.344256490468979,0.91541588306427,
  363. -0.347303032875061,0.573242723941803,0.74214106798172,-0.507036685943604,0.308346420526505,0.804882705211639,-0.507036685943604,0.308346420526505,0.804882705211639,-0.347303032875061,0.573242723941803,0.74214106798172,-0.518174350261688,0.85527503490448,-2.52211034279526e-008,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.881126642227173,0.472880274057388,-1.06908892094967e-017,-0.518174350261688,0.85527503490448,-2.52211034279526e-008,-0.347303092479706,0.573242723941803,-0.742141127586365,-0.507036685943604,0.308346390724182,-0.804882705211639,-0.507036685943604,0.308346390724182,-0.804882705211639,-0.347303092479706,0.573242723941803,-0.742141127586365,0.208569571375847,-0.344256401062012,-0.91541588306427,0.308456510305405,-0.165541559457779,-0.936723351478577,0.308456510305405,-0.165541559457779,-0.936723351478577,0.208569571375847,-0.344256401062012,-0.91541588306427,0.518173396587372,-0.855275571346283,5.4311520614192e-008,0.85441118478775,-0.519597470760345,2.11524824322851e-008,0.518172979354858,0.855275869369507,6.28711321793331e-018,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.308456271886826,0.165541529655457,0.936723470687866,0.208569303154945,0.344256222248077,0.915416061878204,0.208569303154945,0.344256222248077,0.915416061878204,0.308456271886826,0.165541529655457,0.936723470687866,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.347302168607712,-0.573242902755737,0.742141425609589,-0.347302168607712,-0.573242902755737,0.742141425609589,-0.50703638792038,-0.308346599340439,0.804882884025574,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.518173217773438,-0.855275690555573,-6.28711611306546e-018,-0.518173217773438,-0.855275690555573,-6.28711611306546e-018,-0.881126582622528,-0.472880482673645,-1.06909007900253e-017,-0.50703638792038,-0.308346599340439,-0.804882884025574,-0.347302168607712,-0.573242902755737,-0.742141425609589,-0.347302168607712,-0.573242902755737,-0.742141425609589,-0.50703638792038,-0.308346599340439,-0.804882884025574,0.308456242084503,0.165541514754295,-0.936723411083221,
  364. 0.208569303154945,0.344256222248077,-0.915416061878204,0.208569303154945,0.344256222248077,-0.915416061878204,0.308456242084503,0.165541514754295,-0.936723411083221,0.854411125183105,0.519597589969635,1.03667568321066e-017,0.518172979354858,0.855275869369507,6.28711321793331e-018,1.04083596852433e-007,1,9.8764372523874e-005,7.25847399962731e-008,0.953657448291779,-0.300894439220428,7.25847399962731e-008,0.953657388687134,-0.300894409418106,1.04083611063288e-007,1,9.87643797998317e-005,-1.04083611063288e-007,-1,9.87643579719588e-005,-7.25847399962731e-008,-0.953657448291779,-0.300894469022751,-7.25847328908458e-008,-0.953657388687134,-0.300894409418106,-1.04083596852433e-007,-1,9.87643579719588e-005,-1,1.63205086778362e-007,9.8764372523874e-005,-0.953657388687134,1.3870450743525e-007,-0.300894469022751,-0.953657448291779,1.38704521646105e-007,-0.300894439220428,-1,1.63205086778362e-007,9.87643797998317e-005,-0.3826824426651,0.92387992143631,8.17681211628951e-007,0.382682353258133,0.92387992143631,7.55459041101858e-007,0.382684081792831,0.923879206180573,7.55464043322718e-007,-0.382683783769608,0.923879444599152,8.17685474885366e-007,-0.923879384994507,0.38268381357193,9.95545974546985e-007,-0.3826824426651,0.92387992143631,8.17681211628951e-007,-0.382683783769608,0.923879444599152,8.17685474885366e-007,-0.923879206180573,0.382684260606766,9.95547111415362e-007,-0.923880100250244,-0.382682174444199,1.8666449363991e-007,-0.923879384994507,0.38268381357193,9.95545974546985e-007,-0.923879206180573,0.382684260606766,9.95547111415362e-007,-0.923879504203796,-0.382683336734772,1.86665062074098e-007,-0.382683962583542,-0.923879325389862,9.77334124740992e-008,-0.923880100250244,-0.382682174444199,1.8666449363991e-007,-0.923879504203796,-0.382683336734772,1.86665062074098e-007,-0.382683724164963,-0.923879384994507,9.77332490492699e-008,0.382684022188187,-0.923879265785217,-2.67099053985476e-008,-0.382683962583542,-0.923879325389862,9.77334124740992e-008,-0.382683724164963,-0.923879384994507,9.77332490492699e-008,0.382683485746384,-0.923879504203796,-2.67101167850115e-008,
  365. 0.382682353258133,0.92387992143631,7.55459041101858e-007,0.923879265785217,0.382683962583542,9.33324713514594e-007,0.923879325389862,0.382683873176575,9.33324542984337e-007,0.382684081792831,0.923879206180573,7.55464043322718e-007,0.923879265785217,0.382683962583542,9.33324713514594e-007,0.923880100250244,-0.382682055234909,6.22211686618357e-008,0.923879444599152,-0.382683515548706,6.22213960355111e-008,0.923879325389862,0.382683873176575,9.33324542984337e-007,0.923880100250244,-0.382682055234909,6.22211686618357e-008,0.382684022188187,-0.923879265785217,-2.67099053985476e-008,0.382683485746384,-0.923879504203796,-2.67101167850115e-008,0.923879444599152,-0.382683515548706,6.22213960355111e-008,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,-0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.30845633149147,0.165541440248489,0.936723470687866,-0.308456212282181,-0.165541589260101,0.936723411083221,-0.308456212282181,-0.165541589260101,0.936723411083221,-0.30845633149147,0.165541440248489,0.936723470687866,0.507036447525024,-0.308346420526505,0.804882943630219,0.507036447525024,0.308346658945084,0.804882764816284,0.507036447525024,0.308346658945084,0.804882764816284,0.507036447525024,-0.308346420526505,0.804882943630219,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.507036447525024,-0.308346390724182,-0.804882943630219,0.507036507129669,0.308346658945084,-0.804882824420929,0.507036507129669,0.308346658945084,-0.804882824420929,0.507036447525024,-0.308346390724182,-0.804882943630219,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,
  366. -0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.518172800540924,0.855275869369507,3.6207683962175e-008,-0.208569765090942,0.344257116317749,0.915415644645691,-0.30845633149147,0.165541440248489,0.936723470687866,-0.30845633149147,0.165541440248489,0.936723470687866,-0.208569765090942,0.344257116317749,0.915415644645691,0.347302734851837,-0.573242545127869,0.742141425609589,0.507036447525024,-0.308346420526505,0.804882943630219,0.507036447525024,-0.308346420526505,0.804882943630219,0.347302734851837,-0.573242545127869,0.742141425609589,0.518174111843109,-0.85527515411377,-1.00884484766084e-007,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.881126642227173,-0.472880303859711,-4.42976819670093e-008,0.518174111843109,-0.85527515411377,-1.00884484766084e-007,0.347302734851837,-0.573242425918579,-0.742141425609589,0.507036447525024,-0.308346390724182,-0.804882943630219,0.507036447525024,-0.308346390724182,-0.804882943630219,0.347302734851837,-0.573242425918579,-0.742141425609589,-0.208569675683975,0.344257056713104,-0.915415644645691,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.308456301689148,0.165541425347328,-0.936723470687866,-0.208569675683975,0.344257056713104,-0.915415644645691,-0.518172800540924,0.855275869369507,3.6207683962175e-008,-0.854410707950592,0.519598305225372,1.05762403279641e-008,-0.518172681331635,-0.855275988578796,-6.28710949562056e-018,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,-0.308456212282181,-0.165541589260101,0.936723411083221,-0.208569332957268,-0.344256550073624,0.915415942668915,-0.208569332957268,-0.344256550073624,0.915415942668915,-0.308456212282181,-0.165541589260101,0.936723411083221,0.507036447525024,0.308346658945084,0.804882764816284,0.347302109003067,0.573242843151093,0.742141485214233,0.347302109003067,0.573242843151093,0.742141485214233,0.507036447525024,0.308346658945084,0.804882764816284,0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.518173217773438,0.855275750160217,6.28711611306546e-018,0.518173217773438,0.855275750160217,6.28711611306546e-018,
  367. 0.881126523017883,0.472880512475967,-1.47658942850626e-008,0.507036507129669,0.308346658945084,-0.804882824420929,0.347302109003067,0.573242843151093,-0.742141485214233,0.347302109003067,0.573242843151093,-0.742141485214233,0.507036507129669,0.308346658945084,-0.804882824420929,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.208569332957268,-0.344256550073624,-0.915415942668915,-0.208569332957268,-0.344256550073624,-0.915415942668915,-0.308456242084503,-0.165541604161263,-0.936723411083221,-0.854411005973816,-0.519597828388214,-1.0366756004926e-017,-0.518172681331635,-0.855275988578796,-6.28710949562056e-018
  368. }
  369. }
  370. LayerElementUV: 0 {
  371. Version: 101
  372. Name: "UVChannel_1"
  373. MappingInformationType: "ByPolygonVertex"
  374. ReferenceInformationType: "IndexToDirect"
  375. UV: *672 {
  376. a: 0.181927412748337,0.0357094891369343,0.558500826358795,0.985683619976044,0.54419070482254,0.962808787822723,0.544191837310791,0.905739009380341,0.558503150939941,0.905777633190155,0.567602515220642,0.807189166545868,0.0317741632461548,0.0357094891369343,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.436712741851807,0.985683619976044,0.0319335907697678,0.00151777500286698,0.181767970323563,0.00151777500286698,0.17524565756321,0.868498086929321,0.612018287181854,0.594574868679047,0.658956706523895,0.594574868679047,0.658951878547668,0.670786678791046,0.612014770507813,0.670783579349518,0.740226209163666,0.594575583934784,0.773370802402496,0.455723255872726,0.740224480628967,0.651659071445465,0.755192518234253,0.530724167823792,0.682847797870636,0.530724167823792,0.66467010974884,0.455723255872726,0.70146632194519,0.035709235817194,0.558500826358795,0.985683619976044,0.54419070482254,0.962808787822723,0.701625943183899,0.00151757942512631,0.544191837310791,0.905739009380341,0.558503150939941,0.905777633190155,0.851459681987762,0.00151757942512631,0.567602515220642,0.807189166545868,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.851619243621826,0.035709235817194,0.236896008253098,0.868498086929321,0.612018287181854,0.594574868679047,0.658956706523895,0.594574868679047,0.658951878547668,0.670786678791046,0.612014770507813,0.670783579349518,0.740226209163666,0.594575583934784,0.760182201862335,0.432476252317429,0.535832226276398,0.670781433582306,0.773370802402496,0.455721974372864,0.66467010974884,0.455721974372864,0.677859425544739,0.432476252317429,0.881004929542542,0.192864060401917,0.876602649688721,0.205053240060806,0.555933892726898,0.99530166387558,0.676482856273651,0.205053240060806,0.439278841018677,0.99530166387558,0.436710596084595,0.905777633190155,0.535833537578583,0.594572842121124,0.256889790296555,0.888492047786713,0.451021611690521,0.905739009380341,0.672080457210541,
  377. 0.192864060401917,0.672077000141144,0.1214939057827,0.451022326946259,0.962808787822723,0.413300454616547,0.80721789598465,0.427610754966736,0.807189166545868,0.155251741409302,0.888491988182068,0.768371522426605,0.594575583934784,0.768371284008026,0.637563288211823,0.488895505666733,0.670781433582306,0.488894432783127,0.594569623470306,0.755192518234253,0.575295805931091,0.134924247860909,0.828176558017731,0.682847797870636,0.575295805931091,0.677859425544739,0.432477027177811,0.760182201862335,0.432477027177811,0.211312532424927,0.192864060401917,0.20691043138504,0.20505353808403,0.436712741851807,0.985683619976044,0.00679089315235615,0.20505353808403,0.436710596084595,0.905777633190155,0.451021611690521,0.905739009380341,0.535832226276398,0.670781433582306,0.451022326946259,0.962808787822723,0.413300931453705,0.80721789598465,0.00238875858485699,0.192864060401917,0.427610754966736,0.807189166545868,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.558500826358795,0.985683619976044,0.13492426276207,0.766526162624359,0.535833537578583,0.594572842121124,0.612018287181854,0.594574868679047,0.612014770507813,0.670783579349518,0.488895505666733,0.670781433582306,0.66467010974884,0.455721288919449,0.175245776772499,0.726204574108124,0.677859425544739,0.432475358247757,0.760182201862335,0.432475358247757,0.773370802402496,0.455721288919449,0.236896127462387,0.726204633712769,0.277217537164688,0.766526281833649,0.881009042263031,0.1214939057827,0.277217507362366,0.828176617622375,0.109488591551781,0.751975357532501,0.114930436015129,0.746532440185547,0.114930421113968,0.848170459270477,0.109488561749458,0.842727482318878,0.740224480628967,0.651659071445465,0.768371522426605,0.594575583934784,0.251446843147278,0.893933892250061,0.407624900341034,0.651650965213776,0.160694643855095,0.893933892250061,0.407624036073685,0.594567000865936,0.488894432783127,0.594569623470306,0.407624900341034,0.651650965213776,0.612018287181854,0.594574868679047,0.658956706523895,0.594574868679047,0.155251979827881,0.706210672855377,
  378. 0.256890058517456,0.706210672855377,0.407624036073685,0.594567000865936,0.379478514194489,0.63755589723587,0.302653163671494,0.842727482318878,0.658951878547668,0.670786678791046,0.297211319208145,0.848170459270477,0.612014770507813,0.670783579349518,0.768371284008026,0.637563288211823,0.535832226276398,0.670781433582306,0.682847797870636,0.530722379684448,0.755192518234253,0.530722379684448,0.682848989963531,0.575294494628906,0.755192518234253,0.575294494628906,0.773370802402496,0.455722630023956,0.755192518234253,0.530724167823792,0.682847797870636,0.530724167823792,0.66467010974884,0.455722630023956,0.755192518234253,0.575295805931091,0.682847797870636,0.575295805931091,0.677859425544739,0.432477027177811,0.760182201862335,0.432477027177811,0.755192518234253,0.530723035335541,0.682847797870636,0.530723035335541,0.755192518234253,0.575294494628906,0.682847797870636,0.575294494628906,0.379478514194489,0.63755589723587,0.379478514194489,0.594567358493805,0.379478514194489,0.594567358493805,0.658956706523895,0.594574868679047,0.658951878547668,0.670786678791046,0.740226209163666,0.594575583934784,0.740224480628967,0.651659071445465,0.768371522426605,0.594575583934784,0.768371284008026,0.637563288211823,0.627575695514679,0.0357094593346119,0.558500826358795,0.985683619976044,0.54419070482254,0.962808787822723,0.544191837310791,0.905739009380341,0.558503150939941,0.905777633190155,0.567602515220642,0.807189166545868,0.477423101663589,0.0357094593346119,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.436712741851807,0.985683619976044,0.477582544088364,0.00151770422235131,0.627416491508484,0.00151770422235131,0.297211319208145,0.746532440185547,0.740226209163666,0.594575583934784,0.740224480628967,0.651659071445465,0.535832226276398,0.670781433582306,0.535833537578583,0.594572842121124,0.768371522426605,0.594575583934784,0.768371284008026,0.637563288211823,0.488895505666733,0.670781433582306,0.488894432783127,0.594569623470306,0.407624900341034,0.651650965213776,
  379. 0.407624036073685,0.594567000865936,0.255208075046539,0.035709235817194,0.54419070482254,0.962808787822723,0.544191837310791,0.905739009380341,0.405361592769623,0.035709235817194,0.558503150939941,0.905777633190155,0.567602515220642,0.807189166545868,0.434751033782959,0.121494144201279,0.581912636756897,0.80721789598465,0.550617814064026,0.775570333003998,0.564928293228149,0.775589406490326,0.555933892726898,0.99530166387558,0.225818872451782,0.121494144201279,0.302653163671494,0.751975357532501,0.379478514194489,0.63755589723587,0.379478514194489,0.594567358493805,0.535833537578583,0.594572842121124,0.488895505666733,0.670781433582306,0.488894432783127,0.594569623470306,0.407624900341034,0.651650965213776,0.407624036073685,0.594567000865936,0.379478514194489,0.63755589723587,0.379478514194489,0.594567358493805,0.532771825790405,0.865401268005371,0.255367815494537,0.00151777500286698,0.405201613903046,0.00151777500286698,0.555933892726898,0.99530166387558,0.434747040271759,0.192864060401917,0.439278841018677,0.99530166387558,0.436710596084595,0.905777633190155,0.521459341049194,0.863284826278687,0.43034440279007,0.205053240060806,0.451021611690521,0.905739009380341,0.230225056409836,0.205053240060806,0.225822478532791,0.192864060401917,0.451022326946259,0.962808787822723,0.413300454616547,0.80721789598465,0.427610754966736,0.807189166545868,0.160694941878319,0.700768828392029,0.510146141052246,0.859050750732422,0.498832941055298,0.856934070587158,0.487520694732666,0.859050750732422,0.476207494735718,0.863284826278687,0.464894741773605,0.865401268005371,0.532771825790405,0.944452524185181,0.521459341049194,0.946569204330444,0.510146141052246,0.95080304145813,0.498832941055298,0.952919721603394,0.656961441040039,0.192864060401917,0.652559041976929,0.20505353808403,0.436712741851807,0.985683619976044,0.452439457178116,0.205053240060806,0.451022326946259,0.962808787822723,0.436710596084595,0.905777633190155,0.487520694732666,0.95080304145813,0.476207494735718,0.946569204330444,0.451021611690521,0.905739009380341,0.448037356138229,
  380. 0.192864060401917,0.413300931453705,0.80721789598465,0.427610754966736,0.807189166545868,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.251447081565857,0.700768828392029,0.464894741773605,0.944452524185181,0.00238469056785107,0.121494144201279,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.430285811424255,0.775589406490326,0.444595873355865,0.775570333003998,0.439278841018677,0.99530166387558,0.954580128192902,0.411598563194275,0.954580128192902,0.613326966762543,0.439278841018677,0.99530166387558,0.555933892726898,0.99530166387558,0.919245660305023,0.613326966762543,0.919245660305023,0.411598563194275,0.954580128192902,0.307176768779755,0.919246137142181,0.307176768779755,0.954580128192902,0.105448730289936,0.919246137142181,0.105448730289936,0.44803312420845,0.121494084596634,0.656965613365173,0.121494084596634,0.211316883563995,0.121494144201279,0.954580128192902,0.00102699035778642,0.919245779514313,0.00102699035778642,0.999231994152069,0.411835879087448,0.96389764547348,0.411835879087448,0.999231994152069,0.105685085058212,0.96389764547348,0.105685085058212,0.999231994152069,0.307413786649704,0.96389764547348,0.307413786649704,0.480645209550858,0.786551177501678,0.484385997056961,0.797435939311981,0.491867572069168,0.806918323040009,0.495608597993851,0.817802608013153,0.491868048906326,0.82868617773056,0.48438623547554,0.838169038295746,0.480645209550858,0.84905332326889,0.516472518444061,0.78711074590683,0.5127312541008,0.797995030879974,0.505249917507172,0.807478129863739,0.501509130001068,0.818362414836884,0.505249917507172,0.829246699810028,0.5127312541008,0.838729560375214,0.516472518444061,0.849613904953003,0.469315558671951,0.786551177501678,0.46931603550911,0.849054276943207,0.466442614793777,0.797435462474823,0.460697442293167,0.80691784620285,0.457824736833572,0.817802608013153,0.460697442293167,0.828686416149139,0.466442853212357,0.838169991970062,0.527801930904388,0.787110269069672,0.527801930904388,0.849613904953003,0.530675113201141,0.797995030879974,
  381. 0.536420524120331,0.807478129863739,0.539292752742767,0.818362414836884,0.536419808864594,0.829246699810028,0.530674636363983,0.838729560375214,0.999231994152069,0.00126275070942938,0.963897526264191,0.00126275070942938,0.9992316365242,0.613565325737,0.963897287845612,0.613565325737,0.532771825790405,0.865401268005371,0.532771825790405,0.944452524185181,0.521459341049194,0.946569204330444,0.521459341049194,0.863284826278687,0.510146141052246,0.95080304145813,0.510146141052246,0.859050750732422,0.498832941055298,0.952919721603394,0.498832941055298,0.856934070587158,0.487520694732666,0.95080304145813,0.487520694732666,0.859050750732422,0.476207494735718,0.946569204330444,0.476207494735718,0.863284826278687,0.464894741773605,0.944452524185181,0.464894741773605,0.865401268005371,0.516472518444061,0.78711074590683,0.527801930904388,0.787110269069672,0.530675113201141,0.797995030879974,0.5127312541008,0.797995030879974,0.536420524120331,0.807478129863739,0.505249917507172,0.807478129863739,0.539292752742767,0.818362414836884,0.501509130001068,0.818362414836884,0.536419808864594,0.829246699810028,0.505249917507172,0.829246699810028,0.530674636363983,0.838729560375214,0.5127312541008,0.838729560375214,0.527801930904388,0.849613904953003,0.516472518444061,0.849613904953003,0.469315558671951,0.786551177501678,0.480645209550858,0.786551177501678,0.484385997056961,0.797435939311981,0.466442614793777,0.797435462474823,0.491867572069168,0.806918323040009,0.460697442293167,0.80691784620285,0.495608597993851,0.817802608013153,0.457824736833572,0.817802608013153,0.491868048906326,0.82868617773056,0.460697442293167,0.828686416149139,0.48438623547554,0.838169038295746,0.466442853212357,0.838169991970062,0.480645209550858,0.84905332326889,0.46931603550911,0.849054276943207
  382. }
  383. UVIndex: *568 {
  384. a: 1,2,3,4,3,5,7,4,5,8,9,7,14,15,16,17,15,18,20,16,43,53,14,17,20,18,62,63,13,36,54,61,13,67,85,91,95,96,98,36,19,21,22,23,21,66,68,22,25,26,28,29,24,27,30,35,28,31,32,29,31,33,34,32,47,48,50,56,99,100,101,102,37,38,39,40,38,41,103,39,103,41,104,121,10,1,49,51,10,52,55,58,55,52,59,60,60,59,236,237,53,43,64,65,65,64,106,108,10,58,2,1,106,139,140,108,67,101,100,85,69,70,19,23,77,86,87,88,73,75,76,78,0,6,11,12,76,75,79,81,81,79,82,83,71,72,74,80,105,107,61,54,86,77,89,109,109,89,110,115,110,116,141,115,37,40,122,187,42,44,45,46,44,135,136,45,135,137,138,136,90,92,93,94,123,90,94,124,125,123,124,126,47,56,57,97,80,235,253,71,149,150,151,152,151,153,155,152,153,156,157,155,111,112,118,120,112,162,163,118,164,165,111,120,163,162,166,167,95,91,113,114,127,128,129,130,128,131,132,129,172,175,178,183,84,173,174,176,172,195,196,175,174,177,179,176,177,180,181,179,198,202,204,205,117,119,161,184,87,142,143,88,142,144,145,143,145,144,146,147,158,149,197,199,158,200,203,206,203,200,207,208,208,207,238,239,165,164,168,169,169,168,170,171,158,206,150,149,170,185,186,171,96,161,119,98,133,134,127,130,221,223,26,25,221,224,227,223,148,154,159,160,227,224,229,230,230,229,231,232,219,220,222,228,209,233,114,113,187,122,188,189,189,188,190,191,190,192,193,191,84,182,240,73,173,84,73,78,243,221,25,244,178,198,205,183,219,228,251,252,194,215,216,201,201,216,217,210,210,217,218,211,211,218,225,212,212,225,226,213,213,226,234,214,269,283,285,270,270,285,286,271,271,286,287,272,272,287,288,273,273,288,289,274,274,289,284,275,276,262,263,278,278,263,264,279,279,264,265,280,280,265,266,281,281,266,267,282,282,267,268,277,251,154,148,252,235,6,0,253,57,24,35,97,241,242,245,246,247,241,246,248,249,247,248,250,254,249,250,255,256,292,293,257,290,258,259,291,258,260,261,259,260,256,257,261,294,295,296,297,297,296,298,299,299,298,300,301,301,300,302,303,303,302,304,305,305,304,306,307,308,309,310,311,311,310,312,313,313,312,314,315,315,314,316,317,317,316,318,319,319,318,320,321,322,323,324,325,325,324,326,327,327,326,328,329,
  385. 329,328,330,331,331,330,332,333,333,332,334,335
  386. }
  387. }
  388. LayerElementSmoothing: 0 {
  389. Version: 102
  390. Name: ""
  391. MappingInformationType: "ByPolygon"
  392. ReferenceInformationType: "Direct"
  393. Smoothing: *141 {
  394. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  395. }
  396. }
  397. LayerElementMaterial: 0 {
  398. Version: 101
  399. Name: ""
  400. MappingInformationType: "AllSame"
  401. ReferenceInformationType: "IndexToDirect"
  402. Materials: *1 {
  403. a: 0
  404. }
  405. }
  406. Layer: 0 {
  407. Version: 100
  408. LayerElement: {
  409. Type: "LayerElementNormal"
  410. TypedIndex: 0
  411. }
  412. LayerElement: {
  413. Type: "LayerElementMaterial"
  414. TypedIndex: 0
  415. }
  416. LayerElement: {
  417. Type: "LayerElementSmoothing"
  418. TypedIndex: 0
  419. }
  420. LayerElement: {
  421. Type: "LayerElementUV"
  422. TypedIndex: 0
  423. }
  424. }
  425. }
  426. Geometry: 86697104, "Geometry::", "Mesh" {
  427. Properties70: {
  428. P: "Color", "ColorRGB", "Color", "",0,0,0
  429. }
  430. Vertices: *153 {
  431. a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
  432. -2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
  433. }
  434. PolygonVertexIndex: *188 {
  435. a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
  436. }
  437. Edges: *94 {
  438. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
  439. }
  440. GeometryVersion: 124
  441. LayerElementNormal: 0 {
  442. Version: 101
  443. Name: ""
  444. MappingInformationType: "ByPolygonVertex"
  445. ReferenceInformationType: "Direct"
  446. Normals: *564 {
  447. a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
  448. 1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
  449. 0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
  450. -1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
  451. -0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
  452. -0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
  453. }
  454. }
  455. LayerElementUV: 0 {
  456. Version: 101
  457. Name: "UVChannel_1"
  458. MappingInformationType: "ByPolygonVertex"
  459. ReferenceInformationType: "IndexToDirect"
  460. UV: *232 {
  461. a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
  462. 0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
  463. 0.984513282775879,0.629390180110931,0.984513521194458
  464. }
  465. UVIndex: *188 {
  466. a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
  467. }
  468. }
  469. LayerElementSmoothing: 0 {
  470. Version: 102
  471. Name: ""
  472. MappingInformationType: "ByPolygon"
  473. ReferenceInformationType: "Direct"
  474. Smoothing: *45 {
  475. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  476. }
  477. }
  478. LayerElementMaterial: 0 {
  479. Version: 101
  480. Name: ""
  481. MappingInformationType: "AllSame"
  482. ReferenceInformationType: "IndexToDirect"
  483. Materials: *1 {
  484. a: 0
  485. }
  486. }
  487. Layer: 0 {
  488. Version: 100
  489. LayerElement: {
  490. Type: "LayerElementNormal"
  491. TypedIndex: 0
  492. }
  493. LayerElement: {
  494. Type: "LayerElementMaterial"
  495. TypedIndex: 0
  496. }
  497. LayerElement: {
  498. Type: "LayerElementSmoothing"
  499. TypedIndex: 0
  500. }
  501. LayerElement: {
  502. Type: "LayerElementUV"
  503. TypedIndex: 0
  504. }
  505. }
  506. }
  507. Geometry: 86435536, "Geometry::", "Mesh" {
  508. Properties70: {
  509. P: "Color", "ColorRGB", "Color", "",0,0,0
  510. }
  511. Vertices: *78 {
  512. a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
  513. }
  514. PolygonVertexIndex: *90 {
  515. a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
  516. }
  517. Edges: *45 {
  518. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
  519. }
  520. GeometryVersion: 124
  521. LayerElementNormal: 0 {
  522. Version: 101
  523. Name: ""
  524. MappingInformationType: "ByPolygonVertex"
  525. ReferenceInformationType: "Direct"
  526. Normals: *270 {
  527. a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
  528. -1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
  529. -7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
  530. }
  531. }
  532. LayerElementUV: 0 {
  533. Version: 101
  534. Name: "UVChannel_1"
  535. MappingInformationType: "ByPolygonVertex"
  536. ReferenceInformationType: "IndexToDirect"
  537. UV: *120 {
  538. a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
  539. 0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
  540. }
  541. UVIndex: *90 {
  542. a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
  543. }
  544. }
  545. LayerElementSmoothing: 0 {
  546. Version: 102
  547. Name: ""
  548. MappingInformationType: "ByPolygon"
  549. ReferenceInformationType: "Direct"
  550. Smoothing: *21 {
  551. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  552. }
  553. }
  554. LayerElementMaterial: 0 {
  555. Version: 101
  556. Name: ""
  557. MappingInformationType: "AllSame"
  558. ReferenceInformationType: "IndexToDirect"
  559. Materials: *1 {
  560. a: 0
  561. }
  562. }
  563. Layer: 0 {
  564. Version: 100
  565. LayerElement: {
  566. Type: "LayerElementNormal"
  567. TypedIndex: 0
  568. }
  569. LayerElement: {
  570. Type: "LayerElementMaterial"
  571. TypedIndex: 0
  572. }
  573. LayerElement: {
  574. Type: "LayerElementSmoothing"
  575. TypedIndex: 0
  576. }
  577. LayerElement: {
  578. Type: "LayerElementUV"
  579. TypedIndex: 0
  580. }
  581. }
  582. }
  583. Geometry: 86717200, "Geometry::", "Mesh" {
  584. Properties70: {
  585. P: "Color", "ColorRGB", "Color", "",0,0,0
  586. }
  587. Vertices: *168 {
  588. a: 17.2972240447998,-29.9597110748291,34.0730781555176,29.9596920013428,-17.2972621917725,34.0730781555176,29.9597187042236,17.2972145080566,34.0730781555176,17.297269821167,29.9596843719482,34.0730781555176,15.2430515289307,-26.4017734527588,38.4763946533203,26.4017581939697,-15.2430839538574,38.4763946533203,26.4017791748047,15.2430438995361,38.4763946533203,15.2430934906006,26.4017505645752,38.4763946533203,-17.2972240447998,-29.9597110748291,34.0730781555176,-29.9596920013428,-17.2972621917725,34.0730781555176,-29.9597187042236,17.2972145080566,34.0730781555176,-17.297269821167,29.9596843719482,34.0730781555176,-15.2430515289307,-26.4017734527588,38.4763946533203,-26.4017581939697,-15.2430839538574,38.4763946533203,-26.4017791748047,15.2430438995361,38.4763946533203,-15.2430934906006,26.4017505645752,38.4763946533203,17.2957344055176,-29.9571304321289,8.05157279968262,29.9571094512939,-17.2957725524902,8.05157279968262,17.2957801818848,29.957103729248,8.05157279968262,-17.2957344055176,-29.9571304321289,8.05157279968262,-29.9571361541748,17.2957248687744,8.05157279968262,-17.2957801818848,29.957103729248,8.05157279968262,16.5668411254883,-28.6946487426758,6.47703075408936,28.6946258544922,-16.5668792724609,6.47703075408936,28.694652557373,16.5668296813965,6.47703075408936,16.5668849945068,28.6946220397949,6.47703075408936,-16.5668411254883,-28.6946487426758,6.47703075408936,-28.6946258544922,-16.5668792724609,6.47703075408936,-28.694652557373,16.5668296813965,6.47703075408936,-16.5668849945068,28.6946220397949,6.47703075408936,-11.3108310699463,-16.9085426330566,37.387393951416,11.3108310699463,-16.9085426330566,37.387393951416,16.9085292816162,-11.3108520507813,37.387393951416,16.9085445404053,11.310827255249,37.387393951416,11.310863494873,16.908519744873,37.387393951416,-11.310863494873,16.908519744873,37.387393951416,-16.9085445404053,11.310827255249,37.387393951416,-16.9085292816162,-11.3108520507813,37.387393951416,-12.1057062149048,-18.827543258667,38.4763946533203,12.1057062149048,-18.827543258667,38.4763946533203,
  589. 18.8275451660156,12.1057014465332,38.4763946533203,12.1057405471802,18.8275203704834,38.4763946533203,-12.1057405471802,18.8275203704834,38.4763946533203,-18.8275279998779,-12.1057291030884,38.4763946533203,14.9895296096802,-10.5159749984741,38.4763946533203,14.9895439147949,10.5159530639648,38.4763946533203,10.5159864425659,14.989520072937,38.4763946533203,-10.5159864425659,14.989520072937,38.4763946533203,-14.9895439147949,10.5159530639648,38.4763946533203,-14.9895296096802,-10.5159749984741,38.4763946533203,-10.5159559249878,-14.9895429611206,38.4763946533203,10.5159559249878,-14.9895429611206,38.4763946533203,29.9571361541748,17.2957248687744,8.05157279968262,-29.9571094512939,-17.2957725524902,8.05157279968262,18.8275279998779,-12.1057291030884,38.4763946533203,-18.8275451660156,12.1057014465332,38.4763946533203
  590. }
  591. PolygonVertexIndex: *200 {
  592. a: 17,1,0,-17,18,3,2,-53,4,12,8,-1,0,1,5,-5,2,3,7,-7,3,11,15,-8,53,19,8,-10,21,20,10,-12,8,12,13,-10,10,14,15,-12,16,19,26,-23,17,16,22,-24,52,17,23,-25,18,52,24,-26,21,18,25,-30,19,53,27,-27,53,20,28,-28,20,21,29,-29,51,44,45,46,47,48,49,-51,15,14,55,-43,4,5,54,-40,51,31,32,-45,44,32,33,-46,45,33,34,-47,46,34,35,-48,47,35,36,-49,48,36,37,-50,49,37,30,-51,50,30,31,-52,39,31,30,-39,54,32,31,-40,40,33,32,-55,41,34,33,-41,42,35,34,-42,55,36,35,-43,43,37,36,-56,38,30,37,-44,6,40,54,-6,13,43,55,-15,10,20,53,-10,0,8,19,-17,11,3,18,-22,14,10,9,-14,39,38,12,-5,38,43,13,-13,42,41,7,-16,41,40,6,-8,1,17,52,-3,5,1,2,-7
  593. }
  594. Edges: *104 {
  595. a: 0,1,2,3,4,5,6,7,8,9,10,11,13,14,17,18,19,20,21,22,24,25,26,27,28,29,30,31,33,34,36,37,40,41,42,43,46,47,48,50,51,54,55,56,58,59,61,62,64,65,66,70,72,73,74,75,76,77,78,79,81,82,83,85,86,87,88,89,90,93,94,97,98,101,102,105,106,109,110,113,114,117,120,122,123,124,128,131,132,135,136,139,140,144,147,151,152,155,156,159,163,177,185,195
  596. }
  597. GeometryVersion: 124
  598. LayerElementNormal: 0 {
  599. Version: 101
  600. Name: ""
  601. MappingInformationType: "ByPolygonVertex"
  602. ReferenceInformationType: "Direct"
  603. Normals: *600 {
  604. a: 0.923880636692047,-0.382680743932724,-0.000113585563667584,0.923877835273743,-0.382687449455261,-0.000113585658255033,0.382686465978622,-0.923878252506256,-0.000113545997010078,0.38267970085144,-0.923881053924561,-0.000113545887870714,0.382680475711823,0.923880815505981,-0.00011354593152646,0.382687211036682,0.923877954483032,-0.000113546026113909,0.923878371715546,0.382686018943787,-0.000113585643703118,0.923881232738495,0.382679313421249,-0.000113585556391627,0.170372173190117,-0.447276502847672,0.878018736839294,-0.170372173190117,-0.447276502847672,0.878018736839294,-0.292463034391403,-0.672519505023956,0.679840385913849,0.292463034391403,-0.672519505023956,0.679840385913849,0.292463034391403,-0.672519505023956,0.679840385913849,0.672519147396088,-0.29246386885643,0.679840385913849,0.447276443243027,-0.170372650027275,0.878018796443939,0.170372173190117,-0.447276502847672,0.878018736839294,0.672519683837891,0.292462736368179,0.679840266704559,0.292463630437851,0.672519385814667,0.679840266704559,0.170372545719147,0.447276681661606,0.878018736839294,0.447276651859283,0.170372024178505,0.878018736839294,0.292463630437851,0.672519385814667,0.679840266704559,-0.292463630437851,0.672519385814667,0.679840266704559,-0.170372545719147,0.447276681661606,0.878018736839294,0.170372545719147,0.447276681661606,0.878018736839294,-0.923880636692047,-0.382680714130402,-0.000113585563667584,-0.382679730653763,-0.923881053924561,-0.000113545887870714,-0.382686495780945,-0.923878252506256,-0.000113546011561994,-0.923877835273743,-0.382687449455261,-0.000113585680082906,-0.382680535316467,0.923880815505981,-0.00011354593152646,-0.923881232738495,0.382679283618927,-0.000113585556391627,-0.923878371715546,0.382685989141464,-0.000113585643703118,-0.382687270641327,0.923877894878387,-0.000113546026113909,-0.292463034391403,-0.672519505023956,0.679840385913849,-0.170372173190117,-0.447276502847672,0.878018736839294,-0.447276443243027,-0.170372650027275,0.878018796443939,-0.672519147396088,-0.29246386885643,0.679840385913849,
  605. -0.672519683837891,0.292462736368179,0.679840266704559,-0.447276711463928,0.170372024178505,0.87801867723465,-0.170372545719147,0.447276681661606,0.878018736839294,-0.292463630437851,0.672519385814667,0.679840266704559,0.293463885784149,-0.674928843975067,-0.677015483379364,-0.293463885784149,-0.674928843975067,-0.677015483379364,-0.262842923402786,-0.689711809158325,-0.674693405628204,0.262842923402786,-0.689711809158325,-0.674693405628204,0.674928426742554,-0.29346439242363,-0.677015781402588,0.293463885784149,-0.674928843975067,-0.677015483379364,0.262842923402786,-0.689711809158325,-0.674693405628204,0.689711213111877,-0.262843757867813,-0.674693763256073,0.674928545951843,0.293463528156281,-0.677016019821167,0.674928426742554,-0.29346439242363,-0.677015781402588,0.689711213111877,-0.262843757867813,-0.674693763256073,0.689711689949036,0.262842267751694,-0.674693882465363,0.293464362621307,0.674928367137909,-0.677015841007233,0.674928545951843,0.293463528156281,-0.677016019821167,0.689711689949036,0.262842267751694,-0.674693882465363,0.262843251228333,0.689711451530457,-0.674693763256073,-0.293464362621307,0.674928367137909,-0.677015841007233,0.293464362621307,0.674928367137909,-0.677015841007233,0.262843251228333,0.689711451530457,-0.674693763256073,-0.262843251228333,0.689711451530457,-0.674693763256073,-0.293463885784149,-0.674928843975067,-0.677015483379364,-0.674928367137909,-0.293464362621307,-0.677015781402588,-0.689711213111877,-0.262843757867813,-0.674693822860718,-0.262842923402786,-0.689711809158325,-0.674693405628204,-0.674928367137909,-0.293464362621307,-0.677015781402588,-0.674928545951843,0.293463528156281,-0.677016019821167,-0.689711630344391,0.262842237949371,-0.674693882465363,-0.689711213111877,-0.262843757867813,-0.674693822860718,-0.674928545951843,0.293463528156281,-0.677016019821167,-0.293464362621307,0.674928367137909,-0.677015841007233,-0.262843251228333,0.689711451530457,-0.674693763256073,-0.689711630344391,0.262842237949371,-0.674693882465363,0.112370640039444,-0.271287024021149,0.955916464328766,
  606. 0.271286875009537,-0.112370930612087,0.955916464328766,0.271287053823471,0.112370483577251,0.955916464328766,0.112370908260345,0.271286964416504,0.955916464328766,-0.112370893359184,0.271286964416504,0.955916464328766,-0.271287053823471,0.112370498478413,0.955916464328766,-0.271286875009537,-0.112370945513248,0.955916464328766,-0.112370640039444,-0.271287024021149,0.955916464328766,-0.170372545719147,0.447276681661606,0.878018736839294,-0.447276711463928,0.170372024178505,0.87801867723465,0.167554423213005,-0.0694031417369843,0.983416855335236,0.0694033205509186,-0.167554184794426,0.983416974544525,0.170372173190117,-0.447276502847672,0.878018736839294,0.447276443243027,-0.170372650027275,0.878018796443939,-0.167554318904877,0.0694034025073051,0.98341691493988,-0.069403238594532,0.167554393410683,0.98341691493988,0.112370640039444,-0.271287024021149,0.955916464328766,0.177694469690323,-0.428992807865143,0.885657846927643,0.428992509841919,-0.177694872021675,0.885657846927643,0.271286875009537,-0.112370930612087,0.955916464328766,0.271286875009537,-0.112370930612087,0.955916464328766,0.428992509841919,-0.177694872021675,0.885657846927643,0.428992837667465,0.177694216370583,0.885657966136932,0.271287053823471,0.112370483577251,0.955916464328766,0.271287053823471,0.112370483577251,0.955916464328766,0.428992837667465,0.177694216370583,0.885657966136932,0.177694797515869,0.428992480039597,0.885657906532288,0.112370908260345,0.271286964416504,0.955916464328766,0.112370908260345,0.271286964416504,0.955916464328766,0.177694797515869,0.428992480039597,0.885657906532288,-0.177694797515869,0.428992539644241,0.885657906532288,-0.112370893359184,0.271286964416504,0.955916464328766,-0.112370893359184,0.271286964416504,0.955916464328766,-0.177694797515869,0.428992539644241,0.885657906532288,-0.42899289727211,0.177694246172905,0.885657966136932,-0.271287053823471,0.112370498478413,0.955916464328766,-0.271287053823471,0.112370498478413,0.955916464328766,-0.42899289727211,0.177694246172905,0.885657966136932,-0.428992539644241,-0.177694886922836,0.885657846927643,
  607. -0.271286875009537,-0.112370945513248,0.955916464328766,-0.271286875009537,-0.112370945513248,0.955916464328766,-0.428992539644241,-0.177694886922836,0.885657846927643,-0.177694469690323,-0.428992837667465,0.885657846927643,-0.112370640039444,-0.271287024021149,0.955916464328766,-0.112370640039444,-0.271287024021149,0.955916464328766,-0.177694469690323,-0.428992837667465,0.885657846927643,0.177694469690323,-0.428992807865143,0.885657846927643,0.112370640039444,-0.271287024021149,0.955916464328766,-0.069403238594532,0.167554393410683,0.98341691493988,-0.177694454789162,0.428992718458176,0.885657906532288,0.177694454789162,0.428992718458176,0.885657906532288,0.069403238594532,0.167554393410683,0.98341691493988,-0.167554318904877,0.0694034025073051,0.98341691493988,-0.428992599248886,0.177694857120514,0.885657906532288,-0.177694454789162,0.428992718458176,0.885657906532288,-0.069403238594532,0.167554393410683,0.98341691493988,-0.167554438114166,-0.0694031417369843,0.983416855335236,-0.428992837667465,-0.17769418656826,0.885657846927643,-0.428992599248886,0.177694857120514,0.885657906532288,-0.167554318904877,0.0694034025073051,0.98341691493988,-0.0694033056497574,-0.167554154992104,0.983416855335236,-0.177694767713547,-0.428992420434952,0.885658025741577,-0.428992837667465,-0.17769418656826,0.885657846927643,-0.167554438114166,-0.0694031417369843,0.983416855335236,0.0694033205509186,-0.167554184794426,0.983416974544525,0.177694767713547,-0.428992420434952,0.885658025741577,-0.177694767713547,-0.428992420434952,0.885658025741577,-0.0694033056497574,-0.167554154992104,0.983416855335236,0.167554423213005,-0.0694031417369843,0.983416855335236,0.428992867469788,-0.177694201469421,0.885657966136932,0.177694767713547,-0.428992420434952,0.885658025741577,0.0694033205509186,-0.167554184794426,0.983416974544525,0.167554318904877,0.0694034025073051,0.98341691493988,0.428992599248886,0.177694872021675,0.885657966136932,0.428992867469788,-0.177694201469421,0.885657966136932,0.167554423213005,-0.0694031417369843,0.983416855335236,
  608. 0.069403238594532,0.167554393410683,0.98341691493988,0.177694454789162,0.428992718458176,0.885657906532288,0.428992599248886,0.177694872021675,0.885657966136932,0.167554318904877,0.0694034025073051,0.98341691493988,0.447276651859283,0.170372024178505,0.878018736839294,-0.167554438114166,-0.0694031417369843,0.983416855335236,-0.167554318904877,0.0694034025073051,0.98341691493988,0.447276443243027,-0.170372650027275,0.878018796443939,-0.447276443243027,-0.170372650027275,0.878018796443939,0.167554318904877,0.0694034025073051,0.98341691493988,0.167554423213005,-0.0694031417369843,0.983416855335236,-0.447276711463928,0.170372024178505,0.87801867723465,-0.923878371715546,0.382685989141464,-0.000113585643703118,-0.923881232738495,0.382679283618927,-0.000113585556391627,-0.923880636692047,-0.382680714130402,-0.000113585563667584,-0.923877835273743,-0.382687449455261,-0.000113585680082906,0.382686465978622,-0.923878252506256,-0.000113545997010078,-0.382686495780945,-0.923878252506256,-0.000113546011561994,-0.382679730653763,-0.923881053924561,-0.000113545887870714,0.38267970085144,-0.923881053924561,-0.000113545887870714,-0.382687270641327,0.923877894878387,-0.000113546026113909,0.382687211036682,0.923877954483032,-0.000113546026113909,0.382680475711823,0.923880815505981,-0.00011354593152646,-0.382680535316467,0.923880815505981,-0.00011354593152646,-0.447276711463928,0.170372024178505,0.87801867723465,-0.672519683837891,0.292462736368179,0.679840266704559,-0.672519147396088,-0.29246386885643,0.679840385913849,-0.447276443243027,-0.170372650027275,0.878018796443939,-0.069403238594532,0.167554393410683,0.98341691493988,0.069403238594532,0.167554393410683,0.98341691493988,-0.170372173190117,-0.447276502847672,0.878018736839294,0.170372173190117,-0.447276502847672,0.878018736839294,0.069403238594532,0.167554393410683,0.98341691493988,0.167554318904877,0.0694034025073051,0.98341691493988,-0.447276443243027,-0.170372650027275,0.878018796443939,-0.170372173190117,-0.447276502847672,0.878018736839294,0.0694033205509186,-0.167554184794426,0.983416974544525,
  609. -0.0694033056497574,-0.167554154992104,0.983416855335236,0.170372545719147,0.447276681661606,0.878018736839294,-0.170372545719147,0.447276681661606,0.878018736839294,-0.0694033056497574,-0.167554154992104,0.983416855335236,-0.167554438114166,-0.0694031417369843,0.983416855335236,0.447276651859283,0.170372024178505,0.878018736839294,0.170372545719147,0.447276681661606,0.878018736839294,0.923877835273743,-0.382687449455261,-0.000113585658255033,0.923880636692047,-0.382680743932724,-0.000113585563667584,0.923881232738495,0.382679313421249,-0.000113585556391627,0.923878371715546,0.382686018943787,-0.000113585643703118,0.447276443243027,-0.170372650027275,0.878018796443939,0.672519147396088,-0.29246386885643,0.679840385913849,0.672519683837891,0.292462736368179,0.679840266704559,0.447276651859283,0.170372024178505,0.878018736839294
  610. }
  611. }
  612. LayerElementUV: 0 {
  613. Version: 101
  614. Name: "UVChannel_1"
  615. MappingInformationType: "ByPolygonVertex"
  616. ReferenceInformationType: "IndexToDirect"
  617. UV: *156 {
  618. a: 0.329880654811859,0.229877427220345,0.329880654811859,0.393413245677948,0.218197494745255,0.393413245677948,0.218197494745255,0.229877427220345,0.0037561864592135,0.418763935565948,0.0037561864592135,0.58231258392334,0.544882357120514,0.393413245677948,0.544882357120514,0.229877427220345,0.545054078102112,0.418763935565948,0.0035864869132638,0.229877427220345,0.0035864869132638,0.393413245677948,0.545054078102112,0.58231258392334,0.038227092474699,0.699823021888733,0.0382291451096535,0.893849194049835,0.00506999483332038,0.911163985729218,0.00506824580952525,0.682508766651154,0.0912318527698517,0.596344709396362,0.108546234667301,0.629503607749939,0.218443244695663,0.418763935565948,0.330058693885803,0.418763935565948,0.330058693885803,0.58231258392334,0.218443244695663,0.58231258392334,0.319886982440948,0.596344172954559,0.406051188707352,0.682507336139679,0.0035864869132638,0.216881185770035,0.218197494745255,0.216881185770035,0.329880654811859,0.216881185770035,0.544882357120514,0.216881185770035,0.0037561864592135,0.405763983726501,0.218443244695663,0.405763983726501,0.545054078102112,0.405763983726501,0.330058693885803,0.405763983726501,0.372892320156097,0.699821770191193,0.302572518587112,0.62950336933136,0.406052738428116,0.911163330078125,0.372893899679184,0.893848955631256,0.108548708260059,0.964168190956116,0.0912341997027397,0.997327327728271,0.319889277219772,0.997327327728271,0.302574872970581,0.964168190956116,0.282927274703979,0.916846334934235,0.325571656227112,0.874201774597168,0.12819367647171,0.676825225353241,0.0855491608381271,0.719470083713531,0.0990209355950356,0.725051939487457,0.0990224927663803,0.868619620800018,0.0855504646897316,0.874202013015747,0.133775666356087,0.690297245979309,0.28292590379715,0.676825225353241,0.277343958616257,0.69029712677002,0.325570732355118,0.719469428062439,0.312098979949951,0.725051462650299,0.312100440263748,0.868619918823242,0.277345448732376,0.90337473154068,0.128195613622665,0.916846096515656,0.133777350187302,0.903374493122101,0.856013298034668,
  619. 0.224569663405418,0.882237672805786,0.250793755054474,0.882237672805786,0.374553680419922,0.856013894081116,0.400777637958527,0.732253670692444,0.400777637958527,0.706029534339905,0.374553680419922,0.706029534339905,0.250793755054474,0.732253909111023,0.224569663405418,0.861246585845947,0.211935117840767,0.894872188568115,0.24556040763855,0.894872188568115,0.379787147045136,0.861247181892395,0.41341245174408,0.727019965648651,0.413412272930145,0.693395256996155,0.379787147045136,0.693395256996155,0.245560467243195,0.727019965648651,0.211935117840767,0.656109929084778,0.229877427220345,0.656109929084778,0.393413245677948,0.656109929084778,0.216881185770035,0.65635472536087,0.418763935565948,0.65635472536087,0.58231258392334,0.65635472536087,0.405763983726501
  620. }
  621. UVIndex: *200 {
  622. a: 0,1,2,3,72,73,6,7,12,13,14,15,15,16,17,12,22,23,32,33,23,34,35,32,8,75,76,11,18,19,20,21,14,13,36,37,38,39,35,34,3,9,24,25,0,3,25,26,7,0,26,27,72,7,27,74,18,4,28,29,75,8,30,77,8,19,31,30,19,18,29,31,56,57,58,59,60,61,62,63,35,39,40,41,12,17,42,43,56,64,65,57,57,65,66,58,58,66,67,59,59,67,68,60,60,68,69,61,61,69,70,62,62,70,71,63,63,71,64,56,43,44,45,46,42,47,44,43,48,49,47,42,50,51,49,48,41,52,51,50,40,53,52,41,54,55,53,40,46,45,55,54,33,48,42,17,36,54,40,39,20,19,8,11,2,10,9,3,21,5,4,18,39,38,37,36,43,46,13,12,46,54,36,13,41,50,32,35,50,48,33,32,1,0,7,6,17,16,22,33
  623. }
  624. }
  625. LayerElementSmoothing: 0 {
  626. Version: 102
  627. Name: ""
  628. MappingInformationType: "ByPolygon"
  629. ReferenceInformationType: "Direct"
  630. Smoothing: *49 {
  631. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  632. }
  633. }
  634. LayerElementMaterial: 0 {
  635. Version: 101
  636. Name: ""
  637. MappingInformationType: "AllSame"
  638. ReferenceInformationType: "IndexToDirect"
  639. Materials: *1 {
  640. a: 0
  641. }
  642. }
  643. Layer: 0 {
  644. Version: 100
  645. LayerElement: {
  646. Type: "LayerElementNormal"
  647. TypedIndex: 0
  648. }
  649. LayerElement: {
  650. Type: "LayerElementMaterial"
  651. TypedIndex: 0
  652. }
  653. LayerElement: {
  654. Type: "LayerElementSmoothing"
  655. TypedIndex: 0
  656. }
  657. LayerElement: {
  658. Type: "LayerElementUV"
  659. TypedIndex: 0
  660. }
  661. }
  662. }
  663. Geometry: 86759168, "Geometry::", "Mesh" {
  664. Properties70: {
  665. P: "Color", "ColorRGB", "Color", "",0,0,0
  666. }
  667. Vertices: *153 {
  668. a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
  669. -2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
  670. }
  671. PolygonVertexIndex: *188 {
  672. a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
  673. }
  674. Edges: *94 {
  675. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
  676. }
  677. GeometryVersion: 124
  678. LayerElementNormal: 0 {
  679. Version: 101
  680. Name: ""
  681. MappingInformationType: "ByPolygonVertex"
  682. ReferenceInformationType: "Direct"
  683. Normals: *564 {
  684. a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
  685. 1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
  686. 0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
  687. -1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
  688. -0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
  689. -0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
  690. }
  691. }
  692. LayerElementUV: 0 {
  693. Version: 101
  694. Name: "UVChannel_1"
  695. MappingInformationType: "ByPolygonVertex"
  696. ReferenceInformationType: "IndexToDirect"
  697. UV: *232 {
  698. a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
  699. 0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
  700. 0.984513282775879,0.629390180110931,0.984513521194458
  701. }
  702. UVIndex: *188 {
  703. a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
  704. }
  705. }
  706. LayerElementSmoothing: 0 {
  707. Version: 102
  708. Name: ""
  709. MappingInformationType: "ByPolygon"
  710. ReferenceInformationType: "Direct"
  711. Smoothing: *45 {
  712. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  713. }
  714. }
  715. LayerElementMaterial: 0 {
  716. Version: 101
  717. Name: ""
  718. MappingInformationType: "AllSame"
  719. ReferenceInformationType: "IndexToDirect"
  720. Materials: *1 {
  721. a: 0
  722. }
  723. }
  724. Layer: 0 {
  725. Version: 100
  726. LayerElement: {
  727. Type: "LayerElementNormal"
  728. TypedIndex: 0
  729. }
  730. LayerElement: {
  731. Type: "LayerElementMaterial"
  732. TypedIndex: 0
  733. }
  734. LayerElement: {
  735. Type: "LayerElementSmoothing"
  736. TypedIndex: 0
  737. }
  738. LayerElement: {
  739. Type: "LayerElementUV"
  740. TypedIndex: 0
  741. }
  742. }
  743. }
  744. Geometry: 86752944, "Geometry::", "Mesh" {
  745. Properties70: {
  746. P: "Color", "ColorRGB", "Color", "",0,0,0
  747. }
  748. Vertices: *78 {
  749. a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
  750. }
  751. PolygonVertexIndex: *90 {
  752. a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
  753. }
  754. Edges: *45 {
  755. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
  756. }
  757. GeometryVersion: 124
  758. LayerElementNormal: 0 {
  759. Version: 101
  760. Name: ""
  761. MappingInformationType: "ByPolygonVertex"
  762. ReferenceInformationType: "Direct"
  763. Normals: *270 {
  764. a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
  765. -1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
  766. -7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
  767. }
  768. }
  769. LayerElementUV: 0 {
  770. Version: 101
  771. Name: "UVChannel_1"
  772. MappingInformationType: "ByPolygonVertex"
  773. ReferenceInformationType: "IndexToDirect"
  774. UV: *120 {
  775. a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
  776. 0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
  777. }
  778. UVIndex: *90 {
  779. a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
  780. }
  781. }
  782. LayerElementSmoothing: 0 {
  783. Version: 102
  784. Name: ""
  785. MappingInformationType: "ByPolygon"
  786. ReferenceInformationType: "Direct"
  787. Smoothing: *21 {
  788. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  789. }
  790. }
  791. LayerElementMaterial: 0 {
  792. Version: 101
  793. Name: ""
  794. MappingInformationType: "AllSame"
  795. ReferenceInformationType: "IndexToDirect"
  796. Materials: *1 {
  797. a: 0
  798. }
  799. }
  800. Layer: 0 {
  801. Version: 100
  802. LayerElement: {
  803. Type: "LayerElementNormal"
  804. TypedIndex: 0
  805. }
  806. LayerElement: {
  807. Type: "LayerElementMaterial"
  808. TypedIndex: 0
  809. }
  810. LayerElement: {
  811. Type: "LayerElementSmoothing"
  812. TypedIndex: 0
  813. }
  814. LayerElement: {
  815. Type: "LayerElementUV"
  816. TypedIndex: 0
  817. }
  818. }
  819. }
  820. Geometry: 86801152, "Geometry::", "Mesh" {
  821. Properties70: {
  822. P: "Color", "ColorRGB", "Color", "",0,0,0
  823. }
  824. Vertices: *153 {
  825. a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
  826. -2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
  827. }
  828. PolygonVertexIndex: *188 {
  829. a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
  830. }
  831. Edges: *94 {
  832. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
  833. }
  834. GeometryVersion: 124
  835. LayerElementNormal: 0 {
  836. Version: 101
  837. Name: ""
  838. MappingInformationType: "ByPolygonVertex"
  839. ReferenceInformationType: "Direct"
  840. Normals: *564 {
  841. a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
  842. 1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
  843. 0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
  844. -1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
  845. -0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
  846. -0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
  847. }
  848. }
  849. LayerElementUV: 0 {
  850. Version: 101
  851. Name: "UVChannel_1"
  852. MappingInformationType: "ByPolygonVertex"
  853. ReferenceInformationType: "IndexToDirect"
  854. UV: *232 {
  855. a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
  856. 0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
  857. 0.984513282775879,0.629390180110931,0.984513521194458
  858. }
  859. UVIndex: *188 {
  860. a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
  861. }
  862. }
  863. LayerElementSmoothing: 0 {
  864. Version: 102
  865. Name: ""
  866. MappingInformationType: "ByPolygon"
  867. ReferenceInformationType: "Direct"
  868. Smoothing: *45 {
  869. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  870. }
  871. }
  872. LayerElementMaterial: 0 {
  873. Version: 101
  874. Name: ""
  875. MappingInformationType: "AllSame"
  876. ReferenceInformationType: "IndexToDirect"
  877. Materials: *1 {
  878. a: 0
  879. }
  880. }
  881. Layer: 0 {
  882. Version: 100
  883. LayerElement: {
  884. Type: "LayerElementNormal"
  885. TypedIndex: 0
  886. }
  887. LayerElement: {
  888. Type: "LayerElementMaterial"
  889. TypedIndex: 0
  890. }
  891. LayerElement: {
  892. Type: "LayerElementSmoothing"
  893. TypedIndex: 0
  894. }
  895. LayerElement: {
  896. Type: "LayerElementUV"
  897. TypedIndex: 0
  898. }
  899. }
  900. }
  901. Geometry: 86804928, "Geometry::", "Mesh" {
  902. Properties70: {
  903. P: "Color", "ColorRGB", "Color", "",0,0,0
  904. }
  905. Vertices: *78 {
  906. a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
  907. }
  908. PolygonVertexIndex: *90 {
  909. a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
  910. }
  911. Edges: *45 {
  912. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
  913. }
  914. GeometryVersion: 124
  915. LayerElementNormal: 0 {
  916. Version: 101
  917. Name: ""
  918. MappingInformationType: "ByPolygonVertex"
  919. ReferenceInformationType: "Direct"
  920. Normals: *270 {
  921. a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
  922. -1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
  923. -7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
  924. }
  925. }
  926. LayerElementUV: 0 {
  927. Version: 101
  928. Name: "UVChannel_1"
  929. MappingInformationType: "ByPolygonVertex"
  930. ReferenceInformationType: "IndexToDirect"
  931. UV: *120 {
  932. a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
  933. 0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
  934. }
  935. UVIndex: *90 {
  936. a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
  937. }
  938. }
  939. LayerElementSmoothing: 0 {
  940. Version: 102
  941. Name: ""
  942. MappingInformationType: "ByPolygon"
  943. ReferenceInformationType: "Direct"
  944. Smoothing: *21 {
  945. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  946. }
  947. }
  948. LayerElementMaterial: 0 {
  949. Version: 101
  950. Name: ""
  951. MappingInformationType: "AllSame"
  952. ReferenceInformationType: "IndexToDirect"
  953. Materials: *1 {
  954. a: 0
  955. }
  956. }
  957. Layer: 0 {
  958. Version: 100
  959. LayerElement: {
  960. Type: "LayerElementNormal"
  961. TypedIndex: 0
  962. }
  963. LayerElement: {
  964. Type: "LayerElementMaterial"
  965. TypedIndex: 0
  966. }
  967. LayerElement: {
  968. Type: "LayerElementSmoothing"
  969. TypedIndex: 0
  970. }
  971. LayerElement: {
  972. Type: "LayerElementUV"
  973. TypedIndex: 0
  974. }
  975. }
  976. }
  977. Geometry: 86826528, "Geometry::", "Mesh" {
  978. Properties70: {
  979. P: "Color", "ColorRGB", "Color", "",0,0,0
  980. }
  981. Vertices: *153 {
  982. a: 5.5000114440918,7.6575870513916,0,-5.75391721725464,0.709403991699219,-4.71097183227539,-5.75644969940186,-12.7612571716309,32.0256576538086,5.75609397888184,-12.7612457275391,32.0256462097168,5.75395727157593,-5.94838714599609,31.8751029968262,-5.75387859344482,-5.94838714599609,31.8751029968262,5.7556004524231,-11.008602142334,34.1719436645508,5.75447463989258,-7.44818878173828,34.0932693481445,-5.75448703765869,-7.44819641113281,34.0932731628418,-5.75582075119019,-11.0086097717285,34.1719589233398,2.3395824432373,-5.94838714599609,31.8751029968262,-2.33950304985046,-5.94838333129883,31.8751068115234,2.33976578712463,-7.44819259643555,34.0932693481445,-2.33977770805359,-7.44819259643555,34.0932693481445,-2.34038281440735,-11.0086097717285,34.1719551086426,2.34016036987305,-11.008602142334,34.171947479248,-2.33919024467468,-6.05490875244141,20.9186382293701,-5.75647115707397,-5.43608474731445,17.3549728393555,5.75607442855835,-5.43607711791992,17.3549785614014,5.75393915176392,-1.56026077270508,19.2641906738281,-5.75389957427979,-1.56026077270508,19.2641906738281,-2.33975458145142,-1.56040191650391,19.2494773864746,2.33979201316834,-1.56040191650391,19.2494773864746,2.33927202224731,-6.05490875244141,20.9186401367188,-5.75646829605103,-12.8700103759766,20.8405380249023,5.75607681274414,-12.8700065612793,20.8405418395996,5.75394153594971,-6.05456924438477,20.9539756774902,-5.75389671325684,-6.05456924438477,20.9539756774902,-8.88472461700439,-7.01129531860352,-4.76837158203125e-006,5.75391721725464,0.709400177001953,-4.71097087860107,-5.49988460540771,7.6575927734375,-6.67572021484375e-006,8.88457584381104,-7.01129531860352,-1.04904174804688e-005,2.34032154083252,-12.7612533569336,32.0256538391113,-2.34067797660828,-12.7612571716309,32.0256576538086,-2.33926796913147,-12.8703498840332,20.8052082061768,-2.33982992172241,-5.43622207641602,17.3402614593506,2.3398597240448,-5.43621826171875,17.3402614593506,2.33934211730957,-12.8703498840332,20.8052062988281,8.81730556488037,-6.84539413452148,-0.101239204406738,
  983. -2.40829277038574,7.66194915771484,-0.0143547058105469,-2.29864072799683,4.62325286865234,6.33297348022461,2.2987380027771,4.62325477600098,6.33297348022461,2.40839171409607,7.66195106506348,-0.0143527984619141,2.50204634666443,2.88285827636719,-3.24216556549072,-2.50199437141418,2.88286018371582,-3.24216461181641,-2.40829133987427,15.9753112792969,-0.0143585205078125,-2.35098505020142,15.1976680755615,2.64157962799072,2.35108709335327,15.1976699829102,2.64158153533936,2.40839385986328,15.9753112792969,-0.0143585205078125,2.50205063819885,14.1875782012939,-3.24216508865356,-2.5019896030426,14.1875801086426,-3.24216747283936
  984. }
  985. PolygonVertexIndex: *188 {
  986. a: 31,18,36,35,17,-29,45,46,47,-49,0,38,-30,20,30,28,-18,8,9,14,-14,6,7,12,-16,5,8,13,-12,7,4,10,-13,3,6,15,-33,9,2,33,-15,2,24,34,-34,37,25,3,-33,4,26,23,-11,27,5,11,-17,19,26,25,-19,24,27,20,-18,17,35,34,-25,37,36,18,-26,19,22,23,-27,16,21,20,-28,4,7,6,3,25,-27,2,9,8,5,27,-25,48,49,50,-46,28,1,29,38,-32,22,21,35,-37,10,23,37,-33,16,11,33,-35,21,16,34,-36,23,22,36,-38,11,13,14,-34,12,10,32,-16,30,1,-29,0,19,18,31,-39,30,20,21,40,-40,21,22,41,-41,22,19,0,42,-42,0,29,43,-43,29,1,44,-44,1,30,39,-45,39,40,46,-46,40,41,47,-47,41,42,48,-48,42,43,49,-49,43,44,50,-50,44,39,45,-51
  987. }
  988. Edges: *94 {
  989. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,35,36,37,38,39,41,42,43,45,46,48,49,50,51,53,55,56,57,58,59,60,61,62,64,66,69,73,74,77,78,93,94,95,97,98,100,102,103,105,107,109,111,113,130,133,140,141,142,144,145,149,150,153,154,157,158,162,165,167,169,173,177,181
  990. }
  991. GeometryVersion: 124
  992. LayerElementNormal: 0 {
  993. Version: 101
  994. Name: ""
  995. MappingInformationType: "ByPolygonVertex"
  996. ReferenceInformationType: "Direct"
  997. Normals: *564 {
  998. a: 4.44710757108169e-008,-0.909219145774841,-0.416317969560623,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,2.58501586358761e-007,-0.995902836322784,0.0904304906725883,2.58501586358761e-007,-0.99590277671814,0.0904304906725883,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,2.74791496224225e-008,0.99321049451828,-0.116331242024899,-3.23627176612717e-007,0.727757394313812,0.68583470582962,-3.23627148191008e-007,0.727757453918457,0.685834646224976,2.74781406517377e-008,0.993210554122925,-0.116329796612263,0.981909334659576,0.187957853078842,-0.0229327920824289,0.982997357845306,0.177996918559074,0.0450910553336143,0.938536465167999,0.21654962003231,-0.268803894519806,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.982990562915802,0.183441579341888,0.00886562094092369,-0.995148360729218,0.081681527197361,0.0548443235456944,1.00857654672382e-007,0.478616148233414,0.878024220466614,8.14175280083873e-007,-0.41873824596405,0.908106982707977,8.14291126971511e-007,-0.418614625930786,0.908163964748383,1.00537725700178e-007,0.478743195533752,0.877954959869385,1.37581753278937e-006,-0.418724179267883,0.908113479614258,4.66176857116807e-008,0.478629797697067,0.878016829490662,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.37565484692459e-006,-0.418630361557007,0.908156752586365,-1.08653375718859e-006,0.95754611492157,0.288280010223389,1.00857654672382e-007,0.478616148233414,0.878024220466614,1.00537725700178e-007,0.478743195533752,0.877954959869385,-1.0865470585486e-006,0.957556307315826,0.288246423006058,4.66176857116807e-008,0.478629797697067,0.878016829490662,6.7395426128769e-008,0.957547247409821,0.288276493549347,6.74466420491626e-008,0.957555592060089,0.288248807191849,4.64939162725386e-008,0.478728741407394,0.877962827682495,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.37581753278937e-006,-0.418724179267883,0.908113479614258,
  999. 1.37565484692459e-006,-0.418630361557007,0.908156752586365,1.59860996973293e-006,-0.940313279628754,0.340310156345367,8.14175280083873e-007,-0.41873824596405,0.908106982707977,5.00284102145088e-007,-0.940321147441864,0.340288281440735,5.00276144066447e-007,-0.940313160419464,0.340310275554657,8.14291126971511e-007,-0.418614625930786,0.908163964748383,5.00284102145088e-007,-0.940321147441864,0.340288281440735,-0.00394238950684667,-0.847836792469025,-0.530242502689362,-0.00397934997454286,-0.844639360904694,-0.535321116447449,5.00276144066447e-007,-0.940313160419464,0.340310275554657,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00394507823511958,-0.847837686538696,-0.530241191387177,1.5985884829206e-006,-0.940319061279297,0.340294152498245,1.59860996973293e-006,-0.940313279628754,0.340310156345367,6.7395426128769e-008,0.957547247409821,0.288276493549347,5.91617947520717e-007,0.999952733516693,-0.00972198694944382,5.91618004364136e-007,0.999952793121338,-0.00972198788076639,6.74466420491626e-008,0.957555592060089,0.288248807191849,-1.14892100100406e-006,0.999952673912048,-0.00972215924412012,-1.08653375718859e-006,0.95754611492157,0.288280010223389,-1.0865470585486e-006,0.957556307315826,0.288246423006058,-1.14892111469089e-006,0.999952793121338,-0.00972215924412012,0.991193056106567,0.110595740377903,0.0728347525000572,0.999999940395355,0.000291181000648066,0.000403401500079781,1,0.000305500696413219,0.000140330230351537,0.995189428329468,0.0817648619413376,0.05396793410182,-1,0.000367543805623427,0.000172826199559495,-0.99999988079071,0.000350344431353733,0.000488451041746885,-0.991123676300049,0.110461831092834,0.0739734470844269,-0.995148360729218,0.081681527197361,0.0548443235456944,-0.00666291266679764,-0.423480898141861,-0.905880510807037,-0.00666291266679764,-0.423480868339539,-0.905880510807037,-0.00397934997454286,-0.844639360904694,-0.535321116447449,-0.00394238950684667,-0.847836792469025,-0.530242502689362,0.00398201635107398,-0.844642579555511,-0.535315811634064,0.00666577974334359,-0.42348051071167,-0.905880749225616,
  1000. 0.0066657792776823,-0.42348051071167,-0.905880689620972,0.00394507823511958,-0.847837686538696,-0.530241191387177,-0.0044444901868701,0.67338353395462,0.739280045032501,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.00688986293971539,0.350031852722168,0.936712503433228,-0.0068898624740541,0.350031852722168,0.936712443828583,0.00689009018242359,0.350031703710556,0.936712443828583,0.00292409467510879,0.767534494400024,0.641001045703888,0.00444498751312494,0.673383235931396,0.73928028345108,0.00689009018242359,0.350031733512878,0.936712503433228,1,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03629075360368e-006,0.999999940395355,0.000313522235956043,-7.03628984410898e-006,1,0.000313522235956043,-7.03628984410898e-006,1,0.000305500696413219,0.000140330230351537,0.999999940395355,0.000291181000648066,0.000403401500079781,-0.999999940395355,0.000377178512280807,-3.98013116864604e-006,-1,0.000377178541384637,-3.98013162339339e-006,-0.99999988079071,0.000377178483176976,-3.98013116864604e-006,-0.999999940395355,0.000377178483176976,-3.98013116864604e-006,-0.99999988079071,0.000350344431353733,0.000488451041746885,-1,0.000367543805623427,0.000172826199559495,2.74781406517377e-008,0.993210554122925,-0.116329796612263,2.89497421590568e-007,0.874788641929626,-0.484504669904709,2.89497450012277e-007,0.874788641929626,-0.484504729509354,2.74791496224225e-008,0.99321049451828,-0.116331242024899,4.44745893446452e-008,-0.909222424030304,-0.41631081700325,-2.10690288326987e-007,-0.520867049694061,-0.853637933731079,-2.10690245694423e-007,-0.520866990089417,-0.853637754917145,-2.10690274116132e-007,-0.520867049694061,-0.853637933731079,4.44710757108169e-008,-0.909219145774841,-0.416317969560623,1.76881684410546e-007,-0.441892832517624,0.897067904472351,1.76881684410546e-007,-0.441892832517624,0.897067844867706,1.76881684410546e-007,-0.441892802715302,0.897067844867706,1.76881698621401e-007,-0.441892832517624,0.897067904472351,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-1.04934470073204e-005,-8.07480464573018e-005,
  1001. -1,-4.17995288444217e-005,8.87675560079515e-006,-1,-7.75585795054212e-005,4.13079469581135e-005,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-0.00012170282570878,5.09969067934435e-005,1,-0.00012107447400922,5.15745559823699e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848571269773e-005,-0.000175496694282629,1,-2.15647105505923e-005,-8.25632669148035e-005,1,-6.66302512399852e-005,2.09754107345361e-005,1,1.88848553079879e-005,-0.000175496694282629,-1,-1.04934470073204e-005,-8.07480464573018e-005,-0.999999940395355,1.76060439116554e-005,-0.000161192860105075,-1,1.76060475496342e-005,-0.00016119287465699,-1,-4.17995288444217e-005,8.87675560079515e-006,1,-0.00012170282570878,5.09969067934435e-005,1,-0.000171482024597935,5.23620974490768e-006,1,-0.000171482024597935,5.23620974490768e-006,1,-0.00012107447400922,5.15745559823699e-005,-0.999999940395355,-0.000109036707726773,1.13971454993589e-005,-1,-7.7951030107215e-005,4.09350395784713e-005,-1,-7.75585795054212e-005,4.13079469581135e-005,-1,-0.000109036707726773,1.13971464088536e-005,-0.981881737709045,0.188048273324966,-0.023366117849946,-0.938532829284668,0.216566041111946,-0.26880344748497,-0.982990562915802,0.183441579341888,0.00886562094092369,0.981909334659576,0.187957853078842,-0.0229327920824289,0.991193056106567,0.110595740377903,0.0728347525000572,0.995189428329468,0.0817648619413376,0.05396793410182,0.979672253131866,0.167647048830986,0.110167257487774,0.982997357845306,0.177996918559074,0.0450910553336143,0.00132380367722362,0.902004957199097,0.431723564863205,0.00444498751312494,0.673383235931396,0.73928028345108,0.00292409467510879,0.767534494400024,0.641001045703888,0.000698961492162198,0.804160416126251,0.594411849975586,0.00132380367722362,0.902005076408386,0.431723594665527,0.00292409467510879,0.767534494400024,0.641001045703888,-0.00292389816604555,0.767535150051117,0.641000270843506,-0.000698878196999431,0.804160177707672,0.594412207603455,0.000698961492162198,0.804160416126251,0.594411849975586,-0.00292389816604555,0.767535150051117,0.641000270843506,
  1002. -0.0044444901868701,0.67338353395462,0.739280045032501,-0.00132311077322811,0.902004957199097,0.431723594665527,-0.00132311077322811,0.902005076408386,0.431723594665527,-0.000698878196999431,0.804160177707672,0.594412207603455,0.0026144296862185,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,0.00125286937691271,0.56026417016983,-0.828312933444977,0.00261442922055721,0.5606330037117,-0.828060269355774,0.00146254617720842,0.560321092605591,-0.828274190425873,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00125175062566996,0.560264050960541,-0.828313112258911,0.00125286937691271,0.56026417016983,-0.828312933444977,-0.0014613086823374,0.560320913791656,-0.828274369239807,-0.00261251977644861,0.560632586479187,-0.828060448169708,-0.00261252000927925,0.560632586479187,-0.828060567378998,-0.00125175062566996,0.560264050960541,-0.828313112258911,-0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999820351600647,0.000929871632251889,0.0189350247383118,-0.999820291996002,0.000929871632251889,0.0189350228756666,-0.999723613262177,0.000508760975208133,0.023502541705966,0.000698961492162198,0.804160416126251,0.594411849975586,-0.000698878196999431,0.804160177707672,0.594412207603455,-3.23627148191008e-007,0.727757453918457,0.685834646224976,-3.23627176612717e-007,0.727757394313812,0.68583470582962,0.999820232391357,0.000929440720938146,0.0189350731670856,0.999698400497437,0.000410573615226895,0.024554206058383,0.999723792076111,0.000508232857100666,0.0234966650605202,0.999820291996002,0.000929440779145807,0.0189350750297308,0.999698400497437,0.000410573615226895,0.024554206058383,0.999579310417175,-3.20250990171189e-007,0.0290033705532551,0.999579250812531,-3.2025096174948e-007,0.0290033705532551,0.999723792076111,0.000508232857100666,0.0234966650605202,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,1.4293560468559e-007,-1.0545096529313e-007,-1,-0.999579012393951,3.25778501064633e-007,0.0290164034813643,
  1003. -0.999698221683502,0.000411124463425949,0.0245614536106586,-0.999723613262177,0.000508760975208133,0.023502541705966,-0.999578952789307,3.25778472642924e-007,0.029016399756074
  1004. }
  1005. }
  1006. LayerElementUV: 0 {
  1007. Version: 101
  1008. Name: "UVChannel_1"
  1009. MappingInformationType: "ByPolygonVertex"
  1010. ReferenceInformationType: "IndexToDirect"
  1011. UV: *232 {
  1012. a: 0.718026459217072,0.77487576007843,0.620723366737366,0.757407307624817,0.596680104732513,0.738339424133301,0.596680581569672,0.712196469306946,0.620804965496063,0.738332629203796,0.620804965496063,0.712202906608582,0.739280164241791,0.83125376701355,0.719395160675049,0.831258416175842,0.739281117916107,0.812187194824219,0.71939605474472,0.812187790870667,0.739280581474304,0.782818078994751,0.838054597377777,0.951547503471375,0.739281535148621,0.801884651184082,0.754231631755829,0.83125102519989,0.754231631755829,0.812186241149902,0.897790968418121,0.951700747013092,0.754231989383698,0.782820224761963,0.754231989383698,0.801884889602661,0.719395577907562,0.782814621925354,0.719396471977234,0.80188524723053,0.703923761844635,0.782812595367432,0.70392382144928,0.80188512802124,0.703923344612122,0.831261396408081,0.703923344612122,0.812188863754272,0.815214335918427,0.782819628715515,0.815412402153015,0.801885843276978,0.815214157104492,0.831251382827759,0.815411984920502,0.812184929847717,0.477487474679947,0.694524645805359,0.596754252910614,0.693118572235107,0.62241119146347,0.921994090080261,0.706267833709717,0.870061635971069,0.706582188606262,0.846180737018585,0.516720473766327,0.712422013282776,0.477449089288712,0.711787581443787,0.741542220115662,0.899407804012299,0.725823402404785,0.864745438098907,0.797700226306915,0.871967494487762,0.804308772087097,0.857978463172913,0.795360147953033,0.84022045135498,0.780576944351196,0.837988197803497,0.620723247528076,0.693125605583191,0.516720473766327,0.738112807273865,0.744551301002502,0.936707198619843,0.744992017745972,0.912827551364899,0.828948795795441,0.861124336719513,0.725418031215668,0.91799008846283,0.70999151468277,0.883196711540222,0.67041951417923,0.944260239601135,0.655656754970551,0.941896498203278,0.646866798400879,0.924059629440308,0.653600335121155,0.910129368305206,0.596754014492035,0.75741708278656,0.477487474679947,0.756010413169861,0.477449089288712,0.738747954368591,0.430597931146622,0.757376313209534,0.445260912179947,0.739231944084167,
  1013. 0.430597931146622,0.69315779209137,0.898675858974457,0.988852143287659,0.445260912179947,0.711302757263184,0.641465961933136,0.831261038780212,0.837500035762787,0.988695561885834,0.897790968418121,0.951700747013092,0.838054597377777,0.951547503471375,0.837500035762787,0.988695561885834,0.898675858974457,0.988852143287659,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.906716048717499,0.927132546901703,0.917275965213776,0.948188126087189,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.82602071762085,0.959810853004456,0.825730443000793,0.979224443435669,0.64126980304718,0.812180638313293,0.641270160675049,0.801890969276428,0.829830408096313,0.861753284931183,0.641466617584229,0.78281307220459,0.736806809902191,0.958201229572296,0.751931846141815,0.958514451980591,0.75193178653717,0.984212756156921,0.736806809902191,0.984525918960571,0.716640710830688,0.985037744045258,0.716640710830688,0.957689106464386,0.593630135059357,0.967060565948486,0.576833307743073,0.932457089424133,0.813144505023956,0.983926892280579,0.593630373477936,0.967059254646301,0.567607462406158,0.984849274158478,0.65485680103302,0.957688987255096,0.587353765964508,0.845670938491821,0.578437149524689,0.891691327095032,0.872810304164886,0.891484797000885,0.863814532756805,0.937489688396454,0.595621585845947,0.83153247833252,0.595474302768707,0.812455534934998,0.595474541187286,0.801614880561829,0.595622301101685,0.782540321350098,0.842023074626923,0.782634735107422,0.842182636260986,0.801697611808777,0.842182099819183,0.81237268447876,0.842023015022278,0.831435561180115,0.718025743961334,0.675657987594604,0.768527030944824,0.693138957023621,0.768527567386627,0.757394671440125,0.719111800193787,0.774500250816345,0.813144564628601,0.958800733089447,0.576834440231323,0.932455122470856,0.65485680103302,0.985037624835968,0.567607700824738,0.984851658344269,0.639064133167267,0.966812372207642,0.634734570980072,0.952316701412201,0.63473516702652,0.952316701412201,0.639064133167267,0.966812372207642,0.629389941692352,
  1014. 0.984513282775879,0.629390180110931,0.984513521194458
  1015. }
  1016. UVIndex: *188 {
  1017. a: 0,1,4,5,41,102,78,79,80,81,93,76,92,32,90,30,31,6,7,9,8,18,10,12,19,13,6,8,14,10,16,17,12,20,18,19,21,7,22,23,9,22,60,74,23,75,77,20,21,16,24,25,17,26,13,14,27,43,46,47,44,35,36,32,31,94,95,74,60,75,96,97,77,98,99,25,24,27,100,101,26,48,49,50,51,47,46,37,38,39,40,36,35,81,82,83,78,102,103,104,105,0,2,3,5,4,11,15,58,61,62,63,64,65,66,62,65,67,15,68,69,58,63,70,71,64,72,11,61,73,90,91,30,93,43,44,45,76,28,29,3,33,34,3,2,42,33,2,52,53,54,42,53,55,56,54,55,57,59,56,57,28,34,59,84,85,111,110,106,86,80,79,107,87,113,112,87,88,114,113,108,89,83,82,109,84,110,115
  1018. }
  1019. }
  1020. LayerElementSmoothing: 0 {
  1021. Version: 102
  1022. Name: ""
  1023. MappingInformationType: "ByPolygon"
  1024. ReferenceInformationType: "Direct"
  1025. Smoothing: *45 {
  1026. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  1027. }
  1028. }
  1029. LayerElementMaterial: 0 {
  1030. Version: 101
  1031. Name: ""
  1032. MappingInformationType: "AllSame"
  1033. ReferenceInformationType: "IndexToDirect"
  1034. Materials: *1 {
  1035. a: 0
  1036. }
  1037. }
  1038. Layer: 0 {
  1039. Version: 100
  1040. LayerElement: {
  1041. Type: "LayerElementNormal"
  1042. TypedIndex: 0
  1043. }
  1044. LayerElement: {
  1045. Type: "LayerElementMaterial"
  1046. TypedIndex: 0
  1047. }
  1048. LayerElement: {
  1049. Type: "LayerElementSmoothing"
  1050. TypedIndex: 0
  1051. }
  1052. LayerElement: {
  1053. Type: "LayerElementUV"
  1054. TypedIndex: 0
  1055. }
  1056. }
  1057. }
  1058. Geometry: 86834416, "Geometry::", "Mesh" {
  1059. Properties70: {
  1060. P: "Color", "ColorRGB", "Color", "",0,0,0
  1061. }
  1062. Vertices: *78 {
  1063. a: 2.19355082511902,-3.46841621398926,1.41854381561279,-2.1934597492218,-3.46842384338379,1.41855144500732,2.1944055557251,3.34444046020508,1.26800346374512,-2.19440031051636,3.34444046020508,1.26800346374512,-5.79921913146973,3.49526977539063,-13.3516530990601,5.79886341094971,3.49526977539063,-13.3516492843628,5.71111631393433,-3.55295944213867,-10.0958890914917,-5.87265682220459,9.94716644287109,-35.5147666931152,5.87142896652222,9.94712829589844,-35.5146369934082,1.18374192714691,0.320854187011719,-45.6312294006348,-1.18253231048584,0.320827484130859,-45.6311187744141,1.35103595256805,4.6059684753418,-52.0008010864258,-1.35107696056366,4.60597229003906,-52.0008201599121,2.19440460205078,-3.55268478393555,-10.0947523117065,-2.19440126419067,-3.55268478393555,-10.0947523117065,2.19525980949402,3.4949836730957,-13.3527822494507,-2.19534111022949,3.49499893188477,-13.3527956008911,2.19375205039978,-1.8631420135498,3.63425731658936,2.19420409202576,1.73915863037109,3.55465221405029,-2.19417858123779,1.73915863037109,3.55465221405029,-2.19368124008179,-1.8631420135498,3.63425731658936,-8.89849472045898,2.05113983154297,-30.593433380127,8.89828205108643,2.05117034912109,-30.5935478210449,-9.30727291107178,-4.64540481567383,-30.6022491455078,9.304762840271,-4.64543914794922,-30.6021308898926,-5.71118211746216,-3.55296325683594,-10.0958852767944
  1064. }
  1065. PolygonVertexIndex: *90 {
  1066. a: 11,12,7,-9,18,19,20,-18,16,3,2,-16,0,1,14,-14,7,12,-11,9,10,12,-12,17,0,13,15,2,-19,19,3,16,14,1,-21,14,16,4,-26,15,13,6,-6,2,3,19,-19,1,0,17,-21,9,11,-9,10,23,21,-8,23,24,6,13,14,-26,5,6,24,-23,22,24,9,-9,10,9,24,-24,8,7,21,-23,21,23,25,-5,22,21,4,16,15,-6
  1067. }
  1068. Edges: *45 {
  1069. a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,18,19,22,23,25,27,29,31,33,36,37,38,40,41,42,53,54,55,56,58,59,63,66,67,69,71,78,83
  1070. }
  1071. GeometryVersion: 124
  1072. LayerElementNormal: 0 {
  1073. Version: 101
  1074. Name: ""
  1075. MappingInformationType: "ByPolygonVertex"
  1076. ReferenceInformationType: "Direct"
  1077. Normals: *270 {
  1078. a: 5.93501590628875e-006,0.951318740844727,-0.308208674192429,5.93501590628875e-006,0.951318800449371,-0.308208674192429,5.9350154515414e-006,0.951318740844727,-0.308208644390106,5.93501590628875e-006,0.951318860054016,-0.308208703994751,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,0,0.0220930092036724,0.999755918979645,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,9.01636610706191e-007,0.951974272727966,0.306178033351898,9.01632802197128e-007,0.951973915100098,0.306179255247116,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.09704194528604e-006,-0.950128376483917,0.311859160661697,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-0.943988382816315,-0.284816920757294,-0.166629120707512,-0.945601105690002,-0.166950970888138,-0.279223829507828,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-6.33586159892729e-006,-0.82971602678299,-0.558185815811157,-6.33586159892729e-006,-0.82971602678299,-0.558185756206512,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438318759203,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,1,-0.000109438333311118,5.76263264520094e-005,1,-0.000109438326035161,5.76263264520094e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324373710901,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,-1,-0.000120324366434943,6.35063406662084e-005,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000045036373e-007,0.419482976198196,0.907763183116913,7.59000101879792e-007,0.419483006000519,0.907763242721558,7.59000101879792e-007,0.419483006000519,0.907763123512268,
  1079. -1.89759475688334e-007,0.419482380151749,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763481140137,-1.89759489899188e-007,0.419482409954071,0.907763481140137,-1.89759461477479e-007,0.419482380151749,0.907763421535492,9.01632802197128e-007,0.951973915100098,0.306179255247116,9.01636610706191e-007,0.951974272727966,0.306178033351898,0,0.818452954292297,0.574573516845703,0,0.818452954292297,0.574573516845703,1.09704194528604e-006,-0.950128376483917,0.311859160661697,1.09704171791236e-006,-0.950128436088562,0.311858773231506,1.21404855235596e-006,-0.809803426265717,0.586701214313507,1.21404855235596e-006,-0.809803485870361,0.586701214313507,0.945631086826324,-0.166806280612946,-0.279208689928055,0.944055140018463,-0.28458034992218,-0.16665555536747,0.915561258792877,-0.0233527943491936,-0.401499927043915,-0.945601105690002,-0.166950970888138,-0.279223829507828,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.915535926818848,-0.0233727525919676,-0.401556611061096,-7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,-1.21686173315538e-006,-0.998583674430847,0.0532044656574726,-5.19457557857095e-007,-0.99928092956543,0.0379169918596745,-5.19481034189084e-007,-0.99928092956543,0.037917498499155,-1.21686150578171e-006,-0.998583614826202,0.053204458206892,0.983405351638794,0.0629978999495506,0.17013281583786,0.983405351638794,0.0629978999495506,0.170132830739021,0.990401387214661,0.0618207827210426,-0.123625583946705,0.973206758499146,0.0601941086351871,-0.221912324428558,0.973206758499146,0.0601941086351871,-0.221912324428558,0.990401387214661,0.0618207827210426,-0.123625583946705,0.945631086826324,-0.166806280612946,-0.279208689928055,0.915561258792877,-0.0233527943491936,-0.401499927043915,-2.92998902295949e-006,-0.905350744724274,-0.424664556980133,-2.9301343147381e-006,-0.905348062515259,-0.424670368432999,-7.96398637703533e-007,-0.993929028511047,-0.110022887587547,
  1080. -7.96416486537055e-007,-0.993929862976074,-0.110016219317913,-3.01873456010071e-007,0.528933107852936,0.848663449287415,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933167457581,0.848663508892059,-3.01873484431781e-007,0.528933107852936,0.848663449287415,-0.973194420337677,0.0602872632443905,-0.221941411495209,-0.990393936634064,0.0619309470057487,-0.123630680143833,-0.983387589454651,0.0631496086716652,0.170179396867752,-0.983387529850006,0.0631496012210846,0.170179381966591,-1.34919184802129e-006,0.996511220932007,-0.0834584534168243,-1.34919184802129e-006,0.996511161327362,-0.0834584534168243,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049,-3.25644009535608e-007,0.998633801937103,-0.0522555969655514,-3.25638751519364e-007,0.998633742332459,-0.0522554330527782,-1.34919196170813e-006,0.996511280536652,-0.0834584608674049
  1081. }
  1082. }
  1083. LayerElementUV: 0 {
  1084. Version: 101
  1085. Name: "UVChannel_1"
  1086. MappingInformationType: "ByPolygonVertex"
  1087. ReferenceInformationType: "IndexToDirect"
  1088. UV: *120 {
  1089. a: 0.900907397270203,0.51922208070755,0.900910019874573,0.538964569568634,0.900911092758179,0.554273664951324,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.968482136726379,0.643178880214691,0.928401708602905,0.644879758358002,0.912504732608795,0.863914310932159,0.931023716926575,0.960283517837524,0.959636151790619,0.929436683654785,0.810051441192627,0.647458672523499,0.809129953384399,0.689522385597229,0.967708349227905,0.625024497509003,0.927610993385315,0.626275658607483,0.927610993385315,0.626275658607483,0.967708349227905,0.625024497509003,0.876864552497864,0.538964569568634,0.876863718032837,0.554273664951324,0.876867055892944,0.51922208070755,0.876858592033386,0.634389698505402,0.912504732608795,0.863914310932159,0.867547750473022,0.560738444328308,0.995323896408081,0.696268200874329,0.993189573287964,0.710242807865143,0.976453185081482,0.718396544456482,0.96367084980011,0.711688816547394,0.96367084980011,0.711688816547394,0.976453185081482,0.718396544456482,0.993189573287964,0.710242807865143,0.995323896408081,0.696268200874329,0.896290719509125,0.875123560428619,0.881484925746918,0.875123560428619,0.856709659099579,0.780168116092682,0.921059310436249,0.780168116092682,0.9009108543396,0.441142708063126,0.900906324386597,0.504229485988617,0.876868486404419,0.504229485988617,0.876863241195679,0.441142708063126,0.95849609375,0.836354374885559,0.765566110610962,0.560722947120667,0.785273790359497,0.448206067085266,0.804542541503906,0.44820249080658,0.828590154647827,0.448206067085266,0.847859382629395,0.448215126991272,0.937644243240356,0.729188024997711,0.840129971504211,0.729188024997711,0.955485343933105,0.740087985992432,0.958487033843994,0.836354076862335,0.955477714538574,0.740089356899261,0.823935508728027,0.689524054527283,0.931023716926575,0.960283517837524,0.90091609954834,0.634389698505402,0.920661449432373,0.634383499622345,0.857111811637878,0.634383499622345,0.823017358779907,0.647459626197815,0.959636151790619,0.929436683654785,0.995174646377563,0.838666796684265,
  1090. 0.995174646377563,0.838666796684265,0.995033740997314,0.724431157112122,0.995033740997314,0.724431157112122
  1091. }
  1092. UVIndex: *90 {
  1093. a: 30,31,32,33,1,16,18,0,19,17,2,51,35,36,37,34,7,8,9,10,54,49,11,28,29,5,4,26,27,24,25,6,3,22,23,3,6,13,15,4,5,12,14,2,17,16,1,36,35,0,18,55,50,20,9,56,38,7,21,39,40,41,42,43,46,58,57,47,47,57,55,20,54,10,39,21,33,32,45,44,38,56,59,48,44,45,53,19,51,52
  1094. }
  1095. }
  1096. LayerElementSmoothing: 0 {
  1097. Version: 102
  1098. Name: ""
  1099. MappingInformationType: "ByPolygon"
  1100. ReferenceInformationType: "Direct"
  1101. Smoothing: *21 {
  1102. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  1103. }
  1104. }
  1105. LayerElementMaterial: 0 {
  1106. Version: 101
  1107. Name: ""
  1108. MappingInformationType: "AllSame"
  1109. ReferenceInformationType: "IndexToDirect"
  1110. Materials: *1 {
  1111. a: 0
  1112. }
  1113. }
  1114. Layer: 0 {
  1115. Version: 100
  1116. LayerElement: {
  1117. Type: "LayerElementNormal"
  1118. TypedIndex: 0
  1119. }
  1120. LayerElement: {
  1121. Type: "LayerElementMaterial"
  1122. TypedIndex: 0
  1123. }
  1124. LayerElement: {
  1125. Type: "LayerElementSmoothing"
  1126. TypedIndex: 0
  1127. }
  1128. LayerElement: {
  1129. Type: "LayerElementUV"
  1130. TypedIndex: 0
  1131. }
  1132. }
  1133. }
  1134. Model: 86593904, "Model::minebot_main_root", "Null" {
  1135. Version: 232
  1136. Properties70: {
  1137. P: "InheritType", "enum", "", "",1
  1138. P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
  1139. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1140. P: "MaxHandle", "int", "Integer", "U",1
  1141. }
  1142. Shading: T
  1143. Culling: "CullingOff"
  1144. }
  1145. Model: 86351648, "Model::minebot_main", "Mesh" {
  1146. Version: 232
  1147. Properties70: {
  1148. P: "InheritType", "enum", "", "",1
  1149. P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
  1150. P: "GeometricTranslation", "Vector3D", "Vector", "",-7.62939453125e-006,12.2019929885864,-7.62939453125e-006
  1151. P: "GeometricRotation", "Vector3D", "Vector", "",-90.0000076293945,45.0000038146973,0
  1152. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1153. P: "Lcl Translation", "Lcl Translation", "", "A+",-1.16475007416739e-007,-1.56066676026967e-006,27.6431045532227
  1154. P: "Lcl Rotation", "Lcl Rotation", "", "A+",90.0000093346676,-2.73207566800489e-005,90.0000025044781
  1155. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000000000011,1.00000000000013,1.00000000000001
  1156. P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
  1157. P: "MaxHandle", "int", "Integer", "U",2
  1158. }
  1159. Shading: T
  1160. Culling: "CullingOff"
  1161. }
  1162. Model: 86353904, "Model::minebot_right_upperleg", "Mesh" {
  1163. Version: 232
  1164. Properties70: {
  1165. P: "InheritType", "enum", "", "",1
  1166. P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
  1167. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1168. P: "Lcl Translation", "Lcl Translation", "", "A+",-28.1494159698486,-7.95376777648926,1.03962011053227e-005
  1169. P: "Lcl Rotation", "Lcl Rotation", "", "A+",23.9531010485477,-89.3049146033024,-83.2791028720113
  1170. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999974354277,0.999999975914339,0.999999970921596
  1171. P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
  1172. P: "MaxHandle", "int", "Integer", "U",3
  1173. }
  1174. Shading: T
  1175. Culling: "CullingOff"
  1176. }
  1177. Model: 86388944, "Model::minebot_right_lowerleg", "Mesh" {
  1178. Version: 232
  1179. Properties70: {
  1180. P: "InheritType", "enum", "", "",1
  1181. P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
  1182. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1183. P: "Lcl Translation", "Lcl Translation", "", "A+",1.40070915222168e-006,-9.29283237457275,30.6071128845215
  1184. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-90.0137030696003,0.0325114355367871,0.0218782740031604
  1185. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999995474626,0.99999971270664,0.99999998234598
  1186. P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
  1187. P: "MaxHandle", "int", "Integer", "U",4
  1188. }
  1189. Shading: T
  1190. Culling: "CullingOff"
  1191. }
  1192. Model: 86391200, "Model::minebot_head", "Mesh" {
  1193. Version: 232
  1194. Properties70: {
  1195. P: "InheritType", "enum", "", "",1
  1196. P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
  1197. P: "GeometricTranslation", "Vector3D", "Vector", "",9.5367449830519e-006,-22.4767112731934,9.44089515542146e-006
  1198. P: "GeometricRotation", "Vector3D", "Vector", "",-89.9999923706055,-135,-9.6593457783456e-006
  1199. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1200. P: "Lcl Translation", "Lcl Translation", "", "A+",-6.85378563503036e-006,34.6787033081055,-4.38112419942627e-006
  1201. P: "Lcl Rotation", "Lcl Rotation", "", "A+",5.00895531675326e-006,-4.24975994724501e-014,8.65142139482811e-006
  1202. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000000000001,1.00000000000002,1
  1203. P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
  1204. P: "MaxHandle", "int", "Integer", "U",5
  1205. }
  1206. Shading: T
  1207. Culling: "CullingOff"
  1208. }
  1209. Model: 86393456, "Model::minebot_front_upperleg", "Mesh" {
  1210. Version: 232
  1211. Properties70: {
  1212. P: "InheritType", "enum", "", "",1
  1213. P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
  1214. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1215. P: "Lcl Translation", "Lcl Translation", "", "A+",7.15256010153098e-006,-7.95376968383789,-28.1494216918945
  1216. P: "Lcl Rotation", "Lcl Rotation", "", "A+",101.23867650903,20.734624725554,-176.051704728536
  1217. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000001066391,1.00000018721415,0.999999836566053
  1218. P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
  1219. P: "MaxHandle", "int", "Integer", "U",6
  1220. }
  1221. Shading: T
  1222. Culling: "CullingOff"
  1223. }
  1224. Model: 86399824, "Model::minebot_back_lowerleg", "Mesh" {
  1225. Version: 232
  1226. Properties70: {
  1227. P: "InheritType", "enum", "", "",1
  1228. P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
  1229. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1230. P: "Lcl Translation", "Lcl Translation", "", "A+",2.86102294921875e-006,-9.29283142089844,30.6071109771729
  1231. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-60.3703761997105,0.00407890260332801,0.00444271682184583
  1232. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000024395884,1.0000001675631,1.00000029615229
  1233. P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
  1234. P: "MaxHandle", "int", "Integer", "U",7
  1235. }
  1236. Shading: T
  1237. Culling: "CullingOff"
  1238. }
  1239. Model: 86402080, "Model::minebot_left_upperleg", "Mesh" {
  1240. Version: 232
  1241. Properties70: {
  1242. P: "InheritType", "enum", "", "",1
  1243. P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
  1244. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1245. P: "Lcl Translation", "Lcl Translation", "", "A+",28.1494274139404,-7.95376968383789,4.15622707805596e-006
  1246. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-163.537562661969,85.9260770500231,-108.327911243153
  1247. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000001966616,0.999999881624868,0.999999874871959
  1248. P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
  1249. P: "MaxHandle", "int", "Integer", "U",8
  1250. }
  1251. Shading: T
  1252. Culling: "CullingOff"
  1253. }
  1254. Model: 86404336, "Model::minebot_left_lowerleg", "Mesh" {
  1255. Version: 232
  1256. Properties70: {
  1257. P: "InheritType", "enum", "", "",1
  1258. P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
  1259. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1260. P: "Lcl Translation", "Lcl Translation", "", "A+",1.31130218505859e-006,-9.29283618927002,30.6071090698242
  1261. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-80.831762023516,0.0534131623167276,0.00839558809448767
  1262. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999849220622,0.999999901157731,0.999999882061595
  1263. P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
  1264. P: "MaxHandle", "int", "Integer", "U",9
  1265. }
  1266. Shading: T
  1267. Culling: "CullingOff"
  1268. }
  1269. Model: 86617456, "Model::minebot_front_upperleg2", "Mesh" {
  1270. Version: 232
  1271. Properties70: {
  1272. P: "InheritType", "enum", "", "",1
  1273. P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
  1274. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1275. P: "Lcl Translation", "Lcl Translation", "", "A+",1.19209316835622e-005,-7.95376968383789,28.1494255065918
  1276. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-65.4018488042547,-12.6146490627827,-4.69922524877685
  1277. P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999833708745,1.00000000892232,0.999999832147367
  1278. P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
  1279. P: "MaxHandle", "int", "Integer", "U",10
  1280. }
  1281. Shading: T
  1282. Culling: "CullingOff"
  1283. }
  1284. Model: 86605856, "Model::minebot_front_lowerleg", "Mesh" {
  1285. Version: 232
  1286. Properties70: {
  1287. P: "InheritType", "enum", "", "",1
  1288. P: "ScalingMin", "Vector3D", "Vector", "",1,1,1
  1289. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1290. P: "Lcl Translation", "Lcl Translation", "", "A+",1.9073486328125e-006,-9.29283332824707,30.6071090698242
  1291. P: "Lcl Rotation", "Lcl Rotation", "", "A+",-61.0056645211704,0.00193763905784981,-0.00141982540416939
  1292. P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000012008816,1.00000022493556,1.00000001132156
  1293. P: "UDP3DSMAX", "KString", "", "U", "MapChannel:1 = UVChannel_1&cr;&lf;"
  1294. P: "MaxHandle", "int", "Integer", "U",11
  1295. }
  1296. Shading: T
  1297. Culling: "CullingOff"
  1298. }
  1299. Material: 86629280, "Material::01 - Default", "" {
  1300. Version: 102
  1301. ShadingModel: "phong"
  1302. MultiLayer: 0
  1303. Properties70: {
  1304. P: "ShadingModel", "KString", "", "", "phong"
  1305. P: "EmissiveFactor", "Number", "", "A",0
  1306. P: "AmbientColor", "Color", "", "A",0.588235318660736,0.588235318660736,0.588235318660736
  1307. P: "DiffuseColor", "Color", "", "A",0.588235318660736,0.588235318660736,0.588235318660736
  1308. P: "BumpFactor", "double", "Number", "",0.300000011920929
  1309. P: "TransparentColor", "Color", "", "A",1,1,1
  1310. P: "SpecularColor", "Color", "", "A",0.899999976158142,0.899999976158142,0.899999976158142
  1311. P: "SpecularFactor", "Number", "", "A",0
  1312. P: "ShininessExponent", "Number", "", "A",1.99999991737042
  1313. P: "Emissive", "Vector3D", "Vector", "",0,0,0
  1314. P: "Ambient", "Vector3D", "Vector", "",0.588235318660736,0.588235318660736,0.588235318660736
  1315. P: "Diffuse", "Vector3D", "Vector", "",0.588235318660736,0.588235318660736,0.588235318660736
  1316. P: "Specular", "Vector3D", "Vector", "",0,0,0
  1317. P: "Shininess", "double", "Number", "",1.99999991737042
  1318. P: "Opacity", "double", "Number", "",1
  1319. P: "Reflectivity", "double", "Number", "",0
  1320. }
  1321. }
  1322. Video: 86433568, "Video::Map #1", "Clip" {
  1323. Type: "Clip"
  1324. Properties70: {
  1325. P: "Path", "KString", "XRefUrl", "", "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
  1326. }
  1327. UseMipMap: 0
  1328. Filename: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
  1329. RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
  1330. }
  1331. Video: 86434208, "Video::Map #2", "Clip" {
  1332. Type: "Clip"
  1333. Properties70: {
  1334. P: "Path", "KString", "XRefUrl", "", "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
  1335. }
  1336. UseMipMap: 0
  1337. Filename: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
  1338. RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
  1339. }
  1340. Texture: 86432064, "Texture::Map #1", "" {
  1341. Type: "TextureVideoClip"
  1342. Version: 202
  1343. TextureName: "Texture::Map #1"
  1344. Properties70: {
  1345. P: "UVSet", "KString", "", "", "UVChannel_1"
  1346. P: "UseMaterial", "bool", "", "",1
  1347. }
  1348. Media: "Video::Map #1"
  1349. FileName: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
  1350. RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_diffuse.TIF"
  1351. ModelUVTranslation: 0,0
  1352. ModelUVScaling: 1,1
  1353. Texture_Alpha_Source: "Alpha_Black"
  1354. Cropping: 0,0,0,0
  1355. }
  1356. Texture: 86432816, "Texture::Map #2", "" {
  1357. Type: "TextureVideoClip"
  1358. Version: 202
  1359. TextureName: "Texture::Map #2"
  1360. Properties70: {
  1361. P: "UVSet", "KString", "", "", "UVChannel_1"
  1362. P: "UseMaterial", "bool", "", "",1
  1363. }
  1364. Media: "Video::Map #2"
  1365. FileName: "C:\Users\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
  1366. RelativeFilename: "..\..\..\..\..\..\..\..\bret.church\Desktop\SIDE_JOB\Minibot\Users\Roald\Desktop\minebot_normals.TIF"
  1367. ModelUVTranslation: 0,0
  1368. ModelUVScaling: 1,1
  1369. Texture_Alpha_Source: "Alpha_Black"
  1370. Cropping: 0,0,0,0
  1371. }
  1372. AnimationStack: 86654528, "AnimStack::Take 001", "" {
  1373. Properties70: {
  1374. P: "LocalStop", "KTime", "Time", "",18474463200
  1375. P: "ReferenceStop", "KTime", "Time", "",18474463200
  1376. }
  1377. }
  1378. AnimationLayer: 85981904, "AnimLayer::BaseLayer", "" {
  1379. }
  1380. AnimationCurveNode: 87082512, "AnimCurveNode::R", "" {
  1381. Properties70: {
  1382. P: "d|X", "Number", "", "A+",0
  1383. P: "d|Y", "Number", "", "A+",0
  1384. P: "d|Z", "Number", "", "A+",0
  1385. }
  1386. }
  1387. AnimationCurveNode: 87246688, "AnimCurveNode::S", "" {
  1388. Properties70: {
  1389. P: "d|X", "Number", "", "A+",1
  1390. P: "d|Y", "Number", "", "A+",1
  1391. P: "d|Z", "Number", "", "A+",1
  1392. }
  1393. }
  1394. AnimationCurveNode: 87247056, "AnimCurveNode::T", "" {
  1395. Properties70: {
  1396. P: "d|X", "Number", "", "A+",-1.16475007416739e-007
  1397. P: "d|Y", "Number", "", "A+",-1.56066676026967e-006
  1398. P: "d|Z", "Number", "", "A+",27.6431045532227
  1399. }
  1400. }
  1401. AnimationCurveNode: 87255632, "AnimCurveNode::R", "" {
  1402. Properties70: {
  1403. P: "d|X", "Number", "", "A+",90.0000093346676
  1404. P: "d|Y", "Number", "", "A+",-2.73207566800489e-005
  1405. P: "d|Z", "Number", "", "A+",90.0000025044781
  1406. }
  1407. }
  1408. AnimationCurveNode: 87272400, "AnimCurveNode::S", "" {
  1409. Properties70: {
  1410. P: "d|X", "Number", "", "A+",1.00000000000011
  1411. P: "d|Y", "Number", "", "A+",1.00000000000013
  1412. P: "d|Z", "Number", "", "A+",1.00000000000001
  1413. }
  1414. }
  1415. AnimationCurveNode: 87272768, "AnimCurveNode::R", "" {
  1416. Properties70: {
  1417. P: "d|X", "Number", "", "A+",23.9531010485477
  1418. P: "d|Y", "Number", "", "A+",-89.3049146033024
  1419. P: "d|Z", "Number", "", "A+",-83.2791028720113
  1420. }
  1421. }
  1422. AnimationCurveNode: 87273136, "AnimCurveNode::S", "" {
  1423. Properties70: {
  1424. P: "d|X", "Number", "", "A+",0.999999974354277
  1425. P: "d|Y", "Number", "", "A+",0.999999975914339
  1426. P: "d|Z", "Number", "", "A+",0.999999970921596
  1427. }
  1428. }
  1429. AnimationCurveNode: 87273504, "AnimCurveNode::R", "" {
  1430. Properties70: {
  1431. P: "d|X", "Number", "", "A+",-90.0137030696003
  1432. P: "d|Y", "Number", "", "A+",0.0325114355367871
  1433. P: "d|Z", "Number", "", "A+",0.0218782740031604
  1434. }
  1435. }
  1436. AnimationCurveNode: 86954048, "AnimCurveNode::S", "" {
  1437. Properties70: {
  1438. P: "d|X", "Number", "", "A+",0.999999995474626
  1439. P: "d|Y", "Number", "", "A+",0.99999971270664
  1440. P: "d|Z", "Number", "", "A+",0.99999998234598
  1441. }
  1442. }
  1443. AnimationCurveNode: 86954416, "AnimCurveNode::R", "" {
  1444. Properties70: {
  1445. P: "d|X", "Number", "", "A+",5.00895531675326e-006
  1446. P: "d|Y", "Number", "", "A+",-4.24975994724501e-014
  1447. P: "d|Z", "Number", "", "A+",8.65142139482811e-006
  1448. }
  1449. }
  1450. AnimationCurveNode: 87284144, "AnimCurveNode::S", "" {
  1451. Properties70: {
  1452. P: "d|X", "Number", "", "A+",1.00000000000001
  1453. P: "d|Y", "Number", "", "A+",1.00000000000002
  1454. P: "d|Z", "Number", "", "A+",1
  1455. }
  1456. }
  1457. AnimationCurveNode: 87284512, "AnimCurveNode::R", "" {
  1458. Properties70: {
  1459. P: "d|X", "Number", "", "A+",101.23867650903
  1460. P: "d|Y", "Number", "", "A+",20.734624725554
  1461. P: "d|Z", "Number", "", "A+",-176.051704728536
  1462. }
  1463. }
  1464. AnimationCurveNode: 87284880, "AnimCurveNode::S", "" {
  1465. Properties70: {
  1466. P: "d|X", "Number", "", "A+",1.00000001066391
  1467. P: "d|Y", "Number", "", "A+",1.00000018721415
  1468. P: "d|Z", "Number", "", "A+",0.999999836566053
  1469. }
  1470. }
  1471. AnimationCurveNode: 87285248, "AnimCurveNode::R", "" {
  1472. Properties70: {
  1473. P: "d|X", "Number", "", "A+",-60.3703761997105
  1474. P: "d|Y", "Number", "", "A+",0.00407890260332801
  1475. P: "d|Z", "Number", "", "A+",0.00444271682184583
  1476. }
  1477. }
  1478. AnimationCurveNode: 87285616, "AnimCurveNode::S", "" {
  1479. Properties70: {
  1480. P: "d|X", "Number", "", "A+",1.00000024395884
  1481. P: "d|Y", "Number", "", "A+",1.0000001675631
  1482. P: "d|Z", "Number", "", "A+",1.00000029615229
  1483. }
  1484. }
  1485. AnimationCurveNode: 87288272, "AnimCurveNode::R", "" {
  1486. Properties70: {
  1487. P: "d|X", "Number", "", "A+",-163.537562661969
  1488. P: "d|Y", "Number", "", "A+",85.9260770500231
  1489. P: "d|Z", "Number", "", "A+",-108.327911243153
  1490. }
  1491. }
  1492. AnimationCurveNode: 87286064, "AnimCurveNode::S", "" {
  1493. Properties70: {
  1494. P: "d|X", "Number", "", "A+",1.00000001966616
  1495. P: "d|Y", "Number", "", "A+",0.999999881624868
  1496. P: "d|Z", "Number", "", "A+",0.999999874871959
  1497. }
  1498. }
  1499. AnimationCurveNode: 87288640, "AnimCurveNode::R", "" {
  1500. Properties70: {
  1501. P: "d|X", "Number", "", "A+",-80.831762023516
  1502. P: "d|Y", "Number", "", "A+",0.0534131623167276
  1503. P: "d|Z", "Number", "", "A+",0.00839558809448767
  1504. }
  1505. }
  1506. AnimationCurveNode: 87286432, "AnimCurveNode::S", "" {
  1507. Properties70: {
  1508. P: "d|X", "Number", "", "A+",0.999999849220622
  1509. P: "d|Y", "Number", "", "A+",0.999999901157731
  1510. P: "d|Z", "Number", "", "A+",0.999999882061595
  1511. }
  1512. }
  1513. AnimationCurveNode: 87287536, "AnimCurveNode::R", "" {
  1514. Properties70: {
  1515. P: "d|X", "Number", "", "A+",-65.4018488042547
  1516. P: "d|Y", "Number", "", "A+",-12.6146490627827
  1517. P: "d|Z", "Number", "", "A+",-4.69922524877685
  1518. }
  1519. }
  1520. AnimationCurveNode: 87286800, "AnimCurveNode::S", "" {
  1521. Properties70: {
  1522. P: "d|X", "Number", "", "A+",0.999999833708745
  1523. P: "d|Y", "Number", "", "A+",1.00000000892232
  1524. P: "d|Z", "Number", "", "A+",0.999999832147367
  1525. }
  1526. }
  1527. AnimationCurveNode: 87287168, "AnimCurveNode::R", "" {
  1528. Properties70: {
  1529. P: "d|X", "Number", "", "A+",-61.0056645211704
  1530. P: "d|Y", "Number", "", "A+",0.00193763905784981
  1531. P: "d|Z", "Number", "", "A+",-0.00141982540416939
  1532. }
  1533. }
  1534. AnimationCurveNode: 87287904, "AnimCurveNode::S", "" {
  1535. Properties70: {
  1536. P: "d|X", "Number", "", "A+",1.00000012008816
  1537. P: "d|Y", "Number", "", "A+",1.00000022493556
  1538. P: "d|Z", "Number", "", "A+",1.00000001132156
  1539. }
  1540. }
  1541. AnimationCurve: 86840352, "AnimCurve::", "" {
  1542. Default: 0
  1543. KeyVer: 4008
  1544. KeyTime: *1 {
  1545. a: 0
  1546. }
  1547. KeyValueFloat: *1 {
  1548. a: 0
  1549. }
  1550. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  1551. KeyAttrFlags: *1 {
  1552. a: 16778248
  1553. }
  1554. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  1555. KeyAttrDataFloat: *4 {
  1556. a: 0,0,218434820,0
  1557. }
  1558. KeyAttrRefCount: *1 {
  1559. a: 1
  1560. }
  1561. Post-Extrapolation: {
  1562. Type: C
  1563. Repetition: 1
  1564. }
  1565. }
  1566. AnimationCurve: 86863408, "AnimCurve::", "" {
  1567. Default: 0
  1568. KeyVer: 4008
  1569. KeyTime: *1 {
  1570. a: 0
  1571. }
  1572. KeyValueFloat: *1 {
  1573. a: 0
  1574. }
  1575. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  1576. KeyAttrFlags: *1 {
  1577. a: 16778248
  1578. }
  1579. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  1580. KeyAttrDataFloat: *4 {
  1581. a: 0,0,218434820,0
  1582. }
  1583. KeyAttrRefCount: *1 {
  1584. a: 1
  1585. }
  1586. Post-Extrapolation: {
  1587. Type: C
  1588. Repetition: 1
  1589. }
  1590. }
  1591. AnimationCurve: 86864768, "AnimCurve::", "" {
  1592. Default: 0
  1593. KeyVer: 4008
  1594. KeyTime: *1 {
  1595. a: 0
  1596. }
  1597. KeyValueFloat: *1 {
  1598. a: 0
  1599. }
  1600. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  1601. KeyAttrFlags: *1 {
  1602. a: 16778248
  1603. }
  1604. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  1605. KeyAttrDataFloat: *4 {
  1606. a: 0,0,218434820,0
  1607. }
  1608. KeyAttrRefCount: *1 {
  1609. a: 1
  1610. }
  1611. Post-Extrapolation: {
  1612. Type: C
  1613. Repetition: 1
  1614. }
  1615. }
  1616. AnimationCurve: 86866128, "AnimCurve::", "" {
  1617. Default: 0
  1618. KeyVer: 4008
  1619. KeyTime: *1 {
  1620. a: 0
  1621. }
  1622. KeyValueFloat: *1 {
  1623. a: 1
  1624. }
  1625. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  1626. KeyAttrFlags: *1 {
  1627. a: 16778248
  1628. }
  1629. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  1630. KeyAttrDataFloat: *4 {
  1631. a: 0,0,218434820,0
  1632. }
  1633. KeyAttrRefCount: *1 {
  1634. a: 1
  1635. }
  1636. Post-Extrapolation: {
  1637. Type: C
  1638. Repetition: 1
  1639. }
  1640. }
  1641. AnimationCurve: 86875856, "AnimCurve::", "" {
  1642. Default: 0
  1643. KeyVer: 4008
  1644. KeyTime: *1 {
  1645. a: 0
  1646. }
  1647. KeyValueFloat: *1 {
  1648. a: 1
  1649. }
  1650. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  1651. KeyAttrFlags: *1 {
  1652. a: 16778248
  1653. }
  1654. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  1655. KeyAttrDataFloat: *4 {
  1656. a: 0,0,218434820,0
  1657. }
  1658. KeyAttrRefCount: *1 {
  1659. a: 1
  1660. }
  1661. Post-Extrapolation: {
  1662. Type: C
  1663. Repetition: 1
  1664. }
  1665. }
  1666. AnimationCurve: 86877376, "AnimCurve::", "" {
  1667. Default: 0
  1668. KeyVer: 4008
  1669. KeyTime: *1 {
  1670. a: 0
  1671. }
  1672. KeyValueFloat: *1 {
  1673. a: 1
  1674. }
  1675. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  1676. KeyAttrFlags: *1 {
  1677. a: 16778248
  1678. }
  1679. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  1680. KeyAttrDataFloat: *4 {
  1681. a: 0,0,218434820,0
  1682. }
  1683. KeyAttrRefCount: *1 {
  1684. a: 1
  1685. }
  1686. Post-Extrapolation: {
  1687. Type: C
  1688. Repetition: 1
  1689. }
  1690. }
  1691. AnimationCurve: 86878896, "AnimCurve::", "" {
  1692. Default: 0
  1693. KeyVer: 4008
  1694. KeyTime: *13 {
  1695. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  1696. }
  1697. KeyValueFloat: *13 {
  1698. a: -1.16475e-007,0.9270519,1.60516,1.86846,1.600921,0.9270514,8.720974e-014,-0.9270514,-1.606805,-1.86846,-1.60516,-0.9212574,-1.16475e-007
  1699. }
  1700. ;KeyAttrFlags: Linear
  1701. KeyAttrFlags: *1 {
  1702. a: 8452
  1703. }
  1704. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1705. KeyAttrDataFloat: *4 {
  1706. a: 0,0,218434821,0
  1707. }
  1708. KeyAttrRefCount: *1 {
  1709. a: 13
  1710. }
  1711. Post-Extrapolation: {
  1712. Type: C
  1713. Repetition: 1
  1714. }
  1715. }
  1716. AnimationCurve: 86880416, "AnimCurve::", "" {
  1717. Default: 0
  1718. KeyVer: 4008
  1719. KeyTime: *13 {
  1720. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  1721. }
  1722. KeyValueFloat: *13 {
  1723. a: -1.560667e-006,-1.27658e-006,-9.067762e-007,-7.229134e-007,-9.090878e-007,-1.276581e-006,-1.560667e-006,-1.556542e-006,-1.390869e-006,-1.287173e-006,-1.391521e-006,-1.556568e-006,-1.560667e-006
  1724. }
  1725. ;KeyAttrFlags: Linear
  1726. KeyAttrFlags: *1 {
  1727. a: 8452
  1728. }
  1729. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1730. KeyAttrDataFloat: *4 {
  1731. a: 0,0,218434821,0
  1732. }
  1733. KeyAttrRefCount: *1 {
  1734. a: 13
  1735. }
  1736. Post-Extrapolation: {
  1737. Type: C
  1738. Repetition: 1
  1739. }
  1740. }
  1741. AnimationCurve: 86947488, "AnimCurve::", "" {
  1742. Default: 0
  1743. KeyVer: 4008
  1744. KeyTime: *13 {
  1745. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  1746. }
  1747. KeyValueFloat: *13 {
  1748. a: 27.6431,28.52762,30.16898,31.0535,30.15872,28.52762,27.6431,28.52762,30.17451,31.0535,30.16898,28.52209,27.6431
  1749. }
  1750. ;KeyAttrFlags: Linear
  1751. KeyAttrFlags: *1 {
  1752. a: 8452
  1753. }
  1754. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1755. KeyAttrDataFloat: *4 {
  1756. a: 0,0,218434821,0
  1757. }
  1758. KeyAttrRefCount: *1 {
  1759. a: 13
  1760. }
  1761. Post-Extrapolation: {
  1762. Type: C
  1763. Repetition: 1
  1764. }
  1765. }
  1766. AnimationCurve: 86949008, "AnimCurve::", "" {
  1767. Default: 0
  1768. KeyVer: 4008
  1769. KeyTime: *13 {
  1770. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  1771. }
  1772. KeyValueFloat: *13 {
  1773. a: 90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001,90.00001
  1774. }
  1775. ;KeyAttrFlags: Linear
  1776. KeyAttrFlags: *1 {
  1777. a: 8452
  1778. }
  1779. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1780. KeyAttrDataFloat: *4 {
  1781. a: 0,0,218434821,0
  1782. }
  1783. KeyAttrRefCount: *1 {
  1784. a: 13
  1785. }
  1786. Post-Extrapolation: {
  1787. Type: C
  1788. Repetition: 1
  1789. }
  1790. }
  1791. AnimationCurve: 86950528, "AnimCurve::", "" {
  1792. Default: 0
  1793. KeyVer: 4008
  1794. KeyTime: *13 {
  1795. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  1796. }
  1797. KeyValueFloat: *13 {
  1798. a: -2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005,-2.732076e-005
  1799. }
  1800. ;KeyAttrFlags: Linear
  1801. KeyAttrFlags: *1 {
  1802. a: 8452
  1803. }
  1804. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1805. KeyAttrDataFloat: *4 {
  1806. a: 0,0,218434821,0
  1807. }
  1808. KeyAttrRefCount: *1 {
  1809. a: 13
  1810. }
  1811. Post-Extrapolation: {
  1812. Type: C
  1813. Repetition: 1
  1814. }
  1815. }
  1816. AnimationCurve: 86952048, "AnimCurve::", "" {
  1817. Default: 0
  1818. KeyVer: 4008
  1819. KeyTime: *13 {
  1820. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  1821. }
  1822. KeyValueFloat: *13 {
  1823. a: 90,90,90,90,90,90,90,90,90,90,90,90,90
  1824. }
  1825. ;KeyAttrFlags: Linear
  1826. KeyAttrFlags: *1 {
  1827. a: 8452
  1828. }
  1829. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1830. KeyAttrDataFloat: *4 {
  1831. a: 0,0,218434821,0
  1832. }
  1833. KeyAttrRefCount: *1 {
  1834. a: 13
  1835. }
  1836. Post-Extrapolation: {
  1837. Type: C
  1838. Repetition: 1
  1839. }
  1840. }
  1841. AnimationCurve: 86953568, "AnimCurve::", "" {
  1842. Default: 0
  1843. KeyVer: 4008
  1844. KeyTime: *1 {
  1845. a: 0
  1846. }
  1847. KeyValueFloat: *1 {
  1848. a: 1
  1849. }
  1850. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  1851. KeyAttrFlags: *1 {
  1852. a: 16778248
  1853. }
  1854. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  1855. KeyAttrDataFloat: *4 {
  1856. a: 0,0,218434820,0
  1857. }
  1858. KeyAttrRefCount: *1 {
  1859. a: 1
  1860. }
  1861. Post-Extrapolation: {
  1862. Type: C
  1863. Repetition: 1
  1864. }
  1865. }
  1866. AnimationCurve: 86406928, "AnimCurve::", "" {
  1867. Default: 0
  1868. KeyVer: 4008
  1869. KeyTime: *1 {
  1870. a: 0
  1871. }
  1872. KeyValueFloat: *1 {
  1873. a: 1
  1874. }
  1875. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  1876. KeyAttrFlags: *1 {
  1877. a: 16778248
  1878. }
  1879. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  1880. KeyAttrDataFloat: *4 {
  1881. a: 0,0,218434820,0
  1882. }
  1883. KeyAttrRefCount: *1 {
  1884. a: 1
  1885. }
  1886. Post-Extrapolation: {
  1887. Type: C
  1888. Repetition: 1
  1889. }
  1890. }
  1891. AnimationCurve: 86965376, "AnimCurve::", "" {
  1892. Default: 0
  1893. KeyVer: 4008
  1894. KeyTime: *1 {
  1895. a: 0
  1896. }
  1897. KeyValueFloat: *1 {
  1898. a: 1
  1899. }
  1900. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  1901. KeyAttrFlags: *1 {
  1902. a: 16778248
  1903. }
  1904. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  1905. KeyAttrDataFloat: *4 {
  1906. a: 0,0,218434820,0
  1907. }
  1908. KeyAttrRefCount: *1 {
  1909. a: 1
  1910. }
  1911. Post-Extrapolation: {
  1912. Type: C
  1913. Repetition: 1
  1914. }
  1915. }
  1916. AnimationCurve: 86966896, "AnimCurve::", "" {
  1917. Default: 0
  1918. KeyVer: 4008
  1919. KeyTime: *11 {
  1920. a: 0,1539538600,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  1921. }
  1922. KeyValueFloat: *11 {
  1923. a: 23.9531,43.82991,47.95728,67.64304,159.3864,217.6598,239.0378,258.4127,281.808,325.4639,384.1295
  1924. }
  1925. ;KeyAttrFlags: Linear
  1926. KeyAttrFlags: *1 {
  1927. a: 8452
  1928. }
  1929. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1930. KeyAttrDataFloat: *4 {
  1931. a: 0,0,218434821,0
  1932. }
  1933. KeyAttrRefCount: *1 {
  1934. a: 11
  1935. }
  1936. Post-Extrapolation: {
  1937. Type: C
  1938. Repetition: 1
  1939. }
  1940. }
  1941. AnimationCurve: 86991984, "AnimCurve::", "" {
  1942. Default: 0
  1943. KeyVer: 4008
  1944. KeyTime: *11 {
  1945. a: 0,1539538600,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  1946. }
  1947. KeyValueFloat: *11 {
  1948. a: -89.30492,-88.47923,-86.74103,-88.34784,-89.28038,-88.39601,-87.92287,-88.05696,-88.63673,-89.30448,-89.30508
  1949. }
  1950. ;KeyAttrFlags: Linear
  1951. KeyAttrFlags: *1 {
  1952. a: 8452
  1953. }
  1954. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1955. KeyAttrDataFloat: *4 {
  1956. a: 0,0,218434821,0
  1957. }
  1958. KeyAttrRefCount: *1 {
  1959. a: 11
  1960. }
  1961. Post-Extrapolation: {
  1962. Type: C
  1963. Repetition: 1
  1964. }
  1965. }
  1966. AnimationCurve: 86997776, "AnimCurve::", "" {
  1967. Default: 0
  1968. KeyVer: 4008
  1969. KeyTime: *11 {
  1970. a: 0,1539538600,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  1971. }
  1972. KeyValueFloat: *11 {
  1973. a: -83.27911,-132.0253,-137.5195,-153.5686,-239.1631,-288.0348,-299.0046,-308.6401,-322.9685,-358.8493,-443.4418
  1974. }
  1975. ;KeyAttrFlags: Linear
  1976. KeyAttrFlags: *1 {
  1977. a: 8452
  1978. }
  1979. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  1980. KeyAttrDataFloat: *4 {
  1981. a: 0,0,218434821,0
  1982. }
  1983. KeyAttrRefCount: *1 {
  1984. a: 11
  1985. }
  1986. Post-Extrapolation: {
  1987. Type: C
  1988. Repetition: 1
  1989. }
  1990. }
  1991. AnimationCurve: 86996816, "AnimCurve::", "" {
  1992. Default: 0
  1993. KeyVer: 4008
  1994. KeyTime: *1 {
  1995. a: 0
  1996. }
  1997. KeyValueFloat: *1 {
  1998. a: 1
  1999. }
  2000. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2001. KeyAttrFlags: *1 {
  2002. a: 16778248
  2003. }
  2004. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2005. KeyAttrDataFloat: *4 {
  2006. a: 0,0,218434820,0
  2007. }
  2008. KeyAttrRefCount: *1 {
  2009. a: 1
  2010. }
  2011. Post-Extrapolation: {
  2012. Type: C
  2013. Repetition: 1
  2014. }
  2015. }
  2016. AnimationCurve: 87000016, "AnimCurve::", "" {
  2017. Default: 0
  2018. KeyVer: 4008
  2019. KeyTime: *1 {
  2020. a: 0
  2021. }
  2022. KeyValueFloat: *1 {
  2023. a: 1
  2024. }
  2025. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2026. KeyAttrFlags: *1 {
  2027. a: 16778248
  2028. }
  2029. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2030. KeyAttrDataFloat: *4 {
  2031. a: 0,0,218434820,0
  2032. }
  2033. KeyAttrRefCount: *1 {
  2034. a: 1
  2035. }
  2036. Post-Extrapolation: {
  2037. Type: C
  2038. Repetition: 1
  2039. }
  2040. }
  2041. AnimationCurve: 86996496, "AnimCurve::", "" {
  2042. Default: 0
  2043. KeyVer: 4008
  2044. KeyTime: *1 {
  2045. a: 0
  2046. }
  2047. KeyValueFloat: *1 {
  2048. a: 1
  2049. }
  2050. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2051. KeyAttrFlags: *1 {
  2052. a: 16778248
  2053. }
  2054. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2055. KeyAttrDataFloat: *4 {
  2056. a: 0,0,218434820,0
  2057. }
  2058. KeyAttrRefCount: *1 {
  2059. a: 1
  2060. }
  2061. Post-Extrapolation: {
  2062. Type: C
  2063. Repetition: 1
  2064. }
  2065. }
  2066. AnimationCurve: 86997136, "AnimCurve::", "" {
  2067. Default: 0
  2068. KeyVer: 4008
  2069. KeyTime: *13 {
  2070. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2071. }
  2072. KeyValueFloat: *13 {
  2073. a: -90.01369,-63.11832,-39.31785,-20.94286,-17.28114,-26.4177,-38.34047,-52.2186,-67.45946,-83.60226,-101.2413,-118.4385,-90.02143
  2074. }
  2075. ;KeyAttrFlags: Linear
  2076. KeyAttrFlags: *1 {
  2077. a: 8452
  2078. }
  2079. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2080. KeyAttrDataFloat: *4 {
  2081. a: 0,0,218434821,0
  2082. }
  2083. KeyAttrRefCount: *1 {
  2084. a: 13
  2085. }
  2086. Post-Extrapolation: {
  2087. Type: C
  2088. Repetition: 1
  2089. }
  2090. }
  2091. AnimationCurve: 86999056, "AnimCurve::", "" {
  2092. Default: 0
  2093. KeyVer: 4008
  2094. KeyTime: *13 {
  2095. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2096. }
  2097. KeyValueFloat: *13 {
  2098. a: 0.03251136,-0.002732076,-0.0302714,-0.04587155,-0.04800257,-0.04188272,-0.03125495,-0.01590068,-0.004152755,0.02546295,0.04921999,0.07214495,0.03235398
  2099. }
  2100. ;KeyAttrFlags: Linear
  2101. KeyAttrFlags: *1 {
  2102. a: 8452
  2103. }
  2104. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2105. KeyAttrDataFloat: *4 {
  2106. a: 0,0,218434821,0
  2107. }
  2108. KeyAttrRefCount: *1 {
  2109. a: 13
  2110. }
  2111. Post-Extrapolation: {
  2112. Type: C
  2113. Repetition: 1
  2114. }
  2115. }
  2116. AnimationCurve: 86999376, "AnimCurve::", "" {
  2117. Default: 0
  2118. KeyVer: 4008
  2119. KeyTime: *13 {
  2120. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2121. }
  2122. KeyValueFloat: *13 {
  2123. a: 0.02187827,-0.0003824906,-0.01767653,-0.03740212,-0.04242913,-0.0310637,-0.01860544,-0.007349283,0.01478053,0.003005025,-0.001475321,-0.01445268,0.02032664
  2124. }
  2125. ;KeyAttrFlags: Linear
  2126. KeyAttrFlags: *1 {
  2127. a: 8452
  2128. }
  2129. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2130. KeyAttrDataFloat: *4 {
  2131. a: 0,0,218434821,0
  2132. }
  2133. KeyAttrRefCount: *1 {
  2134. a: 13
  2135. }
  2136. Post-Extrapolation: {
  2137. Type: C
  2138. Repetition: 1
  2139. }
  2140. }
  2141. AnimationCurve: 86998096, "AnimCurve::", "" {
  2142. Default: 0
  2143. KeyVer: 4008
  2144. KeyTime: *1 {
  2145. a: 0
  2146. }
  2147. KeyValueFloat: *1 {
  2148. a: 1
  2149. }
  2150. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2151. KeyAttrFlags: *1 {
  2152. a: 16778248
  2153. }
  2154. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2155. KeyAttrDataFloat: *4 {
  2156. a: 0,0,218434820,0
  2157. }
  2158. KeyAttrRefCount: *1 {
  2159. a: 1
  2160. }
  2161. Post-Extrapolation: {
  2162. Type: C
  2163. Repetition: 1
  2164. }
  2165. }
  2166. AnimationCurve: 86997456, "AnimCurve::", "" {
  2167. Default: 0
  2168. KeyVer: 4008
  2169. KeyTime: *1 {
  2170. a: 0
  2171. }
  2172. KeyValueFloat: *1 {
  2173. a: 0.9999998
  2174. }
  2175. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2176. KeyAttrFlags: *1 {
  2177. a: 16778248
  2178. }
  2179. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2180. KeyAttrDataFloat: *4 {
  2181. a: 0,0,218434820,0
  2182. }
  2183. KeyAttrRefCount: *1 {
  2184. a: 1
  2185. }
  2186. Post-Extrapolation: {
  2187. Type: C
  2188. Repetition: 1
  2189. }
  2190. }
  2191. AnimationCurve: 86998416, "AnimCurve::", "" {
  2192. Default: 0
  2193. KeyVer: 4008
  2194. KeyTime: *1 {
  2195. a: 0
  2196. }
  2197. KeyValueFloat: *1 {
  2198. a: 1
  2199. }
  2200. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2201. KeyAttrFlags: *1 {
  2202. a: 16778248
  2203. }
  2204. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2205. KeyAttrDataFloat: *4 {
  2206. a: 0,0,218434820,0
  2207. }
  2208. KeyAttrRefCount: *1 {
  2209. a: 1
  2210. }
  2211. Post-Extrapolation: {
  2212. Type: C
  2213. Repetition: 1
  2214. }
  2215. }
  2216. AnimationCurve: 86998736, "AnimCurve::", "" {
  2217. Default: 0
  2218. KeyVer: 4008
  2219. KeyTime: *13 {
  2220. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2221. }
  2222. KeyValueFloat: *13 {
  2223. a: 5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006,5.008957e-006
  2224. }
  2225. ;KeyAttrFlags: Linear
  2226. KeyAttrFlags: *1 {
  2227. a: 8452
  2228. }
  2229. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2230. KeyAttrDataFloat: *4 {
  2231. a: 0,0,218434821,0
  2232. }
  2233. KeyAttrRefCount: *1 {
  2234. a: 13
  2235. }
  2236. Post-Extrapolation: {
  2237. Type: C
  2238. Repetition: 1
  2239. }
  2240. }
  2241. AnimationCurve: 86999696, "AnimCurve::", "" {
  2242. Default: 0
  2243. KeyVer: 4008
  2244. KeyTime: *13 {
  2245. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2246. }
  2247. KeyValueFloat: *13 {
  2248. a: 0,0,0,0,0,0,0,0,0,0,0,0,0
  2249. }
  2250. ;KeyAttrFlags: Linear
  2251. KeyAttrFlags: *1 {
  2252. a: 8452
  2253. }
  2254. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2255. KeyAttrDataFloat: *4 {
  2256. a: 0,0,218434821,0
  2257. }
  2258. KeyAttrRefCount: *1 {
  2259. a: 13
  2260. }
  2261. Post-Extrapolation: {
  2262. Type: C
  2263. Repetition: 1
  2264. }
  2265. }
  2266. AnimationCurve: 87014576, "AnimCurve::", "" {
  2267. Default: 0
  2268. KeyVer: 4008
  2269. KeyTime: *13 {
  2270. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2271. }
  2272. KeyValueFloat: *13 {
  2273. a: 8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006,8.651422e-006
  2274. }
  2275. ;KeyAttrFlags: Linear
  2276. KeyAttrFlags: *1 {
  2277. a: 8452
  2278. }
  2279. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2280. KeyAttrDataFloat: *4 {
  2281. a: 0,0,218434821,0
  2282. }
  2283. KeyAttrRefCount: *1 {
  2284. a: 13
  2285. }
  2286. Post-Extrapolation: {
  2287. Type: C
  2288. Repetition: 1
  2289. }
  2290. }
  2291. AnimationCurve: 87012336, "AnimCurve::", "" {
  2292. Default: 0
  2293. KeyVer: 4008
  2294. KeyTime: *1 {
  2295. a: 0
  2296. }
  2297. KeyValueFloat: *1 {
  2298. a: 1
  2299. }
  2300. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2301. KeyAttrFlags: *1 {
  2302. a: 16778248
  2303. }
  2304. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2305. KeyAttrDataFloat: *4 {
  2306. a: 0,0,218434820,0
  2307. }
  2308. KeyAttrRefCount: *1 {
  2309. a: 1
  2310. }
  2311. Post-Extrapolation: {
  2312. Type: C
  2313. Repetition: 1
  2314. }
  2315. }
  2316. AnimationCurve: 87013616, "AnimCurve::", "" {
  2317. Default: 0
  2318. KeyVer: 4008
  2319. KeyTime: *1 {
  2320. a: 0
  2321. }
  2322. KeyValueFloat: *1 {
  2323. a: 1
  2324. }
  2325. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2326. KeyAttrFlags: *1 {
  2327. a: 16778248
  2328. }
  2329. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2330. KeyAttrDataFloat: *4 {
  2331. a: 0,0,218434820,0
  2332. }
  2333. KeyAttrRefCount: *1 {
  2334. a: 1
  2335. }
  2336. Post-Extrapolation: {
  2337. Type: C
  2338. Repetition: 1
  2339. }
  2340. }
  2341. AnimationCurve: 87011376, "AnimCurve::", "" {
  2342. Default: 0
  2343. KeyVer: 4008
  2344. KeyTime: *1 {
  2345. a: 0
  2346. }
  2347. KeyValueFloat: *1 {
  2348. a: 1
  2349. }
  2350. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2351. KeyAttrFlags: *1 {
  2352. a: 16778248
  2353. }
  2354. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2355. KeyAttrDataFloat: *4 {
  2356. a: 0,0,218434820,0
  2357. }
  2358. KeyAttrRefCount: *1 {
  2359. a: 1
  2360. }
  2361. Post-Extrapolation: {
  2362. Type: C
  2363. Repetition: 1
  2364. }
  2365. }
  2366. AnimationCurve: 87009776, "AnimCurve::", "" {
  2367. Default: 0
  2368. KeyVer: 4008
  2369. KeyTime: *12 {
  2370. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,18474463200
  2371. }
  2372. KeyValueFloat: *12 {
  2373. a: 101.2387,124.6013,124.3749,122.2008,118.0158,114.39,114.5982,120.4658,126.8081,106.8772,90.861,101.2387
  2374. }
  2375. ;KeyAttrFlags: Linear
  2376. KeyAttrFlags: *1 {
  2377. a: 8452
  2378. }
  2379. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2380. KeyAttrDataFloat: *4 {
  2381. a: 0,0,218434821,0
  2382. }
  2383. KeyAttrRefCount: *1 {
  2384. a: 12
  2385. }
  2386. Post-Extrapolation: {
  2387. Type: C
  2388. Repetition: 1
  2389. }
  2390. }
  2391. AnimationCurve: 87008816, "AnimCurve::", "" {
  2392. Default: 0
  2393. KeyVer: 4008
  2394. KeyTime: *12 {
  2395. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,18474463200
  2396. }
  2397. KeyValueFloat: *12 {
  2398. a: 20.73462,25.16925,17.90606,9.897411,2.247582,-5.218756,-12.61465,-19.49691,-24.87875,-19.69816,-7.158175,20.73462
  2399. }
  2400. ;KeyAttrFlags: Linear
  2401. KeyAttrFlags: *1 {
  2402. a: 8452
  2403. }
  2404. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2405. KeyAttrDataFloat: *4 {
  2406. a: 0,0,218434821,0
  2407. }
  2408. KeyAttrRefCount: *1 {
  2409. a: 12
  2410. }
  2411. Post-Extrapolation: {
  2412. Type: C
  2413. Repetition: 1
  2414. }
  2415. }
  2416. AnimationCurve: 87014256, "AnimCurve::", "" {
  2417. Default: 0
  2418. KeyVer: 4008
  2419. KeyTime: *12 {
  2420. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,18474463200
  2421. }
  2422. KeyValueFloat: *12 {
  2423. a: -176.0517,-168.2538,-169.0379,-171.3769,-174.7335,-179.2401,-184.6993,-190.2333,-194.0887,-189.5023,-186.0911,-176.0517
  2424. }
  2425. ;KeyAttrFlags: Linear
  2426. KeyAttrFlags: *1 {
  2427. a: 8452
  2428. }
  2429. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2430. KeyAttrDataFloat: *4 {
  2431. a: 0,0,218434821,0
  2432. }
  2433. KeyAttrRefCount: *1 {
  2434. a: 12
  2435. }
  2436. Post-Extrapolation: {
  2437. Type: C
  2438. Repetition: 1
  2439. }
  2440. }
  2441. AnimationCurve: 87013296, "AnimCurve::", "" {
  2442. Default: 0
  2443. KeyVer: 4008
  2444. KeyTime: *1 {
  2445. a: 0
  2446. }
  2447. KeyValueFloat: *1 {
  2448. a: 1
  2449. }
  2450. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2451. KeyAttrFlags: *1 {
  2452. a: 16778248
  2453. }
  2454. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2455. KeyAttrDataFloat: *4 {
  2456. a: 0,0,218434820,0
  2457. }
  2458. KeyAttrRefCount: *1 {
  2459. a: 1
  2460. }
  2461. Post-Extrapolation: {
  2462. Type: C
  2463. Repetition: 1
  2464. }
  2465. }
  2466. AnimationCurve: 87011696, "AnimCurve::", "" {
  2467. Default: 0
  2468. KeyVer: 4008
  2469. KeyTime: *1 {
  2470. a: 0
  2471. }
  2472. KeyValueFloat: *1 {
  2473. a: 1
  2474. }
  2475. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2476. KeyAttrFlags: *1 {
  2477. a: 16778248
  2478. }
  2479. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2480. KeyAttrDataFloat: *4 {
  2481. a: 0,0,218434820,0
  2482. }
  2483. KeyAttrRefCount: *1 {
  2484. a: 1
  2485. }
  2486. Post-Extrapolation: {
  2487. Type: C
  2488. Repetition: 1
  2489. }
  2490. }
  2491. AnimationCurve: 87010096, "AnimCurve::", "" {
  2492. Default: 0
  2493. KeyVer: 4008
  2494. KeyTime: *1 {
  2495. a: 0
  2496. }
  2497. KeyValueFloat: *1 {
  2498. a: 0.9999999
  2499. }
  2500. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2501. KeyAttrFlags: *1 {
  2502. a: 16778248
  2503. }
  2504. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2505. KeyAttrDataFloat: *4 {
  2506. a: 0,0,218434820,0
  2507. }
  2508. KeyAttrRefCount: *1 {
  2509. a: 1
  2510. }
  2511. Post-Extrapolation: {
  2512. Type: C
  2513. Repetition: 1
  2514. }
  2515. }
  2516. AnimationCurve: 87012976, "AnimCurve::", "" {
  2517. Default: 0
  2518. KeyVer: 4008
  2519. KeyTime: *13 {
  2520. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2521. }
  2522. KeyValueFloat: *13 {
  2523. a: -60.37038,-72.35925,-69.72891,-66.65426,-63.24982,-60.85718,-60.98761,-64.81303,-69.88385,-58.69146,-52.08962,-53.41186,-60.37038
  2524. }
  2525. ;KeyAttrFlags: Linear
  2526. KeyAttrFlags: *1 {
  2527. a: 8452
  2528. }
  2529. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2530. KeyAttrDataFloat: *4 {
  2531. a: 0,0,218434821,0
  2532. }
  2533. KeyAttrRefCount: *1 {
  2534. a: 13
  2535. }
  2536. Post-Extrapolation: {
  2537. Type: C
  2538. Repetition: 1
  2539. }
  2540. }
  2541. AnimationCurve: 87013936, "AnimCurve::", "" {
  2542. Default: 0
  2543. KeyVer: 4008
  2544. KeyTime: *13 {
  2545. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2546. }
  2547. KeyValueFloat: *13 {
  2548. a: 0.004078722,-0.0655425,-5.464151e-005,0.01111955,-0.004289359,-0.002950642,-0.0003551698,-0.04335804,-0.04297555,-0.03849495,-0.02393298,0.01002672,0.004078722
  2549. }
  2550. ;KeyAttrFlags: Linear
  2551. KeyAttrFlags: *1 {
  2552. a: 8452
  2553. }
  2554. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2555. KeyAttrDataFloat: *4 {
  2556. a: 0,0,218434821,0
  2557. }
  2558. KeyAttrRefCount: *1 {
  2559. a: 13
  2560. }
  2561. Post-Extrapolation: {
  2562. Type: C
  2563. Repetition: 1
  2564. }
  2565. }
  2566. AnimationCurve: 87014896, "AnimCurve::", "" {
  2567. Default: 0
  2568. KeyVer: 4008
  2569. KeyTime: *13 {
  2570. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2571. }
  2572. KeyValueFloat: *13 {
  2573. a: 0.00444182,-0.05078929,0.001147472,0.005852901,-0.001748528,-0.001557283,-0.00109283,-0.02491653,-0.001748528,-0.02584544,-0.05057072,0.009425662,0.00444182
  2574. }
  2575. ;KeyAttrFlags: Linear
  2576. KeyAttrFlags: *1 {
  2577. a: 8452
  2578. }
  2579. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2580. KeyAttrDataFloat: *4 {
  2581. a: 0,0,218434821,0
  2582. }
  2583. KeyAttrRefCount: *1 {
  2584. a: 13
  2585. }
  2586. Post-Extrapolation: {
  2587. Type: C
  2588. Repetition: 1
  2589. }
  2590. }
  2591. AnimationCurve: 87009136, "AnimCurve::", "" {
  2592. Default: 0
  2593. KeyVer: 4008
  2594. KeyTime: *1 {
  2595. a: 0
  2596. }
  2597. KeyValueFloat: *1 {
  2598. a: 1
  2599. }
  2600. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2601. KeyAttrFlags: *1 {
  2602. a: 16778248
  2603. }
  2604. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2605. KeyAttrDataFloat: *4 {
  2606. a: 0,0,218434820,0
  2607. }
  2608. KeyAttrRefCount: *1 {
  2609. a: 1
  2610. }
  2611. Post-Extrapolation: {
  2612. Type: C
  2613. Repetition: 1
  2614. }
  2615. }
  2616. AnimationCurve: 87015216, "AnimCurve::", "" {
  2617. Default: 0
  2618. KeyVer: 4008
  2619. KeyTime: *1 {
  2620. a: 0
  2621. }
  2622. KeyValueFloat: *1 {
  2623. a: 1
  2624. }
  2625. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2626. KeyAttrFlags: *1 {
  2627. a: 16778248
  2628. }
  2629. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2630. KeyAttrDataFloat: *4 {
  2631. a: 0,0,218434820,0
  2632. }
  2633. KeyAttrRefCount: *1 {
  2634. a: 1
  2635. }
  2636. Post-Extrapolation: {
  2637. Type: C
  2638. Repetition: 1
  2639. }
  2640. }
  2641. AnimationCurve: 87016176, "AnimCurve::", "" {
  2642. Default: 0
  2643. KeyVer: 4008
  2644. KeyTime: *1 {
  2645. a: 0
  2646. }
  2647. KeyValueFloat: *1 {
  2648. a: 1
  2649. }
  2650. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2651. KeyAttrFlags: *1 {
  2652. a: 16778248
  2653. }
  2654. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2655. KeyAttrDataFloat: *4 {
  2656. a: 0,0,218434820,0
  2657. }
  2658. KeyAttrRefCount: *1 {
  2659. a: 1
  2660. }
  2661. Post-Extrapolation: {
  2662. Type: C
  2663. Repetition: 1
  2664. }
  2665. }
  2666. AnimationCurve: 87015536, "AnimCurve::", "" {
  2667. Default: 0
  2668. KeyVer: 4008
  2669. KeyTime: *11 {
  2670. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,12316308800,13855847400,15395386000,16934924599,18474463200
  2671. }
  2672. KeyValueFloat: *11 {
  2673. a: 16.46244,-4.207369,-23.26231,-46.1956,-84.4386,-173.7742,-196.8311,-179.9085,-179.7121,-124.3027,-163.5376
  2674. }
  2675. ;KeyAttrFlags: Linear
  2676. KeyAttrFlags: *1 {
  2677. a: 8452
  2678. }
  2679. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2680. KeyAttrDataFloat: *4 {
  2681. a: 0,0,218434821,0
  2682. }
  2683. KeyAttrRefCount: *1 {
  2684. a: 11
  2685. }
  2686. Post-Extrapolation: {
  2687. Type: C
  2688. Repetition: 1
  2689. }
  2690. }
  2691. AnimationCurve: 87015856, "AnimCurve::", "" {
  2692. Default: 0
  2693. KeyVer: 4008
  2694. KeyTime: *11 {
  2695. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,12316308800,13855847400,15395386000,16934924599,18474463200
  2696. }
  2697. KeyValueFloat: *11 {
  2698. a: 94.07392,95.74265,96.03553,94.95246,93.10127,92.11697,95.05025,94.0014,91.82415,88.27281,85.92609
  2699. }
  2700. ;KeyAttrFlags: Linear
  2701. KeyAttrFlags: *1 {
  2702. a: 8452
  2703. }
  2704. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2705. KeyAttrDataFloat: *4 {
  2706. a: 0,0,218434821,0
  2707. }
  2708. KeyAttrRefCount: *1 {
  2709. a: 11
  2710. }
  2711. Post-Extrapolation: {
  2712. Type: C
  2713. Repetition: 1
  2714. }
  2715. }
  2716. AnimationCurve: 87012656, "AnimCurve::", "" {
  2717. Default: 0
  2718. KeyVer: 4008
  2719. KeyTime: *11 {
  2720. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,12316308800,13855847400,15395386000,16934924599,18474463200
  2721. }
  2722. KeyValueFloat: *11 {
  2723. a: 71.67209,58.46004,44.36159,26.10784,-4.4576,-84.13254,-110.4439,-123.3187,-147.5007,-79.98373,-108.3279
  2724. }
  2725. ;KeyAttrFlags: Linear
  2726. KeyAttrFlags: *1 {
  2727. a: 8452
  2728. }
  2729. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2730. KeyAttrDataFloat: *4 {
  2731. a: 0,0,218434821,0
  2732. }
  2733. KeyAttrRefCount: *1 {
  2734. a: 11
  2735. }
  2736. Post-Extrapolation: {
  2737. Type: C
  2738. Repetition: 1
  2739. }
  2740. }
  2741. AnimationCurve: 87012016, "AnimCurve::", "" {
  2742. Default: 0
  2743. KeyVer: 4008
  2744. KeyTime: *1 {
  2745. a: 0
  2746. }
  2747. KeyValueFloat: *1 {
  2748. a: 1
  2749. }
  2750. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2751. KeyAttrFlags: *1 {
  2752. a: 16778248
  2753. }
  2754. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2755. KeyAttrDataFloat: *4 {
  2756. a: 0,0,218434820,0
  2757. }
  2758. KeyAttrRefCount: *1 {
  2759. a: 1
  2760. }
  2761. Post-Extrapolation: {
  2762. Type: C
  2763. Repetition: 1
  2764. }
  2765. }
  2766. AnimationCurve: 87016496, "AnimCurve::", "" {
  2767. Default: 0
  2768. KeyVer: 4008
  2769. KeyTime: *1 {
  2770. a: 0
  2771. }
  2772. KeyValueFloat: *1 {
  2773. a: 0.9999999
  2774. }
  2775. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2776. KeyAttrFlags: *1 {
  2777. a: 16778248
  2778. }
  2779. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2780. KeyAttrDataFloat: *4 {
  2781. a: 0,0,218434820,0
  2782. }
  2783. KeyAttrRefCount: *1 {
  2784. a: 1
  2785. }
  2786. Post-Extrapolation: {
  2787. Type: C
  2788. Repetition: 1
  2789. }
  2790. }
  2791. AnimationCurve: 87009456, "AnimCurve::", "" {
  2792. Default: 0
  2793. KeyVer: 4008
  2794. KeyTime: *1 {
  2795. a: 0
  2796. }
  2797. KeyValueFloat: *1 {
  2798. a: 0.9999999
  2799. }
  2800. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2801. KeyAttrFlags: *1 {
  2802. a: 16778248
  2803. }
  2804. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2805. KeyAttrDataFloat: *4 {
  2806. a: 0,0,218434820,0
  2807. }
  2808. KeyAttrRefCount: *1 {
  2809. a: 1
  2810. }
  2811. Post-Extrapolation: {
  2812. Type: C
  2813. Repetition: 1
  2814. }
  2815. }
  2816. AnimationCurve: 87010416, "AnimCurve::", "" {
  2817. Default: 0
  2818. KeyVer: 4008
  2819. KeyTime: *13 {
  2820. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2821. }
  2822. KeyValueFloat: *13 {
  2823. a: -80.83176,-66.01091,-53.40211,-41.60637,-28.76075,-15.57493,-19.10021,-39.4753,-63.43169,-90.94036,-119.132,-99.04665,-80.83176
  2824. }
  2825. ;KeyAttrFlags: Linear
  2826. KeyAttrFlags: *1 {
  2827. a: 8452
  2828. }
  2829. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2830. KeyAttrDataFloat: *4 {
  2831. a: 0,0,218434821,0
  2832. }
  2833. KeyAttrRefCount: *1 {
  2834. a: 13
  2835. }
  2836. Post-Extrapolation: {
  2837. Type: C
  2838. Repetition: 1
  2839. }
  2840. }
  2841. AnimationCurve: 87010736, "AnimCurve::", "" {
  2842. Default: 0
  2843. KeyVer: 4008
  2844. KeyTime: *13 {
  2845. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2846. }
  2847. KeyValueFloat: *13 {
  2848. a: 0.05341271,0.003946659,-0.02357781,-0.0698865,-0.102207,-0.1193644,-0.1175612,-0.07537797,-0.0207911,0.0879182,0.1758231,0.1110919,0.05341735
  2849. }
  2850. ;KeyAttrFlags: Linear
  2851. KeyAttrFlags: *1 {
  2852. a: 8452
  2853. }
  2854. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2855. KeyAttrDataFloat: *4 {
  2856. a: 0,0,218434821,0
  2857. }
  2858. KeyAttrRefCount: *1 {
  2859. a: 13
  2860. }
  2861. Post-Extrapolation: {
  2862. Type: C
  2863. Repetition: 1
  2864. }
  2865. }
  2866. AnimationCurve: 87011056, "AnimCurve::", "" {
  2867. Default: 0
  2868. KeyVer: 4008
  2869. KeyTime: *13 {
  2870. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2871. }
  2872. KeyValueFloat: *13 {
  2873. a: 0.008395643,0.001309238,-0.03010747,-0.03808514,-0.06434038,-0.09007654,-0.09802688,-0.04289359,0.03062657,0.006010947,-0.03161012,0.01871472,0.008394358
  2874. }
  2875. ;KeyAttrFlags: Linear
  2876. KeyAttrFlags: *1 {
  2877. a: 8452
  2878. }
  2879. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2880. KeyAttrDataFloat: *4 {
  2881. a: 0,0,218434821,0
  2882. }
  2883. KeyAttrRefCount: *1 {
  2884. a: 13
  2885. }
  2886. Post-Extrapolation: {
  2887. Type: C
  2888. Repetition: 1
  2889. }
  2890. }
  2891. AnimationCurve: 87198448, "AnimCurve::", "" {
  2892. Default: 0
  2893. KeyVer: 4008
  2894. KeyTime: *1 {
  2895. a: 0
  2896. }
  2897. KeyValueFloat: *1 {
  2898. a: 0.9999999
  2899. }
  2900. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2901. KeyAttrFlags: *1 {
  2902. a: 16778248
  2903. }
  2904. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2905. KeyAttrDataFloat: *4 {
  2906. a: 0,0,218434820,0
  2907. }
  2908. KeyAttrRefCount: *1 {
  2909. a: 1
  2910. }
  2911. Post-Extrapolation: {
  2912. Type: C
  2913. Repetition: 1
  2914. }
  2915. }
  2916. AnimationCurve: 87197168, "AnimCurve::", "" {
  2917. Default: 0
  2918. KeyVer: 4008
  2919. KeyTime: *1 {
  2920. a: 0
  2921. }
  2922. KeyValueFloat: *1 {
  2923. a: 0.9999999
  2924. }
  2925. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2926. KeyAttrFlags: *1 {
  2927. a: 16778248
  2928. }
  2929. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2930. KeyAttrDataFloat: *4 {
  2931. a: 0,0,218434820,0
  2932. }
  2933. KeyAttrRefCount: *1 {
  2934. a: 1
  2935. }
  2936. Post-Extrapolation: {
  2937. Type: C
  2938. Repetition: 1
  2939. }
  2940. }
  2941. AnimationCurve: 87203888, "AnimCurve::", "" {
  2942. Default: 0
  2943. KeyVer: 4008
  2944. KeyTime: *1 {
  2945. a: 0
  2946. }
  2947. KeyValueFloat: *1 {
  2948. a: 0.9999999
  2949. }
  2950. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  2951. KeyAttrFlags: *1 {
  2952. a: 16778248
  2953. }
  2954. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  2955. KeyAttrDataFloat: *4 {
  2956. a: 0,0,218434820,0
  2957. }
  2958. KeyAttrRefCount: *1 {
  2959. a: 1
  2960. }
  2961. Post-Extrapolation: {
  2962. Type: C
  2963. Repetition: 1
  2964. }
  2965. }
  2966. AnimationCurve: 87203248, "AnimCurve::", "" {
  2967. Default: 0
  2968. KeyVer: 4008
  2969. KeyTime: *12 {
  2970. a: 0,1539538600,3079077200,4618615800,6158154400,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2971. }
  2972. KeyValueFloat: *12 {
  2973. a: -65.40185,-59.53423,-53.0503,-73.12289,-90.07312,-78.76129,-55.39491,-55.64509,-57.79772,-61.95334,-65.62413,-65.40195
  2974. }
  2975. ;KeyAttrFlags: Linear
  2976. KeyAttrFlags: *1 {
  2977. a: 8452
  2978. }
  2979. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  2980. KeyAttrDataFloat: *4 {
  2981. a: 0,0,218434821,0
  2982. }
  2983. KeyAttrRefCount: *1 {
  2984. a: 12
  2985. }
  2986. Post-Extrapolation: {
  2987. Type: C
  2988. Repetition: 1
  2989. }
  2990. }
  2991. AnimationCurve: 87200688, "AnimCurve::", "" {
  2992. Default: 0
  2993. KeyVer: 4008
  2994. KeyTime: *12 {
  2995. a: 0,1539538600,3079077200,4618615800,6158154400,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  2996. }
  2997. KeyValueFloat: *12 {
  2998. a: -12.61465,-19.49694,-24.90858,-19.69821,-7.139324,20.73466,25.18724,17.85728,9.915006,2.291631,-5.217418,-12.61489
  2999. }
  3000. ;KeyAttrFlags: Linear
  3001. KeyAttrFlags: *1 {
  3002. a: 8452
  3003. }
  3004. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3005. KeyAttrDataFloat: *4 {
  3006. a: 0,0,218434821,0
  3007. }
  3008. KeyAttrRefCount: *1 {
  3009. a: 12
  3010. }
  3011. Post-Extrapolation: {
  3012. Type: C
  3013. Repetition: 1
  3014. }
  3015. }
  3016. AnimationCurve: 87199088, "AnimCurve::", "" {
  3017. Default: 0
  3018. KeyVer: 4008
  3019. KeyTime: *12 {
  3020. a: 0,1539538600,3079077200,4618615800,6158154400,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  3021. }
  3022. KeyValueFloat: *12 {
  3023. a: -4.699225,-10.23324,-14.1454,-9.502213,-5.948548,3.948369,11.75515,10.9454,8.631946,5.29794,0.7553134,-4.698624
  3024. }
  3025. ;KeyAttrFlags: Linear
  3026. KeyAttrFlags: *1 {
  3027. a: 8452
  3028. }
  3029. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3030. KeyAttrDataFloat: *4 {
  3031. a: 0,0,218434821,0
  3032. }
  3033. KeyAttrRefCount: *1 {
  3034. a: 12
  3035. }
  3036. Post-Extrapolation: {
  3037. Type: C
  3038. Repetition: 1
  3039. }
  3040. }
  3041. AnimationCurve: 87199728, "AnimCurve::", "" {
  3042. Default: 0
  3043. KeyVer: 4008
  3044. KeyTime: *1 {
  3045. a: 0
  3046. }
  3047. KeyValueFloat: *1 {
  3048. a: 0.9999999
  3049. }
  3050. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  3051. KeyAttrFlags: *1 {
  3052. a: 16778248
  3053. }
  3054. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  3055. KeyAttrDataFloat: *4 {
  3056. a: 0,0,218434820,0
  3057. }
  3058. KeyAttrRefCount: *1 {
  3059. a: 1
  3060. }
  3061. Post-Extrapolation: {
  3062. Type: C
  3063. Repetition: 1
  3064. }
  3065. }
  3066. AnimationCurve: 87203568, "AnimCurve::", "" {
  3067. Default: 0
  3068. KeyVer: 4008
  3069. KeyTime: *1 {
  3070. a: 0
  3071. }
  3072. KeyValueFloat: *1 {
  3073. a: 1
  3074. }
  3075. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  3076. KeyAttrFlags: *1 {
  3077. a: 16778248
  3078. }
  3079. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  3080. KeyAttrDataFloat: *4 {
  3081. a: 0,0,218434820,0
  3082. }
  3083. KeyAttrRefCount: *1 {
  3084. a: 1
  3085. }
  3086. Post-Extrapolation: {
  3087. Type: C
  3088. Repetition: 1
  3089. }
  3090. }
  3091. AnimationCurve: 87204208, "AnimCurve::", "" {
  3092. Default: 0
  3093. KeyVer: 4008
  3094. KeyTime: *1 {
  3095. a: 0
  3096. }
  3097. KeyValueFloat: *1 {
  3098. a: 0.9999999
  3099. }
  3100. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  3101. KeyAttrFlags: *1 {
  3102. a: 16778248
  3103. }
  3104. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  3105. KeyAttrDataFloat: *4 {
  3106. a: 0,0,218434820,0
  3107. }
  3108. KeyAttrRefCount: *1 {
  3109. a: 1
  3110. }
  3111. Post-Extrapolation: {
  3112. Type: C
  3113. Repetition: 1
  3114. }
  3115. }
  3116. AnimationCurve: 87202928, "AnimCurve::", "" {
  3117. Default: 0
  3118. KeyVer: 4008
  3119. KeyTime: *13 {
  3120. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  3121. }
  3122. KeyValueFloat: *13 {
  3123. a: -61.00566,-64.80626,-69.96893,-58.69234,-52.07943,-53.39025,-60.37043,-72.3579,-69.69061,-66.65137,-63.2714,-60.84529,-61.02523
  3124. }
  3125. ;KeyAttrFlags: Linear
  3126. KeyAttrFlags: *1 {
  3127. a: 8452
  3128. }
  3129. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3130. KeyAttrDataFloat: *4 {
  3131. a: 0,0,218434821,0
  3132. }
  3133. KeyAttrRefCount: *1 {
  3134. a: 13
  3135. }
  3136. Post-Extrapolation: {
  3137. Type: C
  3138. Repetition: 1
  3139. }
  3140. }
  3141. AnimationCurve: 87197488, "AnimCurve::", "" {
  3142. Default: 0
  3143. KeyVer: 4008
  3144. KeyTime: *13 {
  3145. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  3146. }
  3147. KeyValueFloat: *13 {
  3148. a: 0.001938356,0.001527108,-0.0003005283,0.007458567,0.005092279,-0.008387472,-0.003469736,0.00398883,-0.0296157,0.02885072,0.006814821,0.01832112,-0.001639245
  3149. }
  3150. ;KeyAttrFlags: Linear
  3151. KeyAttrFlags: *1 {
  3152. a: 8452
  3153. }
  3154. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3155. KeyAttrDataFloat: *4 {
  3156. a: 0,0,218434821,0
  3157. }
  3158. KeyAttrRefCount: *1 {
  3159. a: 13
  3160. }
  3161. Post-Extrapolation: {
  3162. Type: C
  3163. Repetition: 1
  3164. }
  3165. }
  3166. AnimationCurve: 87197808, "AnimCurve::", "" {
  3167. Default: 0
  3168. KeyVer: 4008
  3169. KeyTime: *13 {
  3170. a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924599,18474463200
  3171. }
  3172. KeyValueFloat: *13 {
  3173. a: -0.001420679,-0.00396151,-0.002759397,0.003196529,0.001487046,-0.01073706,-0.005846642,-0.0009289057,-0.01218506,0.003387774,0.001778193,0.009284242,0.002516186
  3174. }
  3175. ;KeyAttrFlags: Linear
  3176. KeyAttrFlags: *1 {
  3177. a: 8452
  3178. }
  3179. ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0
  3180. KeyAttrDataFloat: *4 {
  3181. a: 0,0,218434821,0
  3182. }
  3183. KeyAttrRefCount: *1 {
  3184. a: 13
  3185. }
  3186. Post-Extrapolation: {
  3187. Type: C
  3188. Repetition: 1
  3189. }
  3190. }
  3191. AnimationCurve: 87201328, "AnimCurve::", "" {
  3192. Default: 0
  3193. KeyVer: 4008
  3194. KeyTime: *1 {
  3195. a: 0
  3196. }
  3197. KeyValueFloat: *1 {
  3198. a: 1
  3199. }
  3200. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  3201. KeyAttrFlags: *1 {
  3202. a: 16778248
  3203. }
  3204. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  3205. KeyAttrDataFloat: *4 {
  3206. a: 0,0,218434820,0
  3207. }
  3208. KeyAttrRefCount: *1 {
  3209. a: 1
  3210. }
  3211. Post-Extrapolation: {
  3212. Type: C
  3213. Repetition: 1
  3214. }
  3215. }
  3216. AnimationCurve: 87201008, "AnimCurve::", "" {
  3217. Default: 0
  3218. KeyVer: 4008
  3219. KeyTime: *1 {
  3220. a: 0
  3221. }
  3222. KeyValueFloat: *1 {
  3223. a: 1
  3224. }
  3225. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  3226. KeyAttrFlags: *1 {
  3227. a: 16778248
  3228. }
  3229. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  3230. KeyAttrDataFloat: *4 {
  3231. a: 0,0,218434820,0
  3232. }
  3233. KeyAttrRefCount: *1 {
  3234. a: 1
  3235. }
  3236. Post-Extrapolation: {
  3237. Type: C
  3238. Repetition: 1
  3239. }
  3240. }
  3241. AnimationCurve: 87200368, "AnimCurve::", "" {
  3242. Default: 0
  3243. KeyVer: 4008
  3244. KeyTime: *1 {
  3245. a: 0
  3246. }
  3247. KeyValueFloat: *1 {
  3248. a: 1
  3249. }
  3250. ;KeyAttrFlags: Cubic|TangeantUser|WeightedRight
  3251. KeyAttrFlags: *1 {
  3252. a: 16778248
  3253. }
  3254. ;KeyAttrDataFloat: RightSlope:0, NextLeftSlope:0, RightWeight:0.333233, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0
  3255. KeyAttrDataFloat: *4 {
  3256. a: 0,0,218434820,0
  3257. }
  3258. KeyAttrRefCount: *1 {
  3259. a: 1
  3260. }
  3261. Post-Extrapolation: {
  3262. Type: C
  3263. Repetition: 1
  3264. }
  3265. }
  3266. CollectionExclusive: 86203552, "DisplayLayer::lores", "DisplayLayer" {
  3267. Properties70: {
  3268. P: "Color", "ColorRGB", "Color", "",0.882352941176471,0.345098039215686,0.780392156862745
  3269. }
  3270. }
  3271. }
  3272. ; Object connections
  3273. ;------------------------------------------------------------------
  3274. Connections: {
  3275. ;Model::minebot_main_root, Model::RootNode
  3276. C: "OO",86593904,0
  3277. ;Model::minebot_main, Model::minebot_main_root
  3278. C: "OO",86351648,86593904
  3279. ;NodeAttribute::, Model::minebot_main_root
  3280. C: "OO",86593568,86593904
  3281. ;AnimCurveNode::R, Model::minebot_main_root
  3282. C: "OP",87082512,86593904, "Lcl Rotation"
  3283. ;AnimCurveNode::S, Model::minebot_main_root
  3284. C: "OP",87246688,86593904, "Lcl Scaling"
  3285. ;Model::minebot_right_upperleg, Model::minebot_main
  3286. C: "OO",86353904,86351648
  3287. ;Model::minebot_head, Model::minebot_main
  3288. C: "OO",86391200,86351648
  3289. ;Model::minebot_front_upperleg, Model::minebot_main
  3290. C: "OO",86393456,86351648
  3291. ;Model::minebot_left_upperleg, Model::minebot_main
  3292. C: "OO",86402080,86351648
  3293. ;Model::minebot_front_upperleg2, Model::minebot_main
  3294. C: "OO",86617456,86351648
  3295. ;Geometry::, Model::minebot_main
  3296. C: "OO",86434848,86351648
  3297. ;Material::01 - Default, Model::minebot_main
  3298. C: "OO",86629280,86351648
  3299. ;AnimCurveNode::T, Model::minebot_main
  3300. C: "OP",87247056,86351648, "Lcl Translation"
  3301. ;AnimCurveNode::R, Model::minebot_main
  3302. C: "OP",87255632,86351648, "Lcl Rotation"
  3303. ;AnimCurveNode::S, Model::minebot_main
  3304. C: "OP",87272400,86351648, "Lcl Scaling"
  3305. ;Model::minebot_right_lowerleg, Model::minebot_right_upperleg
  3306. C: "OO",86388944,86353904
  3307. ;Geometry::, Model::minebot_right_upperleg
  3308. C: "OO",86697104,86353904
  3309. ;Material::01 - Default, Model::minebot_right_upperleg
  3310. C: "OO",86629280,86353904
  3311. ;AnimCurveNode::R, Model::minebot_right_upperleg
  3312. C: "OP",87272768,86353904, "Lcl Rotation"
  3313. ;AnimCurveNode::S, Model::minebot_right_upperleg
  3314. C: "OP",87273136,86353904, "Lcl Scaling"
  3315. ;Geometry::, Model::minebot_right_lowerleg
  3316. C: "OO",86435536,86388944
  3317. ;Material::01 - Default, Model::minebot_right_lowerleg
  3318. C: "OO",86629280,86388944
  3319. ;AnimCurveNode::R, Model::minebot_right_lowerleg
  3320. C: "OP",87273504,86388944, "Lcl Rotation"
  3321. ;AnimCurveNode::S, Model::minebot_right_lowerleg
  3322. C: "OP",86954048,86388944, "Lcl Scaling"
  3323. ;Geometry::, Model::minebot_head
  3324. C: "OO",86717200,86391200
  3325. ;Material::01 - Default, Model::minebot_head
  3326. C: "OO",86629280,86391200
  3327. ;AnimCurveNode::R, Model::minebot_head
  3328. C: "OP",86954416,86391200, "Lcl Rotation"
  3329. ;AnimCurveNode::S, Model::minebot_head
  3330. C: "OP",87284144,86391200, "Lcl Scaling"
  3331. ;Model::minebot_back_lowerleg, Model::minebot_front_upperleg
  3332. C: "OO",86399824,86393456
  3333. ;Geometry::, Model::minebot_front_upperleg
  3334. C: "OO",86759168,86393456
  3335. ;Material::01 - Default, Model::minebot_front_upperleg
  3336. C: "OO",86629280,86393456
  3337. ;AnimCurveNode::R, Model::minebot_front_upperleg
  3338. C: "OP",87284512,86393456, "Lcl Rotation"
  3339. ;AnimCurveNode::S, Model::minebot_front_upperleg
  3340. C: "OP",87284880,86393456, "Lcl Scaling"
  3341. ;Geometry::, Model::minebot_back_lowerleg
  3342. C: "OO",86752944,86399824
  3343. ;Material::01 - Default, Model::minebot_back_lowerleg
  3344. C: "OO",86629280,86399824
  3345. ;AnimCurveNode::R, Model::minebot_back_lowerleg
  3346. C: "OP",87285248,86399824, "Lcl Rotation"
  3347. ;AnimCurveNode::S, Model::minebot_back_lowerleg
  3348. C: "OP",87285616,86399824, "Lcl Scaling"
  3349. ;Model::minebot_left_lowerleg, Model::minebot_left_upperleg
  3350. C: "OO",86404336,86402080
  3351. ;Geometry::, Model::minebot_left_upperleg
  3352. C: "OO",86801152,86402080
  3353. ;Material::01 - Default, Model::minebot_left_upperleg
  3354. C: "OO",86629280,86402080
  3355. ;AnimCurveNode::R, Model::minebot_left_upperleg
  3356. C: "OP",87288272,86402080, "Lcl Rotation"
  3357. ;AnimCurveNode::S, Model::minebot_left_upperleg
  3358. C: "OP",87286064,86402080, "Lcl Scaling"
  3359. ;Geometry::, Model::minebot_left_lowerleg
  3360. C: "OO",86804928,86404336
  3361. ;Material::01 - Default, Model::minebot_left_lowerleg
  3362. C: "OO",86629280,86404336
  3363. ;AnimCurveNode::R, Model::minebot_left_lowerleg
  3364. C: "OP",87288640,86404336, "Lcl Rotation"
  3365. ;AnimCurveNode::S, Model::minebot_left_lowerleg
  3366. C: "OP",87286432,86404336, "Lcl Scaling"
  3367. ;Model::minebot_front_lowerleg, Model::minebot_front_upperleg2
  3368. C: "OO",86605856,86617456
  3369. ;Geometry::, Model::minebot_front_upperleg2
  3370. C: "OO",86826528,86617456
  3371. ;Material::01 - Default, Model::minebot_front_upperleg2
  3372. C: "OO",86629280,86617456
  3373. ;AnimCurveNode::R, Model::minebot_front_upperleg2
  3374. C: "OP",87287536,86617456, "Lcl Rotation"
  3375. ;AnimCurveNode::S, Model::minebot_front_upperleg2
  3376. C: "OP",87286800,86617456, "Lcl Scaling"
  3377. ;Geometry::, Model::minebot_front_lowerleg
  3378. C: "OO",86834416,86605856
  3379. ;Material::01 - Default, Model::minebot_front_lowerleg
  3380. C: "OO",86629280,86605856
  3381. ;AnimCurveNode::R, Model::minebot_front_lowerleg
  3382. C: "OP",87287168,86605856, "Lcl Rotation"
  3383. ;AnimCurveNode::S, Model::minebot_front_lowerleg
  3384. C: "OP",87287904,86605856, "Lcl Scaling"
  3385. ;Texture::Map #1, Material::01 - Default
  3386. C: "OP",86432064,86629280, "DiffuseColor"
  3387. ;Texture::Map #2, Material::01 - Default
  3388. C: "OP",86432816,86629280, "Bump"
  3389. ;Video::Map #1, Texture::Map #1
  3390. C: "OO",86433568,86432064
  3391. ;Video::Map #2, Texture::Map #2
  3392. C: "OO",86434208,86432816
  3393. ;AnimLayer::BaseLayer, AnimStack::Take 001
  3394. C: "OO",85981904,86654528
  3395. ;AnimCurveNode::R, AnimLayer::BaseLayer
  3396. C: "OO",87082512,85981904
  3397. ;AnimCurveNode::S, AnimLayer::BaseLayer
  3398. C: "OO",87246688,85981904
  3399. ;AnimCurveNode::T, AnimLayer::BaseLayer
  3400. C: "OO",87247056,85981904
  3401. ;AnimCurveNode::R, AnimLayer::BaseLayer
  3402. C: "OO",87255632,85981904
  3403. ;AnimCurveNode::S, AnimLayer::BaseLayer
  3404. C: "OO",87272400,85981904
  3405. ;AnimCurveNode::R, AnimLayer::BaseLayer
  3406. C: "OO",87272768,85981904
  3407. ;AnimCurveNode::S, AnimLayer::BaseLayer
  3408. C: "OO",87273136,85981904
  3409. ;AnimCurveNode::R, AnimLayer::BaseLayer
  3410. C: "OO",87273504,85981904
  3411. ;AnimCurveNode::S, AnimLayer::BaseLayer
  3412. C: "OO",86954048,85981904
  3413. ;AnimCurveNode::R, AnimLayer::BaseLayer
  3414. C: "OO",86954416,85981904
  3415. ;AnimCurveNode::S, AnimLayer::BaseLayer
  3416. C: "OO",87284144,85981904
  3417. ;AnimCurveNode::R, AnimLayer::BaseLayer
  3418. C: "OO",87284512,85981904
  3419. ;AnimCurveNode::S, AnimLayer::BaseLayer
  3420. C: "OO",87284880,85981904
  3421. ;AnimCurveNode::R, AnimLayer::BaseLayer
  3422. C: "OO",87285248,85981904
  3423. ;AnimCurveNode::S, AnimLayer::BaseLayer
  3424. C: "OO",87285616,85981904
  3425. ;AnimCurveNode::R, AnimLayer::BaseLayer
  3426. C: "OO",87288272,85981904
  3427. ;AnimCurveNode::S, AnimLayer::BaseLayer
  3428. C: "OO",87286064,85981904
  3429. ;AnimCurveNode::R, AnimLayer::BaseLayer
  3430. C: "OO",87288640,85981904
  3431. ;AnimCurveNode::S, AnimLayer::BaseLayer
  3432. C: "OO",87286432,85981904
  3433. ;AnimCurveNode::R, AnimLayer::BaseLayer
  3434. C: "OO",87287536,85981904
  3435. ;AnimCurveNode::S, AnimLayer::BaseLayer
  3436. C: "OO",87286800,85981904
  3437. ;AnimCurveNode::R, AnimLayer::BaseLayer
  3438. C: "OO",87287168,85981904
  3439. ;AnimCurveNode::S, AnimLayer::BaseLayer
  3440. C: "OO",87287904,85981904
  3441. ;Model::minebot_front_lowerleg, DisplayLayer::lores
  3442. C: "OO",86605856,86203552
  3443. ;Model::minebot_front_upperleg, DisplayLayer::lores
  3444. C: "OO",86617456,86203552
  3445. ;Model::minebot_left_lowerleg, DisplayLayer::lores
  3446. C: "OO",86404336,86203552
  3447. ;Model::minebot_left_upperleg, DisplayLayer::lores
  3448. C: "OO",86402080,86203552
  3449. ;Model::minebot_back_lowerleg, DisplayLayer::lores
  3450. C: "OO",86399824,86203552
  3451. ;Model::minebot_front_upperleg2, DisplayLayer::lores
  3452. C: "OO",86393456,86203552
  3453. ;Model::minebot_head, DisplayLayer::lores
  3454. C: "OO",86391200,86203552
  3455. ;Model::minebot_right_lowerleg, DisplayLayer::lores
  3456. C: "OO",86388944,86203552
  3457. ;Model::minebot_right_upperleg, DisplayLayer::lores
  3458. C: "OO",86353904,86203552
  3459. ;Model::minebot_main, DisplayLayer::lores
  3460. C: "OO",86351648,86203552
  3461. ;AnimCurve::, AnimCurveNode::R
  3462. C: "OP",86840352,87082512, "d|X"
  3463. ;AnimCurve::, AnimCurveNode::R
  3464. C: "OP",86863408,87082512, "d|Y"
  3465. ;AnimCurve::, AnimCurveNode::R
  3466. C: "OP",86864768,87082512, "d|Z"
  3467. ;AnimCurve::, AnimCurveNode::S
  3468. C: "OP",86866128,87246688, "d|X"
  3469. ;AnimCurve::, AnimCurveNode::S
  3470. C: "OP",86875856,87246688, "d|Y"
  3471. ;AnimCurve::, AnimCurveNode::S
  3472. C: "OP",86877376,87246688, "d|Z"
  3473. ;AnimCurve::, AnimCurveNode::T
  3474. C: "OP",86878896,87247056, "d|X"
  3475. ;AnimCurve::, AnimCurveNode::T
  3476. C: "OP",86880416,87247056, "d|Y"
  3477. ;AnimCurve::, AnimCurveNode::T
  3478. C: "OP",86947488,87247056, "d|Z"
  3479. ;AnimCurve::, AnimCurveNode::R
  3480. C: "OP",86949008,87255632, "d|X"
  3481. ;AnimCurve::, AnimCurveNode::R
  3482. C: "OP",86950528,87255632, "d|Y"
  3483. ;AnimCurve::, AnimCurveNode::R
  3484. C: "OP",86952048,87255632, "d|Z"
  3485. ;AnimCurve::, AnimCurveNode::S
  3486. C: "OP",86953568,87272400, "d|X"
  3487. ;AnimCurve::, AnimCurveNode::S
  3488. C: "OP",86406928,87272400, "d|Y"
  3489. ;AnimCurve::, AnimCurveNode::S
  3490. C: "OP",86965376,87272400, "d|Z"
  3491. ;AnimCurve::, AnimCurveNode::R
  3492. C: "OP",86966896,87272768, "d|X"
  3493. ;AnimCurve::, AnimCurveNode::R
  3494. C: "OP",86991984,87272768, "d|Y"
  3495. ;AnimCurve::, AnimCurveNode::R
  3496. C: "OP",86997776,87272768, "d|Z"
  3497. ;AnimCurve::, AnimCurveNode::S
  3498. C: "OP",86996816,87273136, "d|X"
  3499. ;AnimCurve::, AnimCurveNode::S
  3500. C: "OP",87000016,87273136, "d|Y"
  3501. ;AnimCurve::, AnimCurveNode::S
  3502. C: "OP",86996496,87273136, "d|Z"
  3503. ;AnimCurve::, AnimCurveNode::R
  3504. C: "OP",86997136,87273504, "d|X"
  3505. ;AnimCurve::, AnimCurveNode::R
  3506. C: "OP",86999056,87273504, "d|Y"
  3507. ;AnimCurve::, AnimCurveNode::R
  3508. C: "OP",86999376,87273504, "d|Z"
  3509. ;AnimCurve::, AnimCurveNode::S
  3510. C: "OP",86998096,86954048, "d|X"
  3511. ;AnimCurve::, AnimCurveNode::S
  3512. C: "OP",86997456,86954048, "d|Y"
  3513. ;AnimCurve::, AnimCurveNode::S
  3514. C: "OP",86998416,86954048, "d|Z"
  3515. ;AnimCurve::, AnimCurveNode::R
  3516. C: "OP",86998736,86954416, "d|X"
  3517. ;AnimCurve::, AnimCurveNode::R
  3518. C: "OP",86999696,86954416, "d|Y"
  3519. ;AnimCurve::, AnimCurveNode::R
  3520. C: "OP",87014576,86954416, "d|Z"
  3521. ;AnimCurve::, AnimCurveNode::S
  3522. C: "OP",87012336,87284144, "d|X"
  3523. ;AnimCurve::, AnimCurveNode::S
  3524. C: "OP",87013616,87284144, "d|Y"
  3525. ;AnimCurve::, AnimCurveNode::S
  3526. C: "OP",87011376,87284144, "d|Z"
  3527. ;AnimCurve::, AnimCurveNode::R
  3528. C: "OP",87009776,87284512, "d|X"
  3529. ;AnimCurve::, AnimCurveNode::R
  3530. C: "OP",87008816,87284512, "d|Y"
  3531. ;AnimCurve::, AnimCurveNode::R
  3532. C: "OP",87014256,87284512, "d|Z"
  3533. ;AnimCurve::, AnimCurveNode::S
  3534. C: "OP",87013296,87284880, "d|X"
  3535. ;AnimCurve::, AnimCurveNode::S
  3536. C: "OP",87011696,87284880, "d|Y"
  3537. ;AnimCurve::, AnimCurveNode::S
  3538. C: "OP",87010096,87284880, "d|Z"
  3539. ;AnimCurve::, AnimCurveNode::R
  3540. C: "OP",87012976,87285248, "d|X"
  3541. ;AnimCurve::, AnimCurveNode::R
  3542. C: "OP",87013936,87285248, "d|Y"
  3543. ;AnimCurve::, AnimCurveNode::R
  3544. C: "OP",87014896,87285248, "d|Z"
  3545. ;AnimCurve::, AnimCurveNode::S
  3546. C: "OP",87009136,87285616, "d|X"
  3547. ;AnimCurve::, AnimCurveNode::S
  3548. C: "OP",87015216,87285616, "d|Y"
  3549. ;AnimCurve::, AnimCurveNode::S
  3550. C: "OP",87016176,87285616, "d|Z"
  3551. ;AnimCurve::, AnimCurveNode::R
  3552. C: "OP",87015536,87288272, "d|X"
  3553. ;AnimCurve::, AnimCurveNode::R
  3554. C: "OP",87015856,87288272, "d|Y"
  3555. ;AnimCurve::, AnimCurveNode::R
  3556. C: "OP",87012656,87288272, "d|Z"
  3557. ;AnimCurve::, AnimCurveNode::S
  3558. C: "OP",87012016,87286064, "d|X"
  3559. ;AnimCurve::, AnimCurveNode::S
  3560. C: "OP",87016496,87286064, "d|Y"
  3561. ;AnimCurve::, AnimCurveNode::S
  3562. C: "OP",87009456,87286064, "d|Z"
  3563. ;AnimCurve::, AnimCurveNode::R
  3564. C: "OP",87010416,87288640, "d|X"
  3565. ;AnimCurve::, AnimCurveNode::R
  3566. C: "OP",87010736,87288640, "d|Y"
  3567. ;AnimCurve::, AnimCurveNode::R
  3568. C: "OP",87011056,87288640, "d|Z"
  3569. ;AnimCurve::, AnimCurveNode::S
  3570. C: "OP",87198448,87286432, "d|X"
  3571. ;AnimCurve::, AnimCurveNode::S
  3572. C: "OP",87197168,87286432, "d|Y"
  3573. ;AnimCurve::, AnimCurveNode::S
  3574. C: "OP",87203888,87286432, "d|Z"
  3575. ;AnimCurve::, AnimCurveNode::R
  3576. C: "OP",87203248,87287536, "d|X"
  3577. ;AnimCurve::, AnimCurveNode::R
  3578. C: "OP",87200688,87287536, "d|Y"
  3579. ;AnimCurve::, AnimCurveNode::R
  3580. C: "OP",87199088,87287536, "d|Z"
  3581. ;AnimCurve::, AnimCurveNode::S
  3582. C: "OP",87199728,87286800, "d|X"
  3583. ;AnimCurve::, AnimCurveNode::S
  3584. C: "OP",87203568,87286800, "d|Y"
  3585. ;AnimCurve::, AnimCurveNode::S
  3586. C: "OP",87204208,87286800, "d|Z"
  3587. ;AnimCurve::, AnimCurveNode::R
  3588. C: "OP",87202928,87287168, "d|X"
  3589. ;AnimCurve::, AnimCurveNode::R
  3590. C: "OP",87197488,87287168, "d|Y"
  3591. ;AnimCurve::, AnimCurveNode::R
  3592. C: "OP",87197808,87287168, "d|Z"
  3593. ;AnimCurve::, AnimCurveNode::S
  3594. C: "OP",87201328,87287904, "d|X"
  3595. ;AnimCurve::, AnimCurveNode::S
  3596. C: "OP",87201008,87287904, "d|Y"
  3597. ;AnimCurve::, AnimCurveNode::S
  3598. C: "OP",87200368,87287904, "d|Z"
  3599. }
  3600. ;Takes section
  3601. ;----------------------------------------------------
  3602. Takes: {
  3603. Current: ""
  3604. Take: "Take 001" {
  3605. FileName: "Take_001.tak"
  3606. LocalTime: 0,18474463200
  3607. ReferenceTime: 0,18474463200
  3608. }
  3609. }