SM_Canopy_02.fbx 904 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046
  1. ; FBX 7.5.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: 7500
  8. CreationTimeStamp: {
  9. Version: 1000
  10. Year: 2021
  11. Month: 4
  12. Day: 5
  13. Hour: 13
  14. Minute: 29
  15. Second: 55
  16. Millisecond: 753
  17. }
  18. Creator: "FBX SDK/FBX Plugins version 2016.1.2"
  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", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Canopy_02.fbx"
  33. P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Canopy_02.fbx"
  34. P: "Original", "Compound", "", ""
  35. P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
  36. P: "Original|ApplicationName", "KString", "", "", "Maya LT"
  37. P: "Original|ApplicationVersion", "KString", "", "", "2016"
  38. P: "Original|DateTime_GMT", "DateTime", "", "", "05/04/2021 10:29:55.753"
  39. P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Canopy_02.fbx"
  40. P: "LastSaved", "Compound", "", ""
  41. P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
  42. P: "LastSaved|ApplicationName", "KString", "", "", "Maya LT"
  43. P: "LastSaved|ApplicationVersion", "KString", "", "", "2016"
  44. P: "LastSaved|DateTime_GMT", "DateTime", "", "", "05/04/2021 10:29:55.753"
  45. P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel"
  46. P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_10_Unity_EXPORT.mlt"
  47. }
  48. }
  49. }
  50. GlobalSettings: {
  51. Version: 1000
  52. Properties70: {
  53. P: "UpAxis", "int", "Integer", "",1
  54. P: "UpAxisSign", "int", "Integer", "",1
  55. P: "FrontAxis", "int", "Integer", "",2
  56. P: "FrontAxisSign", "int", "Integer", "",1
  57. P: "CoordAxis", "int", "Integer", "",0
  58. P: "CoordAxisSign", "int", "Integer", "",1
  59. P: "OriginalUpAxis", "int", "Integer", "",1
  60. P: "OriginalUpAxisSign", "int", "Integer", "",1
  61. P: "UnitScaleFactor", "double", "Number", "",1
  62. P: "OriginalUnitScaleFactor", "double", "Number", "",1
  63. P: "AmbientColor", "ColorRGB", "Color", "",0,0,0
  64. P: "DefaultCamera", "KString", "", "", "Producer Perspective"
  65. P: "TimeMode", "enum", "", "",6
  66. P: "TimeProtocol", "enum", "", "",2
  67. P: "SnapOnFrameMode", "enum", "", "",0
  68. P: "TimeSpanStart", "KTime", "Time", "",1539538600
  69. P: "TimeSpanStop", "KTime", "Time", "",92372316000
  70. P: "CustomFrameRate", "double", "Number", "",-1
  71. P: "TimeMarker", "Compound", "", ""
  72. P: "CurrentTimeMarker", "int", "Integer", "",-1
  73. }
  74. }
  75. ; Documents Description
  76. ;------------------------------------------------------------------
  77. Documents: {
  78. Count: 1
  79. Document: 2266844793776, "", "Scene" {
  80. Properties70: {
  81. P: "SourceObject", "object", "", ""
  82. P: "ActiveAnimStackName", "KString", "", "", "Take 001"
  83. }
  84. RootNode: 0
  85. }
  86. }
  87. ; Document References
  88. ;------------------------------------------------------------------
  89. References: {
  90. }
  91. ; Object definitions
  92. ;------------------------------------------------------------------
  93. Definitions: {
  94. Version: 100
  95. Count: 30
  96. ObjectType: "GlobalSettings" {
  97. Count: 1
  98. }
  99. ObjectType: "AnimationStack" {
  100. Count: 1
  101. PropertyTemplate: "FbxAnimStack" {
  102. Properties70: {
  103. P: "Description", "KString", "", "", ""
  104. P: "LocalStart", "KTime", "Time", "",0
  105. P: "LocalStop", "KTime", "Time", "",0
  106. P: "ReferenceStart", "KTime", "Time", "",0
  107. P: "ReferenceStop", "KTime", "Time", "",0
  108. }
  109. }
  110. }
  111. ObjectType: "AnimationLayer" {
  112. Count: 1
  113. PropertyTemplate: "FbxAnimLayer" {
  114. Properties70: {
  115. P: "Weight", "Number", "", "A",100
  116. P: "Mute", "bool", "", "",0
  117. P: "Solo", "bool", "", "",0
  118. P: "Lock", "bool", "", "",0
  119. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  120. P: "BlendMode", "enum", "", "",0
  121. P: "RotationAccumulationMode", "enum", "", "",0
  122. P: "ScaleAccumulationMode", "enum", "", "",0
  123. P: "BlendModeBypass", "ULongLong", "", "",0
  124. }
  125. }
  126. }
  127. ObjectType: "NodeAttribute" {
  128. Count: 2
  129. PropertyTemplate: "FbxNull" {
  130. Properties70: {
  131. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  132. P: "Size", "double", "Number", "",100
  133. P: "Look", "enum", "", "",1
  134. }
  135. }
  136. }
  137. ObjectType: "Model" {
  138. Count: 10
  139. PropertyTemplate: "FbxNode" {
  140. Properties70: {
  141. P: "QuaternionInterpolate", "enum", "", "",0
  142. P: "RotationOffset", "Vector3D", "Vector", "",0,0,0
  143. P: "RotationPivot", "Vector3D", "Vector", "",0,0,0
  144. P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0
  145. P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0
  146. P: "TranslationActive", "bool", "", "",0
  147. P: "TranslationMin", "Vector3D", "Vector", "",0,0,0
  148. P: "TranslationMax", "Vector3D", "Vector", "",0,0,0
  149. P: "TranslationMinX", "bool", "", "",0
  150. P: "TranslationMinY", "bool", "", "",0
  151. P: "TranslationMinZ", "bool", "", "",0
  152. P: "TranslationMaxX", "bool", "", "",0
  153. P: "TranslationMaxY", "bool", "", "",0
  154. P: "TranslationMaxZ", "bool", "", "",0
  155. P: "RotationOrder", "enum", "", "",0
  156. P: "RotationSpaceForLimitOnly", "bool", "", "",0
  157. P: "RotationStiffnessX", "double", "Number", "",0
  158. P: "RotationStiffnessY", "double", "Number", "",0
  159. P: "RotationStiffnessZ", "double", "Number", "",0
  160. P: "AxisLen", "double", "Number", "",10
  161. P: "PreRotation", "Vector3D", "Vector", "",0,0,0
  162. P: "PostRotation", "Vector3D", "Vector", "",0,0,0
  163. P: "RotationActive", "bool", "", "",0
  164. P: "RotationMin", "Vector3D", "Vector", "",0,0,0
  165. P: "RotationMax", "Vector3D", "Vector", "",0,0,0
  166. P: "RotationMinX", "bool", "", "",0
  167. P: "RotationMinY", "bool", "", "",0
  168. P: "RotationMinZ", "bool", "", "",0
  169. P: "RotationMaxX", "bool", "", "",0
  170. P: "RotationMaxY", "bool", "", "",0
  171. P: "RotationMaxZ", "bool", "", "",0
  172. P: "InheritType", "enum", "", "",0
  173. P: "ScalingActive", "bool", "", "",0
  174. P: "ScalingMin", "Vector3D", "Vector", "",0,0,0
  175. P: "ScalingMax", "Vector3D", "Vector", "",1,1,1
  176. P: "ScalingMinX", "bool", "", "",0
  177. P: "ScalingMinY", "bool", "", "",0
  178. P: "ScalingMinZ", "bool", "", "",0
  179. P: "ScalingMaxX", "bool", "", "",0
  180. P: "ScalingMaxY", "bool", "", "",0
  181. P: "ScalingMaxZ", "bool", "", "",0
  182. P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0
  183. P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0
  184. P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1
  185. P: "MinDampRangeX", "double", "Number", "",0
  186. P: "MinDampRangeY", "double", "Number", "",0
  187. P: "MinDampRangeZ", "double", "Number", "",0
  188. P: "MaxDampRangeX", "double", "Number", "",0
  189. P: "MaxDampRangeY", "double", "Number", "",0
  190. P: "MaxDampRangeZ", "double", "Number", "",0
  191. P: "MinDampStrengthX", "double", "Number", "",0
  192. P: "MinDampStrengthY", "double", "Number", "",0
  193. P: "MinDampStrengthZ", "double", "Number", "",0
  194. P: "MaxDampStrengthX", "double", "Number", "",0
  195. P: "MaxDampStrengthY", "double", "Number", "",0
  196. P: "MaxDampStrengthZ", "double", "Number", "",0
  197. P: "PreferedAngleX", "double", "Number", "",0
  198. P: "PreferedAngleY", "double", "Number", "",0
  199. P: "PreferedAngleZ", "double", "Number", "",0
  200. P: "LookAtProperty", "object", "", ""
  201. P: "UpVectorProperty", "object", "", ""
  202. P: "Show", "bool", "", "",1
  203. P: "NegativePercentShapeSupport", "bool", "", "",1
  204. P: "DefaultAttributeIndex", "int", "Integer", "",-1
  205. P: "Freeze", "bool", "", "",0
  206. P: "LODBox", "bool", "", "",0
  207. P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0
  208. P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0
  209. P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1
  210. P: "Visibility", "Visibility", "", "A",1
  211. P: "Visibility Inheritance", "Visibility Inheritance", "", "",1
  212. }
  213. }
  214. }
  215. ObjectType: "Geometry" {
  216. Count: 8
  217. PropertyTemplate: "FbxMesh" {
  218. Properties70: {
  219. P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
  220. P: "BBoxMin", "Vector3D", "Vector", "",0,0,0
  221. P: "BBoxMax", "Vector3D", "Vector", "",0,0,0
  222. P: "Primary Visibility", "bool", "", "",1
  223. P: "Casts Shadows", "bool", "", "",1
  224. P: "Receive Shadows", "bool", "", "",1
  225. }
  226. }
  227. }
  228. ObjectType: "Material" {
  229. Count: 2
  230. PropertyTemplate: "FbxSurfacePhong" {
  231. Properties70: {
  232. P: "ShadingModel", "KString", "", "", "Phong"
  233. P: "MultiLayer", "bool", "", "",0
  234. P: "EmissiveColor", "Color", "", "A",0,0,0
  235. P: "EmissiveFactor", "Number", "", "A",1
  236. P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2
  237. P: "AmbientFactor", "Number", "", "A",1
  238. P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8
  239. P: "DiffuseFactor", "Number", "", "A",1
  240. P: "Bump", "Vector3D", "Vector", "",0,0,0
  241. P: "NormalMap", "Vector3D", "Vector", "",0,0,0
  242. P: "BumpFactor", "double", "Number", "",1
  243. P: "TransparentColor", "Color", "", "A",0,0,0
  244. P: "TransparencyFactor", "Number", "", "A",0
  245. P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0
  246. P: "DisplacementFactor", "double", "Number", "",1
  247. P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0
  248. P: "VectorDisplacementFactor", "double", "Number", "",1
  249. P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2
  250. P: "SpecularFactor", "Number", "", "A",1
  251. P: "ShininessExponent", "Number", "", "A",20
  252. P: "ReflectionColor", "Color", "", "A",0,0,0
  253. P: "ReflectionFactor", "Number", "", "A",1
  254. }
  255. }
  256. }
  257. ObjectType: "Texture" {
  258. Count: 3
  259. PropertyTemplate: "FbxFileTexture" {
  260. Properties70: {
  261. P: "TextureTypeUse", "enum", "", "",0
  262. P: "Texture alpha", "Number", "", "A",1
  263. P: "CurrentMappingType", "enum", "", "",0
  264. P: "WrapModeU", "enum", "", "",0
  265. P: "WrapModeV", "enum", "", "",0
  266. P: "UVSwap", "bool", "", "",0
  267. P: "PremultiplyAlpha", "bool", "", "",1
  268. P: "Translation", "Vector", "", "A",0,0,0
  269. P: "Rotation", "Vector", "", "A",0,0,0
  270. P: "Scaling", "Vector", "", "A",1,1,1
  271. P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0
  272. P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0
  273. P: "CurrentTextureBlendMode", "enum", "", "",1
  274. P: "UVSet", "KString", "", "", "default"
  275. P: "UseMaterial", "bool", "", "",0
  276. P: "UseMipMap", "bool", "", "",0
  277. }
  278. }
  279. }
  280. ObjectType: "Video" {
  281. Count: 2
  282. PropertyTemplate: "FbxVideo" {
  283. Properties70: {
  284. P: "ImageSequence", "bool", "", "",0
  285. P: "ImageSequenceOffset", "int", "Integer", "",0
  286. P: "FrameRate", "double", "Number", "",0
  287. P: "LastFrame", "int", "Integer", "",0
  288. P: "Width", "int", "Integer", "",0
  289. P: "Height", "int", "Integer", "",0
  290. P: "Path", "KString", "XRefUrl", "", ""
  291. P: "StartFrame", "int", "Integer", "",0
  292. P: "StopFrame", "int", "Integer", "",0
  293. P: "PlaySpeed", "double", "Number", "",0
  294. P: "Offset", "KTime", "Time", "",0
  295. P: "InterlaceMode", "enum", "", "",0
  296. P: "FreeRunning", "bool", "", "",0
  297. P: "Loop", "bool", "", "",0
  298. P: "AccessMode", "enum", "", "",0
  299. }
  300. }
  301. }
  302. }
  303. ; Object properties
  304. ;------------------------------------------------------------------
  305. Objects: {
  306. NodeAttribute: 2268336202656, "NodeAttribute::", "Null" {
  307. Properties70: {
  308. P: "Look", "enum", "", "",0
  309. }
  310. TypeFlags: "Null"
  311. }
  312. NodeAttribute: 2268523570192, "NodeAttribute::", "LodGroup" {
  313. Properties70: {
  314. P: "WorldSpace", "bool", "", "",1
  315. P: "Thresholds|Level0", "Distance", "", "",100, "cm"
  316. P: "Thresholds|Level1", "Distance", "", "",100, "cm"
  317. P: "DisplayLevels|Level0", "enum", "", "",1
  318. P: "DisplayLevels|Level1", "enum", "", "",1
  319. P: "DisplayLevels|Level2", "enum", "", "",1
  320. }
  321. }
  322. Geometry: 2267733750432, "Geometry::", "Mesh" {
  323. Vertices: *1476 {
  324. a: -184.725830078125,79.0201721191406,-2.27288818359375,-198.276123046875,79.0201721191406,-2.27288818359375,-184.725830078125,71.2047729492188,19.1365356445313,-198.276123046875,71.2047729492188,19.1365356445313,198.534423828125,78.7276916503906,-1.837646484375,185.1376953125,78.7276916503906,-1.837646484375,198.534423828125,69.6153259277344,20.004150390625,185.1376953125,69.6153259277344,20.004150390625,186.107177734375,12.4645690917969,19.0105590820313,186.5654296875,15.1039123535156,149.634765625,185.847900390625,1.92826843261719,172.024963378906,186.107177734375,-0.940261840820313,19.2456665039063,197.738525390625,12.4645690917969,19.0105590820313,197.998046875,14.4256286621094,149.646484375,197.28076171875,1.25,172.036926269531,197.738525390625,-0.940261840820313,19.2456665039063,197.461181640625,12.8631286621094,69.6629028320313,197.941650390625,-0.455795288085938,69.8965454101563,186.384521484375,-0.909927368164063,69.9043579101563,185.904296875,12.4089813232422,69.6707153320313,-197.0439453125,13.5959777832031,18.5198364257813,-197.13916015625,15.6760406494141,143.231811523438,-196.746826171875,2.48336791992188,170.065795898438,-197.0439453125,0.1890869140625,18.5198364257813,-185.321044921875,13.5959777832031,18.5198364257813,-185.603271484375,16.0439605712891,143.231811523438,-185.2109375,2.85127258300781,170.065795898438,-185.321044921875,0.1890869140625,18.5198364257813,-197.1865234375,16.18408203125,107.798645019531,-185.586181640625,16.5540618896484,107.798645019531,-185.19140625,3.28733825683594,107.798645019531,-196.7919921875,2.9173583984375,107.798645019531,-179.63037109375,1.15910339355469,200.039001464844,-179.628173828125,5.002685546875,202.031372070313,-199.021484375,1.19779968261719,199.894104003906,-199.01611328125,5.03549194335938,201.899841308594,-178.7607421875,1.02493286132813,198.9853515625,-178.759033203125,5.98178100585938,201.191467285156,-199.89501953125,0.90264892578125,199.197265625,-199.89208984375,5.85951232910156,201.403442382813,-178.808349609375,93.18017578125,-13.5794677734375,
  325. -201.523681640625,93.1524353027344,-13.5850219726563,-178.81494140625,98.1468200683594,-11.3961181640625,-201.5302734375,98.1193237304688,-11.4021606445313,-179.071044921875,94.0610656738281,-14.2255249023438,-201.2685546875,94.0342102050781,-14.2314453125,-179.076416015625,98.0267028808594,-12.4811401367188,-201.2734375,98.0000915527344,-12.487548828125,-179.638427734375,57.0125427246094,79.0338134765625,-200.0009765625,56.9350280761719,79.1448364257813,-199.999755859375,51.9781646728516,76.938720703125,-179.63623046875,52.0557098388672,76.8276977539063,-149.67529296875,-4.10182189941406,198.569091796875,-149.435302734375,-0.164764404296875,200.331787109375,-176.67041015625,-2.18690490722656,198.451293945313,-176.426513671875,1.42691040039063,200.934631347656,-148.65771484375,-3.99423217773438,196.822692871094,-148.358154296875,0.9466552734375,199.040283203125,-177.75439453125,-2.43763732910156,197.826416015625,-177.4541015625,2.503173828125,200.044372558594,-148.958251953125,95.1061401367188,-15.1761474609375,-178.259765625,93.0978088378906,-16.0510864257813,-149.3046875,100.063079833984,-13.002685546875,-178.60595703125,98.054931640625,-13.878173828125,-149.32080078125,95.9609069824219,-15.827880859375,-177.99755859375,93.9993286132813,-16.6936645507813,-149.597412109375,99.9190368652344,-14.0916137695313,-178.274169921875,97.9574279785156,-14.957763671875,-151.39697265625,63.5448913574219,58.9203491210938,-178.685302734375,63.4796447753906,58.9863891601563,-178.683349609375,58.8741149902344,56.9619750976563,-151.393798828125,58.9396057128906,56.8953857421875,-42.2490234375,-4.17607116699219,198.491333007813,-42.24560546875,-0.226211547851563,200.244689941406,-64.846435546875,-3.82408142089844,197.6376953125,-64.8388671875,-0.194931030273438,200.11279296875,-41.167724609375,-4.01409912109375,196.772583007813,-41.16455078125,0.942733764648438,198.978393554688,-65.933349609375,-4.13894653320313,196.984802246094,-65.9287109375,0.817886352539063,199.190673828125,-41.280517578125,96.1432189941406,-14.94384765625,-65.72314453125,92.5276489257813,-16.5800170898438,
  326. -42.151123046875,101.047271728516,-12.7928466796875,-66.593505859375,97.4318542480469,-14.4288940429688,-41.718994140625,96.9605102539063,-15.6052856445313,-65.5263671875,93.4477844238281,-17.2199096679688,-42.414794921875,100.876434326172,-13.8869018554688,-66.221435546875,97.3637084960938,-15.501953125,-122.210693359375,3.08897399902344,196.445556640625,-122.47412109375,-1.28178405761719,194.736145019531,-101.781494140625,-2.08692932128906,193.9794921875,-101.537109375,1.92701721191406,195.536682128906,-125.58154296875,-5.53233337402344,200.241516113281,-125.599365234375,-0.974258422851563,202.301208496094,-145.538818359375,-5.42732238769531,199.956115722656,-145.56640625,-0.870025634765625,202.016418457031,-68.165283203125,-3.1014404296875,200.576049804688,-68.345947265625,0.840560913085938,202.338623046875,-97.7685546875,-3.90217590332031,199.197265625,-97.945556640625,-0.283004760742188,201.679931640625,-78.0634765625,-3.317626953125,199.999938964844,-77.708984375,0.614273071289063,201.842224121094,-90.965576171875,-4.25999450683594,200.722900390625,-92.443115234375,-0.163787841796875,202.002563476563,-124.809814453125,-5.41236877441406,199.455932617188,-124.82861328125,-0.455322265625,201.660949707031,-146.538330078125,-0.235733032226563,201.107177734375,-146.508544921875,-5.19276428222656,198.902526855469,-123.424560546875,3.98052978515625,196.123596191406,-123.757568359375,-1.40992736816406,193.715393066406,-100.241943359375,2.75718688964844,194.862182617188,-100.5498046875,-2.18855285644531,192.652465820313,-67.077880859375,-2.89360046386719,198.877746582031,-67.305419921875,2.05311584472656,201.094482421875,-98.8134765625,-4.25624084472656,198.524658203125,-99.040283203125,0.690505981445313,200.741882324219,-149.128662109375,94.7520446777344,-13.2452392578125,-127.6181640625,92.0606994628906,-14.58447265625,-126.845947265625,96.9541320800781,-12.372314453125,-148.370361328125,99.6473693847656,-11.0318603515625,-148.528564453125,95.5347290039063,-14.0215454101563,-128.055908203125,92.9815673828125,-15.3146362304688,
  327. -127.4150390625,97.0221557617188,-13.487548828125,-147.9013671875,99.5767517089844,-12.1934814453125,-101.012939453125,93.9656372070313,-15.1420288085938,-124.262451171875,99.0811462402344,-13.3458251953125,-124.259521484375,94.1039428710938,-15.5339965820313,-101.017578125,98.932373046875,-12.9585571289063,-101.921875,94.8236083984375,-15.7125244140625,-123.332275390625,98.9199523925781,-14.364501953125,-123.330322265625,94.9664916992188,-16.1030883789063,-101.92529296875,98.770751953125,-13.9768676757813,-67.4140625,92.864013671875,-12.5430908203125,-98.904296875,92.5753479003906,-11.9743041992188,-67.421142578125,97.8306579589844,-10.3596801757813,-98.911376953125,97.542236328125,-9.7913818359375,-67.7353515625,93.74462890625,-13.1886596679688,-98.591064453125,93.4568481445313,-12.6201782226563,-67.741455078125,97.7103271484375,-11.4442749023438,-98.596923828125,97.4228515625,-10.8763427734375,-148.685302734375,53.8531951904297,86.3849487304688,-148.669189453125,48.7790069580078,84.126953125,-126.450927734375,48.7700042724609,84.2086181640625,-126.454833984375,53.8442230224609,86.466064453125,-99.562255859375,55.8979187011719,79.79345703125,-122.550048828125,59.0375366210938,81.1743774414063,-123.348876953125,53.9275970458984,78.9010620117188,-100.330810546875,50.9907989501953,77.6102294921875,-67.8896484375,46.9329681396484,101.599792480469,-99.4013671875,43.8864593505859,101.092346191406,-98.8955078125,38.9510955810547,98.8960571289063,-67.382080078125,41.9977416992188,99.4042358398438,-65.152587890625,49.2483673095703,94.28271484375,-65.1513671875,44.2816925048828,92.0986938476563,-40.39404296875,44.1971588134766,92.3601684570313,-40.396240234375,49.163818359375,94.5435791015625,-16.900390625,-3.23406982421875,196.204284667969,-16.897705078125,0.609481811523438,198.196655273438,-37.91015625,-3.19538879394531,196.059387207031,-37.904296875,0.642303466796875,198.065002441406,-15.95849609375,-3.36825561523438,195.150634765625,-15.956298828125,1.58859252929688,197.356750488281,-38.85595703125,-3.49050903320313,195.362548828125,
  328. -38.85302734375,1.46630859375,197.568725585938,-16.774658203125,93.3640441894531,-13.5389404296875,-39.571533203125,93.3383483886719,-13.5440063476563,-16.7822265625,98.3306884765625,-11.3555297851563,-39.57861328125,98.3052368164063,-11.3611450195313,-17.059326171875,94.2449645996094,-14.1849975585938,-39.295166015625,94.2201232910156,-14.1904296875,-17.0654296875,98.2106018066406,-12.4406127929688,-39.30078125,98.1860046386719,-12.446533203125,-16.6826171875,56.5418395996094,79.4566650390625,-39.372802734375,59.0846862792969,80.3505249023438,-40.015625,54.1610412597656,78.1636352539063,-17.324462890625,51.6180877685547,77.2698364257813,14.364501953125,-1.66462707519531,198.378051757813,14.499755859375,2.28181457519531,200.133911132813,-13.92529296875,-0.516159057617188,197.839477539063,-13.786865234375,3.10887145996094,200.316528320313,15.48779296875,-1.53318786621094,196.646789550781,15.656005859375,3.41940307617188,198.855590820313,-15.08447265625,-0.797927856445313,197.198974609375,-14.914306640625,4.15460205078125,199.408203125,15.3994140625,96.4259338378906,-14.8825073242188,-15.350830078125,92.1861267089844,-16.24609375,14.62451171875,101.343811035156,-12.726318359375,-16.1259765625,97.1043090820313,-14.09033203125,14.9560546875,97.2488098144531,-15.5424194335938,-15.12353515625,93.1054992675781,-16.8859252929688,14.33642578125,101.175689697266,-13.8199462890625,-15.742919921875,97.0325012207031,-15.1638793945313,12.678466796875,65.5631713867188,59.6524658203125,-15.893798828125,65.4990234375,59.7186889648438,-15.89111328125,60.8934936523438,57.6943359375,12.681640625,60.9578552246094,57.6275634765625,41.17626953125,1.33380126953125,197.80126953125,41.5498046875,-3.03315734863281,196.102783203125,62.19287109375,-1.26715087890625,196.488647460938,61.852294921875,2.7435302734375,198.036010742188,38.639404296875,-4.74769592285156,200.543029785156,38.6220703125,-0.189605712890625,202.602722167969,17.578857421875,-4.64393615722656,200.257263183594,17.55126953125,-0.0866241455078125,202.317443847656,92.7255859375,-4.69650268554688,199.979675292969,
  329. 92.729248046875,-0.746444702148438,201.733459472656,65.491943359375,-4.34945678710938,199.125305175781,65.49853515625,-0.720565795898438,201.599853515625,83.281005859375,-4.52960205078125,199.57861328125,83.794921875,-0.610275268554688,201.40283203125,71.98388671875,-4.9676513671875,200.531860351563,70.748291015625,-0.8143310546875,201.825256347656,39.411376953125,-4.62771606445313,199.757446289063,39.39208984375,0.329345703125,201.962585449219,16.57958984375,0.54766845703125,201.408386230469,16.609130859375,-4.40939331054688,199.203796386719,39.880126953125,2.0684814453125,197.408630371094,40.35107421875,-3.31756591796875,195.013854980469,63.07080078125,3.72895812988281,197.429443359375,63.49951171875,-1.21310424804688,195.231872558594,93.7412109375,-4.53488159179688,198.261962890625,93.743408203125,0.421966552734375,200.467529296875,64.471923828125,-4.66427612304688,198.472351074219,64.47607421875,0.2926025390625,200.67822265625,15.502685546875,93.4320983886719,-13.6038208007813,38.919921875,93.6850891113281,-14.1138916015625,38.935791015625,98.6517333984375,-11.9305419921875,15.50439453125,98.3987731933594,-11.4198608398438,16.019775390625,94.2842102050781,-14.3662109375,38.389404296875,94.5333251953125,-14.8702392578125,38.40576171875,98.6347351074219,-13.0667724609375,16.022705078125,98.3853454589844,-12.5623168945313,62.721923828125,92.2625122070313,-15.532470703125,40.723876953125,101.148468017578,-12.8748779296875,39.821533203125,96.2541809082031,-15.064208984375,63.6201171875,97.146728515625,-13.3480224609375,61.947265625,93.2630615234375,-16.0685424804688,41.576416015625,100.842041015625,-13.9274291992188,40.859619140625,96.9544677734375,-15.6668090820313,62.66162109375,97.1445617675781,-14.33203125,93.622314453125,93.0439147949219,-12.50341796875,64.61669921875,92.7580261230469,-11.9340209960938,93.61474609375,98.0105590820313,-10.3200073242188,64.609619140625,97.7249145507813,-9.7510986328125,93.315673828125,93.9245300292969,-13.1489868164063,64.914794921875,93.6395263671875,-12.579833984375,93.31005859375,97.8902282714844,-11.4046020507813,
  330. 64.908935546875,97.6054992675781,-10.8359985351563,14.423095703125,50.2327880859375,85.6376953125,14.78466796875,45.1738891601563,83.3741455078125,39.76708984375,46.5033874511719,83.8577880859375,39.417724609375,51.5630187988281,86.1210327148438,64.524169921875,57.3363037109375,80.1756591796875,41.2822265625,57.3793334960938,80.2927856445313,41.29638671875,52.2078247070313,78.018310546875,64.53662109375,52.3698883056641,77.9912719726563,93.324951171875,48.0326995849609,101.74755859375,64.197998046875,46.4426116943359,101.671569824219,64.46826171875,41.5008087158203,99.4483032226563,93.595458984375,43.0909576416016,99.5247192382813,117.67724609375,-4.33811950683594,200.04638671875,117.6796875,-0.494537353515625,202.038757324219,96.66796875,-4.29942321777344,199.901550292969,96.673828125,-0.46173095703125,201.9072265625,118.61962890625,-4.4722900390625,198.992736816406,118.621337890625,0.484542846679688,201.198852539063,95.7216796875,-4.59458923339844,199.204650878906,95.724853515625,0.362274169921875,201.410827636719,118.561279296875,93.5152282714844,-13.5055541992188,93.950439453125,93.4874877929688,-13.5111083984375,118.55419921875,98.4818725585938,-11.3221435546875,93.943359375,98.4543762207031,-11.3282470703125,118.276611328125,94.3961486816406,-14.151611328125,94.226806640625,94.3692932128906,-14.1575317382813,118.27099609375,98.3617858886719,-12.4072265625,94.2216796875,98.3351745605469,-12.4136352539063,117.663330078125,56.2945556640625,79.0957641601563,94.68310546875,56.2170104980469,79.206787109375,94.6845703125,51.2601776123047,77.0006103515625,117.66552734375,51.3377075195313,76.8896484375,150.718505859375,-3.91004943847656,198.641540527344,150.978515625,0.027008056640625,200.404235839844,121.470458984375,-1.99514770507813,198.523681640625,121.734619140625,1.61868286132813,201.007080078125,151.821044921875,-3.80245971679688,196.895080566406,152.1455078125,1.138427734375,199.112731933594,120.2958984375,-2.24588012695313,197.898864746094,120.62158203125,2.6949462890625,200.116821289063,151.4951171875,95.4418640136719,-15.10205078125,
  331. 119.74853515625,93.4335632324219,-15.9769897460938,151.119873046875,100.398803710938,-12.9286499023438,119.373291015625,98.3906555175781,-13.8040771484375,151.102294921875,96.2966613769531,-15.7538452148438,120.032470703125,94.3350524902344,-16.6195678710938,150.802734375,100.254791259766,-14.0175170898438,119.73291015625,98.2931518554688,-14.8837280273438,148.853515625,63.5698852539063,58.9909057617188,119.28759765625,63.504638671875,59.0569458007813,119.289794921875,58.8991088867188,57.0325317382813,148.856689453125,58.964599609375,56.9659423828125,176.9892578125,1.64152526855469,200.761474609375,177.3115234375,-2.71119689941406,199.019592285156,198.864013671875,-1.0897216796875,199.198486328125,198.571533203125,2.90809631347656,200.78564453125,173.872314453125,-5.37882995605469,200.3134765625,173.85595703125,-0.820755004882813,202.373229980469,155.530517578125,-5.27383422851563,200.028076171875,155.505126953125,-0.716522216796875,202.08837890625,174.581298828125,-5.25888061523438,199.527893066406,174.564208984375,-0.30181884765625,201.73291015625,154.611572265625,-0.0822296142578125,201.17919921875,154.63916015625,-5.03927612304688,198.974548339844,175.795654296875,2.40615844726563,200.396118164063,176.19873046875,-2.95977783203125,197.947814941406,199.100341796875,3.87287902832031,200.168090820313,199.9169921875,-1.05064392089844,197.921508789063,153.382080078125,95.0877990722656,-13.1712036132813,173.1513671875,92.3964538574219,-14.5103759765625,173.861083984375,97.2898559570313,-12.2982177734375,154.078857421875,99.9831237792969,-10.957763671875,153.93359375,95.8704833984375,-13.9474487304688,172.7490234375,93.3173217773438,-15.2405395507813,173.338134765625,97.35791015625,-13.4134521484375,154.510009765625,99.9125061035156,-12.119384765625,199.8681640625,94.7918090820313,-14.7821655273438,175.3544921875,99.4161987304688,-13.2719116210938,175.357177734375,94.4390258789063,-15.4600830078125,199.86376953125,99.758544921875,-12.5986938476563,199.03271484375,95.6497802734375,-15.3526000976563,176.20947265625,99.2550048828125,-14.2905883789063,
  332. 176.211181640625,95.3015441894531,-16.0291137695313,199.029541015625,99.596923828125,-13.6170043945313,152.63916015625,53.6771087646484,86.4531860351563,152.653564453125,48.6029205322266,84.1951904296875,173.073486328125,48.5939025878906,84.27685546875,173.06982421875,53.6681365966797,86.5343017578125,200.033935546875,57.5327758789063,79.8828735351563,176.927001953125,60.6692810058594,81.2631225585938,176.19287109375,55.5593566894531,78.9898071289063,199.777099609375,52.6256713867188,77.6996459960938,-183.299560546875,-9.43081665039063,192.721374511719,-183.299560546875,84.3519592285156,-17.2437744140625,-199.07080078125,84.3519592285156,-17.2437744140625,-199.176513671875,-9.43081665039063,192.721374511719,-183.299560546875,1.88941955566406,195.838256835938,-183.299560546875,95.45849609375,-14.2222290039063,-199.07080078125,95.45849609375,-14.2222290039063,-199.176513671875,1.88941955566406,195.838256835938,8.95751953125,-9.69329833984375,184.474182128906,8.95751953125,82.26806640625,-17.2437744140625,-10.005859375,82.26806640625,-17.2437744140625,-10.15576171875,-9.69329833984375,184.474182128906,8.95751953125,3.83197021484375,187.891967773438,8.95751953125,95.57958984375,-13.9213256835938,-10.005859375,95.57958984375,-13.9213256835938,-10.15576171875,3.83197021484375,187.891967773438,8.95751953125,3.06629943847656,187.546752929688,-10.15576171875,3.06629943847656,187.546752929688,8.95751953125,94.9208374023438,-14.2189331054688,-10.005859375,94.9208374023438,-14.2189331054688,199.145751953125,-9.4307861328125,192.721374511719,199.145751953125,84.3519287109375,-17.2438354492188,183.052001953125,84.3519287109375,-17.2438354492188,182.9462890625,-9.4307861328125,192.721374511719,199.145751953125,1.0418701171875,195.707702636719,199.145751953125,94.6109619140625,-14.352783203125,183.052001953125,94.6109619140625,-14.352783203125,182.9462890625,1.0418701171875,195.707702636719,199.145751953125,1.24484252929688,195.7939453125,182.9462890625,1.24484252929688,195.7939453125,199.145751953125,94.9208068847656,-14.2189331054688,
  333. 183.052001953125,94.9208068847656,-14.2189331054688,190.730224609375,50.0088195800781,81.3461303710938,-185.963134765625,49.8379516601563,81.7550048828125,-185.963134765625,45.0905456542969,79.7710571289063,190.730224609375,45.2239379882813,79.3465576171875,190.730224609375,43.9088745117188,95.94287109375,-185.963134765625,43.86767578125,96.0413818359375,-185.963134765625,39.1202697753906,94.0574340820313,190.730224609375,39.1240234375,93.9432983398438,133.261962890625,43.9555053710938,79.1708984375,133.261962890625,48.7346496582031,81.1681518554688,133.261962890625,42.6544799804688,95.717529296875,133.261962890625,37.8753356933594,93.7202758789063,22.8310546875,44.1031799316406,78.7953491210938,22.8310546875,48.871337890625,80.7880249023438,22.8310546875,42.8292236328125,95.2463989257813,22.8310546875,38.0610656738281,93.2537231445313,-88.08447265625,44.0684814453125,78.6987915039063,-88.08447265625,48.8256225585938,80.686767578125,-88.08447265625,42.8217163085938,95.0536499023438,-88.08447265625,38.0645751953125,93.065673828125,-161.79345703125,44.5776672363281,79.740478515625,-161.79345703125,49.3274841308594,81.7254638671875,-161.79345703125,43.3489074707031,96.03173828125,-161.79345703125,38.5990905761719,94.0467529296875,77.165283203125,44.817626953125,79.0980224609375,77.165283203125,49.5911865234375,81.0928955078125,77.165283203125,43.5303955078125,95.5960083007813,77.165283203125,38.7568054199219,93.6011352539063,-47.7470703125,44.9032592773438,79.2440795898438,-47.7470703125,49.6644287109375,81.2337646484375,-47.7470703125,43.6466369628906,95.6339111328125,-47.7470703125,38.885498046875,93.6442260742188,-191.928466796875,79.9285888671875,16.7384643554688,184.764892578125,80.0994873046875,16.32958984375,184.764892578125,74.4837036132813,13.9827880859375,-191.928466796875,74.2684936523438,14.3731079101563,-191.928466796875,86.028564453125,2.1417236328125,184.764892578125,86.0697631835938,2.043212890625,184.764892578125,80.4539794921875,-0.3035888671875,-191.928466796875,80.3684692382813,-0.2236328125,-134.460205078125,73.0432739257813,13.5066528320313,
  334. -134.460205078125,78.6966552734375,15.8692016601563,-134.460205078125,84.7767944335938,1.31982421875,-134.460205078125,79.1234741210938,-1.042724609375,-24.029296875,72.87841796875,13.875,-24.029296875,78.518798828125,16.2321166992188,-24.029296875,84.5609130859375,1.77374267578125,-24.029296875,78.9205322265625,-0.5833740234375,86.88623046875,72.7735595703125,13.913330078125,86.88623046875,78.40087890625,16.2649536132813,86.88623046875,84.40478515625,1.8980712890625,86.88623046875,78.7774658203125,-0.45355224609375,160.59521484375,74.0197143554688,13.6051025390625,160.59521484375,79.6383056640625,15.953125,160.59521484375,85.6168823242188,1.6468505859375,160.59521484375,79.998291015625,-0.701171875,-78.363525390625,73.7266845703125,14.2254638671875,-78.363525390625,79.3734130859375,16.585205078125,-78.363525390625,85.4342651367188,2.08209228515625,-78.363525390625,79.7875366210938,-0.27764892578125,46.548828125,73.9136962890625,14.1932983398438,46.548828125,79.5457153320313,16.5469360351563,46.548828125,85.5635375976563,2.14678955078125,46.548828125,79.9315185546875,-0.20684814453125,185.38427734375,-3.66287231445313,-1.888427734375,198.812255859375,-3.66287231445313,-1.888427734375,198.812255859375,-10.0880279541016,20.0548706054688,185.38427734375,-10.0880279541016,20.0548706054688,185.81103515625,-34.9045257568359,-0.3834228515625,197.526123046875,-34.9045257568359,-0.3834228515625,197.526123046875,-34.9045257568359,19.8040161132813,185.81103515625,-34.9045257568359,19.8040161132813,-198.276123046875,1.30734252929688,19.179931640625,-198.276123046875,7.11219787597656,-2.3162841796875,-184.725830078125,7.11219787597656,-2.3162841796875,-184.725830078125,1.30734252929688,19.179931640625,-196.923095703125,-39.1262664794922,19.6934204101563,-196.923095703125,-39.1262664794922,-0.307373046875,-185.54296875,-39.1262664794922,-0.307373046875,-185.54296875,-39.1262664794922,19.6934204101563,190.730224609375,13.67138671875,163.5234375,-185.963134765625,13.5005187988281,163.932312011719,-185.963134765625,8.75311279296875,161.948364257813,
  335. 190.730224609375,8.88650512695313,161.523864746094,190.730224609375,7.57144165039063,178.120178222656,-185.963134765625,7.53024291992188,178.218688964844,-185.963134765625,2.7828369140625,176.234741210938,190.730224609375,2.78659057617188,176.12060546875,133.261962890625,7.61807250976563,161.348205566406,133.261962890625,12.397216796875,163.345458984375,133.261962890625,6.31704711914063,177.894836425781,133.261962890625,1.53790283203125,175.897583007813,22.8310546875,7.7657470703125,160.97265625,22.8310546875,12.5339050292969,162.96533203125,22.8310546875,6.49179077148438,177.423706054688,22.8310546875,1.7236328125,175.431030273438,-88.08447265625,7.73104858398438,160.876098632813,-88.08447265625,12.4881896972656,162.864074707031,-88.08447265625,6.48428344726563,177.23095703125,-88.08447265625,1.72714233398438,175.242980957031,-161.79345703125,8.240234375,161.917785644531,-161.79345703125,12.9900512695313,163.902770996094,-161.79345703125,7.011474609375,178.209045410156,-161.79345703125,2.26165771484375,176.224060058594,77.165283203125,8.48019409179688,161.275329589844,77.165283203125,13.2537536621094,163.270202636719,77.165283203125,7.19296264648438,177.773315429688,77.165283203125,2.41937255859375,175.778442382813,-47.7470703125,8.56582641601563,161.42138671875,-47.7470703125,13.3269958496094,163.411071777344,-47.7470703125,7.3092041015625,177.811218261719,-47.7470703125,2.54806518554688,175.821533203125,198.414428710938,-31.8522415161133,20.7073364257813,184.955810546875,-31.8522415161133,20.7073364257813,184.955810546875,-31.6044311523438,-1.3350830078125,198.414428710938,-31.6044311523438,-1.3350830078125,-184.354736328125,-36.1474990844727,20.4724731445313,-198.126098632813,-36.1474990844727,20.4724731445313,-198.126098632813,-35.9876480102539,-1.15594482421875,-184.354736328125,-35.9876480102539,-1.15594482421875
  336. }
  337. PolygonVertexIndex: *1726 {
  338. a: 16,17,15,-13,18,19,8,-12,19,16,12,-9,17,18,11,-16,13,14,17,-17,14,10,18,-18,10,9,19,-19,9,13,16,-20,29,30,27,-25,31,28,20,-24,28,29,24,-21,30,31,23,-28,21,25,29,-29,25,26,30,-30,26,22,31,-31,22,21,28,-32,34,38,36,-33,33,37,39,-36,35,39,38,-35,33,35,34,-33,36,38,50,-52,39,37,48,-50,38,39,49,-51,36,37,33,-33,51,48,37,-37,40,41,45,-45,43,42,46,-48,41,43,47,-46,44,46,42,-41,44,45,47,-47,49,48,42,-44,50,49,43,-42,51,50,41,-41,40,42,48,-52,54,58,56,-53,53,57,59,-56,55,59,58,-55,53,55,54,-53,56,58,70,-72,59,57,68,-70,58,59,69,-71,56,57,53,-53,71,68,57,-57,60,61,65,-65,63,62,66,-68,61,63,67,-66,64,66,62,-61,64,65,67,-67,69,68,62,-64,70,69,63,-62,71,70,61,-61,60,62,68,-72,74,78,76,-73,73,77,79,-76,75,79,78,-75,73,75,74,-73,76,78,153,-155,79,77,155,-153,78,79,152,-154,76,77,73,-73,154,155,77,-77,80,81,85,-85,83,82,86,-88,81,83,87,-86,84,86,82,-81,84,85,87,-87,88,108,109,-90,89,109,111,-91,90,91,88,-90,92,104,105,-94,94,107,104,-93,93,105,106,-96,94,92,93,-96,98,114,112,96,100,-103,100,96,97,-102,97,113,115,99,103,-102,99,115,114,-99,102,103,99,-99,101,103,102,-101,105,104,142,-144,104,107,141,-143,106,105,143,-141,106,107,-95,106,94,-96,109,108,145,-147,111,109,146,-148,110,108,88,-92,111,110,91,-91,112,114,150,-152,115,113,148,-150,114,115,149,-151,112,113,97,-97,140,141,107,-107,118,117,121,-123,117,116,120,-122,119,118,122,-124,123,120,116,-120,144,145,108,-111,147,144,110,-112,126,125,129,-131,124,126,130,-129,131,129,125,-128,128,131,127,-125,151,148,113,-113,132,133,137,-137,135,134,138,-140,133,135,139,-138,136,138,134,-133,136,137,139,-139,131,128,130,-130,123,122,121,-121,119,116,141,-141,142,141,116,-118,143,142,117,-119,140,143,118,-120,127,125,145,-145,146,145,125,-127,147,146,126,-125,124,127,144,-148,149,148,134,-136,150,149,135,-134,151,150,133,-133,132,134,148,-152,153,152,83,-82,154,153,81,-81,80,82,155,-155,152,155,82,-84,158,162,160,-157,157,161,163,-160,159,163,162,-159,157,159,158,-157,160,162,174,-176,163,161,172,-174,162,163,173,-175,160,161,157,-157,175,172,161,-161,164,165,169,-169,
  339. 167,166,170,-172,165,167,171,-170,168,170,166,-165,168,169,171,-171,173,172,166,-168,174,173,167,-166,175,174,165,-165,164,166,172,-176,178,182,180,-177,177,181,183,-180,179,183,182,-179,177,179,178,-177,180,182,194,-196,183,181,192,-194,182,183,193,-195,180,181,177,-177,195,192,181,-181,184,185,189,-189,187,186,190,-192,185,187,191,-190,188,190,186,-185,188,189,191,-191,193,192,186,-188,194,193,187,-186,195,194,185,-185,184,186,192,-196,196,216,217,-198,197,217,219,-199,198,199,196,-198,200,212,213,-202,202,215,212,-201,201,213,214,-204,202,200,201,-204,206,222,220,204,208,-211,208,204,205,-210,205,221,223,207,211,-210,207,223,222,-207,210,211,207,-207,209,211,210,-209,213,212,250,-252,212,215,249,-251,214,213,251,-249,214,215,-203,214,202,-204,217,216,253,-255,219,217,254,-256,218,216,196,-200,219,218,199,-199,220,222,258,-260,223,221,256,-258,222,223,257,-259,220,221,205,-205,248,249,215,-215,226,225,229,-231,225,224,228,-230,227,226,230,-232,231,228,224,-228,252,253,216,-219,255,252,218,-220,234,233,237,-239,232,234,238,-237,239,237,233,-236,236,239,235,-233,259,256,221,-221,240,241,245,-245,243,242,246,-248,241,243,247,-246,244,246,242,-241,244,245,247,-247,239,236,238,-238,231,230,229,-229,227,224,249,-249,250,249,224,-226,251,250,225,-227,248,251,226,-228,235,233,253,-253,254,253,233,-235,255,254,234,-233,232,235,252,-256,257,256,242,-244,258,257,243,-242,259,258,241,-241,240,242,256,-260,262,266,264,-261,261,265,267,-264,263,267,266,-263,261,263,262,-261,264,266,278,-280,267,265,276,-278,266,267,277,-279,264,265,261,-261,279,276,265,-265,268,269,273,-273,271,270,274,-276,269,271,275,-274,272,274,270,-269,272,273,275,-275,277,276,270,-272,278,277,271,-270,279,278,269,-269,268,270,276,-280,282,286,284,-281,281,285,287,-284,283,287,286,-283,281,283,282,-281,284,286,298,-300,287,285,296,-298,286,287,297,-299,284,285,281,-281,299,296,285,-285,288,289,293,-293,291,290,294,-296,289,291,295,-294,292,294,290,-289,292,293,295,-295,297,296,290,-292,298,297,291,-290,299,298,289,-289,288,290,296,-300,300,312,313,-302,301,
  340. 313,315,-303,302,303,300,-302,304,308,309,-306,306,311,308,-305,305,309,310,-308,306,304,305,-308,309,308,334,-336,308,311,333,-335,310,309,335,-333,310,311,-307,310,306,-308,313,312,337,-339,315,313,338,-340,314,312,300,-304,315,314,303,-303,332,333,311,-311,318,317,321,-323,317,316,320,-322,319,318,322,-324,323,320,316,-320,336,337,312,-315,339,336,314,-316,326,325,329,-331,324,326,330,-329,331,329,325,-328,328,331,327,-325,331,328,330,-330,323,322,321,-321,319,316,333,-333,334,333,316,-318,335,334,317,-319,332,335,318,-320,327,325,337,-337,338,337,325,-327,339,338,326,-325,324,327,336,-340,345,346,347,-345,342,341,340,-344,341,345,344,-341,346,342,343,-348,343,340,344,-348,342,346,345,-342,353,354,355,-353,350,349,348,-352,349,358,353,352,356,-349,354,359,350,351,357,-356,357,351,348,356,352,-356,350,359,354,353,358,-350,365,366,367,-365,362,361,360,-364,361,370,365,364,368,-361,366,371,362,363,369,-368,369,363,360,368,364,-368,362,371,366,365,370,-362,382,383,379,-377,380,381,372,-376,381,382,376,-373,383,380,375,-380,375,372,376,-380,374,378,377,-374,396,397,381,-381,397,398,382,-382,398,399,383,-383,399,396,380,-384,400,401,385,-385,401,402,386,-386,402,403,387,-387,403,400,384,-388,392,393,389,-389,393,394,390,-390,394,395,391,-391,395,392,388,-392,374,373,393,-393,373,377,394,-394,377,378,395,-395,378,374,392,-396,384,385,397,-397,385,386,398,-398,386,387,399,-399,387,384,396,-400,388,389,401,-401,389,390,402,-402,390,391,403,-403,391,388,400,-404,414,415,411,-409,412,413,404,-408,413,414,408,-405,415,412,407,-412,407,404,408,-412,406,410,409,-406,428,429,413,-413,429,430,414,-414,430,431,415,-415,431,428,412,-416,432,433,417,-417,433,434,418,-418,434,435,419,-419,435,432,416,-420,424,425,421,-421,425,426,422,-422,426,427,423,-423,427,424,420,-424,406,405,425,-425,405,409,426,-426,409,410,427,-427,410,406,424,-428,416,417,429,-429,417,418,430,-430,418,419,431,-431,419,416,428,-432,420,421,433,-433,421,422,434,-434,422,423,435,-435,423,420,432,-436,5,4,437,-437,4,6,438,-438,6,7,439,-439,7,5,436,-440,486,487,
  341. 441,-441,487,484,442,-442,484,485,443,-443,485,486,440,-444,3,1,445,-445,1,0,446,-446,0,2,447,-447,2,3,444,-448,489,490,449,-449,490,491,450,-450,491,488,451,-451,488,489,448,-452,449,450,451,-449,441,442,443,-441,462,463,459,-457,460,461,452,-456,461,462,456,-453,463,460,455,-460,455,452,456,-460,454,458,457,-454,476,477,461,-461,477,478,462,-462,478,479,463,-463,479,476,460,-464,480,481,465,-465,481,482,466,-466,482,483,467,-467,483,480,464,-468,472,473,469,-469,473,474,470,-470,474,475,471,-471,475,472,468,-472,454,453,473,-473,453,457,474,-474,457,458,475,-475,458,454,472,-476,464,465,477,-477,465,466,478,-478,466,467,479,-479,467,464,476,-480,468,469,481,-481,469,470,482,-482,470,471,483,-483,471,468,480,-484,438,439,485,-485,439,436,486,-486,436,437,487,-487,437,438,484,-488,447,444,489,-489,444,445,490,-490,445,446,491,-491,446,447,488,-492
  342. }
  343. Edges: *875 {
  344. a: 1538,1546,1534,1542,1502,1510,1514,1506,24,6,2,16,10,14,20,28,5,3,7,1,19,17,0,21,12,25,4,8,60,38,34,52,42,46,56,48,37,35,39,33,51,49,40,53,32,57,44,36,79,68,75,70,71,67,66,85,64,87,65,69,73,92,131,127,105,107,114,100,104,108,103,101,112,102,106,110,121,123,86,81,90,83,82,96,151,140,147,142,143,139,138,157,136,159,137,141,145,164,203,199,177,179,186,172,176,180,175,173,184,174,178,182,193,195,158,153,162,155,154,168,223,212,219,214,215,211,210,229,208,231,209,213,217,236,501,497,249,251,258,244,248,252,247,245,256,246,250,254,264,266,267,272,349,276,278,279,291,287,283,299,302,297,311,304,301,305,312,300,295,306,296,273,271,286,321,323,331,280,277,281,285,332,334,339,341,393,270,265,269,346,350,294,359,292,361,293,303,309,366,447,375,377,385,388,374,378,382,379,386,376,380,384,473,399,401,409,408,412,398,402,405,406,410,400,404,489,485,423,425,432,418,422,426,421,419,430,420,424,428,449,325,370,453,326,457,322,330,465,463,390,469,340,345,344,394,479,481,360,355,364,357,356,414,495,225,234,227,226,503,240,230,525,514,521,516,517,513,512,531,510,533,511,515,519,538,577,573,551,553,560,546,550,554,549,547,558,548,552,556,567,569,532,527,536,529,528,542,597,586,593,588,589,585,584,603,582,605,583,587,591,610,649,645,623,625,632,618,622,626,621,619,630,620,624,628,639,641,604,599,608,601,600,614,654,656,657,662,739,666,668,669,681,677,673,689,692,687,701,694,691,695,702,690,685,696,686,663,661,676,711,713,721,670,667,671,675,722,724,729,731,783,660,655,659,736,740,684,749,682,751,683,693,699,756,837,765,767,775,778,764,768,772,769,776,766,770,774,863,789,791,799,798,802,788,792,795,796,800,790,794,879,875,813,815,822,808,812,816,811,809,820,810,814,818,839,715,760,843,716,847,712,720,855,853,780,859,730,735,734,784,869,871,750,745,754,747,746,804,899,888,895,890,891,887,886,905,884,907,885,889,893,912,951,947,925,927,934,920,924,928,923,921,932,922,926,930,941,943,906,901,910,903,902,916,971,960,967,962,963,959,958,977,956,979,957,961,965,984,1023,1019,997,999,1006,992,996,1000,995,993,1004,994,998,1002,
  345. 1013,1015,978,973,982,975,974,988,1028,1030,1031,1036,1085,1040,1042,1043,1055,1051,1047,1037,1035,1050,1057,1059,1067,1044,1041,1045,1049,1068,1070,1075,1077,1113,1034,1029,1033,1082,1086,1143,1095,1097,1105,1108,1094,1098,1102,1099,1106,1096,1100,1104,1169,1119,1121,1129,1128,1132,1118,1122,1125,1126,1130,1120,1124,1145,1061,1090,1149,1062,1153,1058,1066,1161,1159,1110,1165,1076,1081,1080,1114,1178,1180,1176,1174,1184,1188,1182,1186,1179,1177,1181,1175,1202,1215,1209,1204,1200,1198,1210,1216,1213,1207,1206,1212,1203,1201,1205,1199,1234,1247,1241,1236,1232,1230,1242,1248,1245,1239,1238,1244,1235,1233,1237,1231,1285,1268,1264,1283,1272,1276,1284,1282,1267,1265,1269,1263,1289,1287,1266,1291,1270,1295,1262,1274,1305,1303,1304,1307,1308,1311,1312,1316,1321,1319,1320,1323,1324,1327,1328,1332,1337,1335,1318,1339,1322,1343,1326,1330,1353,1351,1286,1355,1290,1359,1294,1298,1369,1367,1302,1371,1306,1375,1310,1314,1405,1388,1384,1403,1392,1396,1404,1402,1387,1385,1389,1383,1409,1407,1386,1411,1390,1415,1382,1394,1425,1423,1424,1427,1428,1431,1432,1436,1441,1439,1440,1443,1444,1447,1448,1452,1457,1455,1438,1459,1442,1463,1446,1450,1473,1471,1406,1475,1410,1479,1414,1418,1489,1487,1422,1491,1426,1495,1430,1434,1505,1503,1504,1507,1508,1511,1512,1516,1521,1519,1520,1523,1524,1527,1528,1532,1537,1535,1536,1539,1540,1543,1544,1548,1553,1551,1552,1555,1556,1559,1560,1564,1597,1580,1576,1595,1584,1588,1596,1594,1579,1577,1581,1575,1601,1599,1578,1603,1582,1607,1574,1586,1617,1615,1616,1619,1620,1623,1624,1628,1633,1631,1632,1635,1636,1639,1640,1644,1649,1647,1630,1651,1634,1655,1638,1642,1665,1663,1598,1667,1602,1671,1606,1610,1681,1679,1614,1683,1618,1687,1622,1626,1697,1695,1526,1699,1530,1703,1518,1522,1713,1711,1562,1715,1550,1719,1554,1558
  346. }
  347. GeometryVersion: 124
  348. LayerElementNormal: 0 {
  349. Version: 102
  350. Name: ""
  351. MappingInformationType: "ByPolygonVertex"
  352. ReferenceInformationType: "Direct"
  353. Normals: *5178 {
  354. a: 0.999999105930328,0.00113197439350188,0.000738400674890727,0.999999225139618,0.00106908672023565,0.000739007198717445,0.999838054180145,0.0179874263703823,0.000575740705244243,0.999838054180145,0.0179874245077372,0.000575740705244243,-0.999999821186066,-0.000312973221298307,0.000517323554959148,-0.99999988079071,-0.000350124959368259,0.000517772336024791,-0.999838531017303,-0.0179528780281544,0.000730342464521527,-0.999838650226593,-0.0179528817534447,0.000730342580936849,-0.00170212390366942,0.999843239784241,-0.017624219879508,-0.00167920428793877,0.999842941761017,-0.0176423471421003,-0.0195825826376677,0.99980217218399,-0.00347744300961494,-0.0195825789123774,0.999802112579346,-0.00347744231112301,4.1472703742329e-005,-0.999864816665649,0.0164443962275982,2.98453160212375e-005,-0.99986469745636,0.0164512116461992,0.0195820666849613,-0.999795794487,0.00498755695298314,0.0195820666849613,-0.999795794487,0.00498755648732185,0.999965846538544,-0.00823043566197157,0.000828658696264029,0.999965786933899,-0.00823043473064899,0.000828658638056368,0.999999225139618,0.00106908672023565,0.000739007198717445,0.999999105930328,0.00113197439350188,0.000738400674890727,-0.00975045561790466,-0.999706387519836,0.022182323038578,-0.00975045561790466,-0.999706327915192,0.0221823193132877,2.98453160212375e-005,-0.99986469745636,0.0164512116461992,4.1472703742329e-005,-0.999864816665649,0.0164443962275982,-0.999956727027893,0.00929674971848726,0.000401209486881271,-0.999956727027893,0.00929674971848726,0.000401209486881271,-0.99999988079071,-0.000350124959368259,0.000517772336024791,-0.999999821186066,-0.000312973221298307,0.000517323554959148,0.0097501240670681,0.999596476554871,-0.0266799014061689,0.0097501240670681,0.999596476554871,-0.0266799032688141,-0.00167920428793877,0.999842941761017,-0.0176423471421003,-0.00170212390366942,0.999843239784241,-0.017624219879508,0.999793767929077,0.0203023236244917,0.000402159465011209,0.999795973300934,0.020197544246912,0.000399392389226705,0.999890446662903,0.0147990249097347,0.000256824190728366,
  355. 0.999890506267548,0.0147990267723799,0.000256824219832197,-0.999804973602295,-0.019728222861886,0.000919084122870117,-0.999803364276886,-0.0198066923767328,0.000916958961170167,-0.999890148639679,-0.0147891789674759,0.00105282093863934,-0.999890148639679,-0.0147891798987985,0.00105282105505466,-0.0203834846615791,0.999625742435455,-0.0182448085397482,-0.020378015935421,0.999625504016876,-0.0182603057473898,-0.0158534869551659,0.999391138553619,-0.0310783721506596,-0.0158534869551659,0.999391138553619,-0.0310783740133047,0.0224143881350756,-0.999614357948303,0.0163887999951839,0.022398816421628,-0.999614059925079,0.0164272300899029,0.0158525686711073,-0.999343574047089,0.0325757563114166,0.0158525668084621,-0.999343514442444,0.032575748860836,-0.0318741947412491,0.999388515949249,0.0143719082698226,-0.0318741910159588,0.999388575553894,0.0143719092011452,-0.020378015935421,0.999625504016876,-0.0182603057473898,-0.0203834846615791,0.999625742435455,-0.0182448085397482,0.999537169933319,0.0304131768643856,0.000669185246806592,0.999537169933319,0.0304131750017405,0.000669185188598931,0.999795973300934,0.020197544246912,0.000399392389226705,0.999793767929077,0.0203023236244917,0.000402159465011209,0.0318757072091103,-0.999467372894287,-0.00698931841179729,0.03187570348382,-0.999467372894287,-0.006989317946136,0.022398816421628,-0.999614059925079,0.0164272300899029,0.0224143881350756,-0.999614357948303,0.0163887999951839,-0.999577701091766,-0.0290502160787582,0.000666571140754968,-0.999577760696411,-0.0290502198040485,0.000666571198962629,-0.999803364276886,-0.0198066923767328,0.000916958961170167,-0.999804973602295,-0.019728222861886,0.000919084122870117,-0.0434199869632721,-0.622192740440369,0.781659126281738,-0.201096907258034,-0.879000246524811,0.432340741157532,0.289517879486084,-0.8673055768013,0.404920279979706,0.0549808368086815,-0.612371027469635,0.7886563539505,0.0513908416032791,-0.209312185645103,0.97649747133255,0.239090859889984,0.426233112812042,0.872445344924927,-0.162711963057518,0.420972138643265,0.892360508441925,
  356. -0.0421303734183311,-0.195240721106529,0.979849994182587,-0.0421303734183311,-0.195240721106529,0.979849994182587,-0.162711963057518,0.420972138643265,0.892360508441925,-0.201096907258034,-0.879000246524811,0.432340741157532,-0.0434199869632721,-0.622192740440369,0.781659126281738,0.0513908416032791,-0.209312185645103,0.97649747133255,-0.0421303734183311,-0.195240721106529,0.979849994182587,-0.0434199869632721,-0.622192740440369,0.781659126281738,0.0549808368086815,-0.612371027469635,0.7886563539505,0.00144344288855791,-0.922716796398163,-0.385475963354111,0.00144344288855791,-0.922716796398163,-0.385475933551788,0.00134171231184155,-0.917363941669464,-0.3980473279953,0.0013412885600701,-0.917341291904449,-0.398099452257156,-0.00144192029256374,0.922716677188873,0.385476112365723,-0.00144192017614841,0.922716617584229,0.385476112365723,-0.00133997423108667,0.917341411113739,0.398099184036255,-0.0013403914636001,0.917363703250885,0.398047775030136,-0.999999642372131,-0.000182078030775301,0.000797403801698238,-0.999999701976776,-0.000182078030775301,0.000797403801698238,-0.999975442886353,-0.00303156184963882,0.00631769699975848,-0.999975025653839,-0.00306256022304296,0.00637775054201484,0.289517879486084,-0.8673055768013,0.404920279979706,0.239090859889984,0.426233112812042,0.872445344924927,0.0513908416032791,-0.209312185645103,0.97649747133255,0.0549808368086815,-0.612371027469635,0.7886563539505,0.99999988079071,0.000424828263930976,-1.44221357913921e-005,0.999999940395355,0.000449701357865706,-7.92583232396282e-005,0.999978005886078,0.00273612444289029,-0.00603927811607718,0.999978005886078,0.00273612444289029,-0.00603927811607718,0.145751506090164,-0.556528925895691,-0.817943751811981,-0.143532425165176,-0.557638645172119,-0.817580461502075,-0.0532534867525101,0.198250502347946,-0.978703558444977,0.0532240867614746,0.197947725653648,-0.978766560554504,-0.14578315615654,0.979052364826202,-0.142139568924904,0.143891736865044,0.979220330715179,-0.14290851354599,0.0527241379022598,0.587540745735168,-0.807475090026855,
  357. -0.0537673868238926,0.587059378623962,-0.807756423950195,-0.143532425165176,-0.557638645172119,-0.817580461502075,-0.14578315615654,0.979052364826202,-0.142139568924904,-0.0537673868238926,0.587059378623962,-0.807756423950195,-0.0532534867525101,0.198250502347946,-0.978703558444977,0.0532240867614746,0.197947725653648,-0.978766560554504,0.0527241379022598,0.587540745735168,-0.807475090026855,0.143891736865044,0.979220330715179,-0.14290851354599,0.145751506090164,-0.556528925895691,-0.817943751811981,0.0532240867614746,0.197947725653648,-0.978766560554504,-0.0532534867525101,0.198250502347946,-0.978703558444977,-0.0537673868238926,0.587059378623962,-0.807756423950195,0.0527241379022598,0.587540745735168,-0.807475090026855,-0.0013403914636001,0.917363703250885,0.398047775030136,-0.00133997423108667,0.917341411113739,0.398099184036255,-0.00120998453348875,0.910257279872894,0.414041340351105,-0.00120998464990407,0.910257339477539,0.414041370153427,-0.999975025653839,-0.00306256022304296,0.00637775054201484,-0.999975442886353,-0.00303156184963882,0.00631769699975848,-0.999881982803345,-0.0068620047532022,0.0137383714318275,-0.999882102012634,-0.00686200568452477,0.0137383742257953,0.0013412885600701,-0.917341291904449,-0.398099452257156,0.00134171231184155,-0.917363941669464,-0.3980473279953,0.00121100328397006,-0.910255253314972,-0.414045810699463,0.00121100340038538,-0.910255253314972,-0.414045840501785,0.999965071678162,-0.00262569356709719,0.0079373037442565,0.999965012073517,-0.00262569356709719,0.0079373037442565,0.999999940395355,0.000449701357865706,-7.92583232396282e-005,0.99999988079071,0.000424828263930976,-1.44221357913921e-005,-0.0727433487772942,-0.713770091533661,0.696592092514038,-0.244912222027779,-0.932580053806305,0.265164792537689,0.212435111403465,-0.955673277378082,0.203862369060516,0.0256326384842396,-0.688014388084412,0.725244164466858,0.0663378313183784,-0.128878936171532,0.989439010620117,0.269301235675812,0.578682839870453,0.769807100296021,-0.0670803487300873,0.595393776893616,0.800628781318665,
  358. -0.0251621138304472,-0.106791332364082,0.993963003158569,-0.0251621138304472,-0.106791332364082,0.993963003158569,-0.0670803487300873,0.595393776893616,0.800628781318665,-0.244912222027779,-0.932580053806305,0.265164792537689,-0.0727433487772942,-0.713770091533661,0.696592092514038,0.0663378313183784,-0.128878936171532,0.989439010620117,-0.0251621138304472,-0.106791332364082,0.993963003158569,-0.0727433487772942,-0.713770091533661,0.696592092514038,0.0256326384842396,-0.688014388084412,0.725244164466858,-0.0318449735641479,-0.914166033267975,-0.404087245464325,-0.0318449735641479,-0.914165914058685,-0.404087275266647,-0.00739180808886886,-0.909693717956543,-0.415213853120804,-0.00714405486360192,-0.909645080566406,-0.415325045585632,0.0318302027881145,0.915201306343079,0.401737958192825,0.0318302027881145,0.915201306343079,0.401737958192825,0.00720270723104477,0.909649312496185,0.415314674377441,0.00732278544455767,0.909678220748901,0.415249288082123,-0.999569594860077,0.0233365353196859,0.0177814085036516,-0.999569475650787,0.0233365297317505,0.0177814066410065,-0.999970376491547,0.00519885867834091,0.00567830167710781,-0.999967277050018,0.00552393402904272,0.00589523045346141,0.212435111403465,-0.955673277378082,0.203862369060516,0.269301235675812,0.578682839870453,0.769807100296021,0.0663378313183784,-0.128878936171532,0.989439010620117,0.0256326384842396,-0.688014388084412,0.725244164466858,0.999967992305756,-0.00587395532056689,-0.00543043576180935,0.999977350234985,-0.00523562123999,-0.00422470457851887,0.999419271945953,-0.0182366743683815,-0.0287840887904167,0.999419271945953,-0.0182366725057364,-0.0287840887904167,0.179555684328079,-0.54919558763504,-0.816176474094391,-0.0535694621503353,-0.567253410816193,-0.821799218654633,-0.0249177534133196,0.1904157102108,-0.981387257575989,0.0564981438219547,0.196062192320824,-0.978962540626526,-0.178892701864243,0.973121047019959,-0.145026624202728,0.0548139736056328,0.988160908222198,-0.143295049667358,0.0244467277079821,0.594924926757813,-0.803409457206726,-0.0566102415323257,0.58519572019577,-0.80891364812851,
  359. -0.0535694621503353,-0.567253410816193,-0.821799218654633,-0.178892701864243,0.973121047019959,-0.145026624202728,-0.0566102415323257,0.58519572019577,-0.80891364812851,-0.0249177534133196,0.1904157102108,-0.981387257575989,0.0564981438219547,0.196062192320824,-0.978962540626526,0.0244467277079821,0.594924926757813,-0.803409457206726,0.0548139736056328,0.988160908222198,-0.143295049667358,0.179555684328079,-0.54919558763504,-0.816176474094391,0.0564981438219547,0.196062192320824,-0.978962540626526,-0.0249177534133196,0.1904157102108,-0.981387257575989,-0.0566102415323257,0.58519572019577,-0.80891364812851,0.0244467277079821,0.594924926757813,-0.803409457206726,0.00732278544455767,0.909678220748901,0.415249288082123,0.00720270723104477,0.909649312496185,0.415314674377441,-0.0391644351184368,0.897172093391418,0.439941257238388,-0.0391644388437271,0.897172152996063,0.439941316843033,-0.999967277050018,0.00552393402904272,0.00589523045346141,-0.999970376491547,0.00519885867834091,0.00567830167710781,-0.999436795711517,-0.0288905613124371,-0.0170721020549536,-0.999436795711517,-0.0288905594497919,-0.0170721020549536,-0.00714405486360192,-0.909645080566406,-0.415325045585632,-0.00739180808886886,-0.909693717956543,-0.415213853120804,0.0391773469746113,-0.899313986301422,-0.435545057058334,0.0391773506999016,-0.899314045906067,-0.435545116662979,0.998993694782257,0.0186083223670721,0.0408058613538742,0.998993813991547,0.0186083260923624,0.0408058688044548,0.999977350234985,-0.00523562123999,-0.00422470457851887,0.999967992305756,-0.00587395532056689,-0.00543043576180935,-0.059525653719902,-0.715824007987976,0.695738971233368,-0.229527994990349,-0.925422608852386,0.301512509584427,0.303294688463211,-0.922109305858612,0.240264117717743,0.0533326305449009,-0.682155430316925,0.729259550571442,0.0556906796991825,-0.11921576410532,0.991305291652679,0.25208181142807,0.566264450550079,0.784728825092316,-0.145834162831306,0.564209222793579,0.812650144100189,-0.0540620349347591,-0.105834148824215,0.992913126945496,-0.0540620349347591,-0.105834148824215,0.992913126945496,
  360. -0.145834162831306,0.564209222793579,0.812650144100189,-0.229527994990349,-0.925422608852386,0.301512509584427,-0.059525653719902,-0.715824007987976,0.695738971233368,0.0556906796991825,-0.11921576410532,0.991305291652679,-0.0540620349347591,-0.105834148824215,0.992913126945496,-0.059525653719902,-0.715824007987976,0.695738971233368,0.0533326305449009,-0.682155430316925,0.729259550571442,0.00115597946569324,-0.907908320426941,-0.419167339801788,0.00115597934927791,-0.907908260822296,-0.419167339801788,0.0419806949794292,-0.906614005565643,-0.419867336750031,0.0414354018867016,-0.906641364097595,-0.419862627983093,-0.00114997779019177,0.907909452915192,0.419164627790451,-0.00114997790660709,0.907909512519836,0.419164687395096,-0.0413308031857014,0.906646728515625,0.419861137866974,-0.0420621447265148,0.906610250473022,0.419867604970932,-0.999977231025696,0.00301407743245363,-0.00603515980765224,-0.999977290630341,0.00301407766528428,-0.00603515980765224,-0.999160766601563,-0.0378348119556904,-0.0156911313533783,-0.999183356761932,-0.0372883044183254,-0.0155620230361819,0.303294688463211,-0.922109305858612,0.240264117717743,0.25208181142807,0.566264450550079,0.784728825092316,0.0556906796991825,-0.11921576410532,0.991305291652679,0.0533326305449009,-0.682155430316925,0.729259550571442,0.999188959598541,0.0371378399431705,0.0155682535842061,0.999130845069885,0.0385319404304028,0.0158988386392593,0.999977588653564,-0.00279374071396887,0.00609331298619509,0.999977469444275,-0.00279374001547694,0.00609331205487251,0.273165762424469,-0.516906559467316,-0.811287999153137,-0.000303019856801257,-0.566701173782349,-0.823923408985138,-0.0115820989012718,0.191083863377571,-0.981505334377289,0.0849146321415901,0.199562519788742,-0.97619891166687,-0.269231110811234,0.949908018112183,-0.158711582422256,0.00647004740312696,0.988518893718719,-0.150958374142647,0.0142758004367352,0.597857594490051,-0.801475286483765,-0.080397941172123,0.579101204872131,-0.811281681060791,-0.000303019856801257,-0.566701173782349,-0.823923408985138,-0.269231110811234,0.949908018112183,-0.158711582422256,
  361. -0.080397941172123,0.579101204872131,-0.811281681060791,-0.0115820989012718,0.191083863377571,-0.981505334377289,0.0849146321415901,0.199562519788742,-0.97619891166687,0.0142758004367352,0.597857594490051,-0.801475286483765,0.00647004740312696,0.988518893718719,-0.150958374142647,0.273165762424469,-0.516906559467316,-0.811287999153137,0.0849146321415901,0.199562519788742,-0.97619891166687,-0.0115820989012718,0.191083863377571,-0.981505334377289,-0.080397941172123,0.579101204872131,-0.811281681060791,0.0142758004367352,0.597857594490051,-0.801475286483765,-0.00683920225128531,-0.15348108112812,0.988127887248993,-0.187100663781166,0.20760615170002,0.960152566432953,-0.226372256875038,-0.894917726516724,0.38454881310463,-0.035024419426918,-0.614782631397247,0.787918567657471,-0.035024419426918,-0.614782631397247,0.787918567657471,-0.226372256875038,-0.894917726516724,0.38454881310463,0.227623894810677,-0.909267246723175,0.348454475402832,0.0544657148420811,-0.612808287143707,0.788352370262146,0.0544657148420811,-0.612808287143707,0.788352370262146,0.0845110639929771,-0.164122253656387,0.98281317949295,-0.00683920225128531,-0.15348108112812,0.988127887248993,-0.035024419426918,-0.614782631397247,0.787918567657471,0.0258716885000467,-0.62227463722229,0.782371282577515,0.292243242263794,-0.950383841991425,0.106604032218456,0.279732048511505,0.573986649513245,0.769603252410889,0.0249858871102333,-0.16895104944706,0.985307693481445,-0.0419104807078838,-0.623588800430298,0.780628204345703,-0.236542761325836,-0.971298575401306,0.0250331349670887,0.292243242263794,-0.950383841991425,0.106604032218456,0.0258716885000467,-0.62227463722229,0.782371282577515,0.0249858871102333,-0.16895104944706,0.985307693481445,0.279732048511505,0.573986649513245,0.769603252410889,-0.222138822078705,0.653288841247559,0.723787188529968,-0.0414094105362892,-0.164524555206299,0.985503375530243,-0.0419104807078838,-0.623588800430298,0.780628204345703,0.0258716885000467,-0.62227463722229,0.782371282577515,0.0249858871102333,-0.16895104944706,0.985307693481445,
  362. -0.0414094105362892,-0.164524555206299,0.985503375530243,-0.0638262182474136,-0.965790092945099,0.251347541809082,-0.116220906376839,-0.98665452003479,0.114041969180107,0.234355255961418,-0.969333529472351,0.0739600881934166,0.108119405806065,-0.891299307346344,0.440335959196091,0.0323425307869911,-0.81868851184845,0.573326349258423,0.0258835032582283,-0.830373823642731,0.556605398654938,0.0323425307869911,-0.81868851184845,0.573326349258423,0.108119405806065,-0.891299307346344,0.440335959196091,0.0574693158268929,0.255488812923431,0.965102434158325,-0.0162510387599468,0.152839213609695,0.988117396831512,0.0574693158268929,0.255488812923431,0.965102434158325,0.167584806680679,0.595496773719788,0.785683631896973,-0.154485464096069,0.580040872097015,0.799804210662842,-0.133812755346298,0.371573656797409,0.918709516525269,-0.0391219519078732,0.214518338441849,0.9759361743927,-0.0162510387599468,0.152839213609695,0.988117396831512,-0.133812755346298,0.371573656797409,0.918709516525269,-0.154485464096069,0.580040872097015,0.799804210662842,-0.116220906376839,-0.98665452003479,0.114041969180107,-0.0638262182474136,-0.965790092945099,0.251347541809082,0.0258835032582283,-0.830373823642731,0.556605398654938,-0.0391219519078732,0.214518338441849,0.9759361743927,-0.133812755346298,0.371573656797409,0.918709516525269,-0.0638262182474136,-0.965790092945099,0.251347541809082,-0.0162510387599468,0.152839213609695,0.988117396831512,-0.0391219519078732,0.214518338441849,0.9759361743927,0.0258835032582283,-0.830373823642731,0.556605398654938,0.0323425307869911,-0.81868851184845,0.573326349258423,0.999916136264801,0.00708752125501633,-0.0108415139839053,0.999916076660156,0.00708751985803247,-0.0108415121212602,0.999473690986633,-0.0240991227328777,-0.0217153709381819,0.999463379383087,-0.0244227517396212,-0.0218281354755163,0.00144257710780948,-0.904947876930237,-0.425520002841949,0.00144257699139416,-0.904947876930237,-0.425519973039627,-0.030703242868185,-0.907064259052277,-0.419871211051941,-0.0300542358309031,-0.907031118869781,-0.419989764690399,
  363. -0.00145665695890784,0.904517114162445,0.426435053348541,-0.00145665660966188,0.904516994953156,0.426434963941574,0.0301297847181559,0.907032370567322,0.419981330633163,0.0306171830743551,0.907063841819763,0.419878304004669,-0.222138822078705,0.653288841247559,0.723787188529968,-0.236542761325836,-0.971298575401306,0.0250331349670887,-0.0419104807078838,-0.623588800430298,0.780628204345703,-0.222138822078705,0.653288841247559,0.723787188529968,-0.0419104807078838,-0.623588800430298,0.780628204345703,-0.0414094105362892,-0.164524555206299,0.985503375530243,-0.995186388492584,0.0903870537877083,0.0378701910376549,-0.995186388492584,0.0903870463371277,0.0378701873123646,-0.996232628822327,0.0776017755270004,0.0387098453938961,-0.996225118637085,0.0777022540569305,0.0387032777070999,-0.0940057262778282,-0.900185286998749,-0.425240397453308,-0.0940057262778282,-0.900185286998749,-0.42524042725563,-0.0825985297560692,-0.905588924884796,-0.41603621840477,-0.0826750099658966,-0.905553460121155,-0.416098177433014,0.340347737073898,0.198499575257301,0.919109046459198,-0.187100663781166,0.20760615170002,0.960152566432953,-0.00683920225128531,-0.15348108112812,0.988127887248993,0.0845110639929771,-0.164122253656387,0.98281317949295,0.227623894810677,-0.909267246723175,0.348454475402832,0.340347737073898,0.198499575257301,0.919109046459198,0.0845110639929771,-0.164122253656387,0.98281317949295,0.0544657148420811,-0.612808287143707,0.788352370262146,0.0690936222672462,-0.91224205493927,-0.403782784938812,0.0690936222672462,-0.912241995334625,-0.40378275513649,0.0578263141214848,-0.908242583274841,-0.41442933678627,0.0574923790991306,-0.908120512962341,-0.414743065834045,-0.0690859332680702,0.912241160869598,0.403786152601242,-0.0690859407186508,0.912241220474243,0.403786182403564,-0.057481124997139,0.908119738101959,0.414746403694153,-0.0578255355358124,0.908245503902435,0.414422869682312,-0.99771249294281,-0.0628028735518456,-0.0250107496976852,-0.997712552547455,-0.0628028735518456,-0.0250107515603304,-0.998388767242432,-0.0515953339636326,-0.0236193891614676,
  364. -0.998380661010742,-0.0517431385815144,-0.023637754842639,0.234355255961418,-0.969333529472351,0.0739600881934166,0.167584806680679,0.595496773719788,0.785683631896973,0.0574693158268929,0.255488812923431,0.965102434158325,0.108119405806065,-0.891299307346344,0.440335959196091,-0.999519944190979,0.0227005742490292,0.0210832320153713,-0.99954617023468,0.0217241775244474,0.0208686124533415,-0.999848604202271,-0.0106858033686876,0.0137355849146843,-0.999848544597626,-0.0106858033686876,0.0137355858460069,0.31780019402504,0.941895306110382,-0.108794592320919,0.0829116553068161,-0.592137038707733,-0.801560640335083,0.016943072900176,0.169124037027359,-0.985449135303497,0.0858274698257446,0.615840911865234,-0.783181667327881,0.0829116553068161,-0.592137038707733,-0.801560640335083,-0.323828101158142,-0.532383024692535,-0.782114863395691,-0.0962382256984711,0.179253593087196,-0.979084432125092,0.016943072900176,0.169124037027359,-0.985449135303497,-0.0902116075158119,0.991573393344879,-0.0929733663797379,0.31780019402504,0.941895306110382,-0.108794592320919,0.0858274698257446,0.615840911865234,-0.783181667327881,-0.0266770571470261,0.632245361804962,-0.774308800697327,-0.0266770571470261,0.632245361804962,-0.774308800697327,-0.0962382256984711,0.179253593087196,-0.979084432125092,-0.323828101158142,-0.532383024692535,-0.782114863395691,-0.0902116075158119,0.991573393344879,-0.0929733663797379,0.0934180989861488,0.905111968517303,0.414783388376236,0.0932670906186104,0.905166923999786,0.414697557687759,0.109219431877136,0.899190604686737,0.423706769943237,0.109219416975975,0.899190545082092,0.423706740140915,0.996232688426971,-0.0775645598769188,-0.0387851968407631,0.996254503726959,-0.0772801786661148,-0.0387924052774906,0.995056390762329,-0.0915772020816803,-0.038425799459219,0.995056331157684,-0.0915771946310997,-0.038425799459219,-0.199912771582603,-0.373902946710587,-0.905666291713715,-0.201786711812019,0.919651210308075,-0.336932688951492,-0.0271072499454021,0.606792569160461,-0.794397830963135,-0.0266477409750223,0.175053477287292,-0.984198212623596,
  365. 0.221582800149918,-0.372616171836853,-0.901142776012421,-0.199912771582603,-0.373902946710587,-0.905666291713715,-0.0266477409750223,0.175053477287292,-0.984198212623596,0.0626034811139107,0.172894895076752,-0.982948780059814,0.0621190331876278,0.607589840888977,-0.791817963123322,-0.0271072499454021,0.606792569160461,-0.794397830963135,-0.201786711812019,0.919651210308075,-0.336932688951492,0.220166519284248,0.916333377361298,-0.334454506635666,0.0626034811139107,0.172894895076752,-0.982948780059814,0.0621190331876278,0.607589840888977,-0.791817963123322,0.220166519284248,0.916333377361298,-0.334454506635666,0.221582800149918,-0.372616171836853,-0.901142776012421,0.998369634151459,0.0523982867598534,0.0226373486220837,0.99837464094162,0.0523092970252037,0.0226250346750021,0.997693717479706,0.0634288340806961,0.0241630636155605,0.997693836688995,0.0634288415312767,0.0241630654782057,0.0994936376810074,-0.56213515996933,-0.821039080619812,-0.119743682444096,-0.561000227928162,-0.819109380245209,-0.0575507283210754,0.191579803824425,-0.979788184165955,0.0185443051159382,0.194885194301605,-0.980650663375854,-0.121750429272652,0.982544124126434,-0.140654787421227,0.0977431908249855,0.985189974308014,-0.140879273414612,0.0180552825331688,0.590888023376465,-0.806551575660706,-0.0580565556883812,0.592374742031097,-0.803568065166473,-0.119743682444096,-0.561000227928162,-0.819109380245209,-0.121750429272652,0.982544124126434,-0.140654787421227,-0.0580565556883812,0.592374742031097,-0.803568065166473,-0.0575507283210754,0.191579803824425,-0.979788184165955,0.0185443051159382,0.194885194301605,-0.980650663375854,0.0180552825331688,0.590888023376465,-0.806551575660706,0.0977431908249855,0.985189974308014,-0.140879273414612,0.0994936376810074,-0.56213515996933,-0.821039080619812,0.0185443051159382,0.194885194301605,-0.980650663375854,-0.0575507283210754,0.191579803824425,-0.979788184165955,-0.0580565556883812,0.592374742031097,-0.803568065166473,0.0180552825331688,0.590888023376465,-0.806551575660706,0.0621190331876278,0.607589840888977,-0.791817963123322,
  366. 0.0626034811139107,0.172894895076752,-0.982948780059814,-0.0266477409750223,0.175053477287292,-0.984198212623596,-0.0271072499454021,0.606792569160461,-0.794397830963135,-0.0266770571470261,0.632245361804962,-0.774308800697327,0.0858274698257446,0.615840911865234,-0.783181667327881,0.016943072900176,0.169124037027359,-0.985449135303497,-0.0962382256984711,0.179253593087196,-0.979084432125092,-0.997698962688446,0.0610449425876141,0.0294987987726927,-0.997699022293091,0.0610449463129044,0.0294988006353378,-0.99954617023468,0.0217241775244474,0.0208686124533415,-0.999519944190979,0.0227005742490292,0.0210832320153713,-0.0300542358309031,-0.907031118869781,-0.419989764690399,-0.030703242868185,-0.907064259052277,-0.419871211051941,-0.0679599046707153,-0.908303618431091,-0.412754148244858,-0.0679598972201347,-0.908303558826447,-0.412754088640213,0.999463379383087,-0.0244227517396212,-0.0218281354755163,0.999473690986633,-0.0240991227328777,-0.0217153709381819,0.997514247894287,-0.0613398402929306,-0.0346810482442379,0.997514247894287,-0.0613398402929306,-0.0346810519695282,0.0306171830743551,0.907063841819763,0.419878304004669,0.0301297847181559,0.907032370567322,0.419981330633163,0.0679737478494644,0.908798336982727,0.411661505699158,0.067973755300045,0.908798396587372,0.411661505699158,0.0735426619648933,0.912075638771057,0.403372764587402,0.0735426545143127,0.912075579166412,0.403372764587402,0.0932670906186104,0.905166923999786,0.414697557687759,0.0934180989861488,0.905111968517303,0.414783388376236,-0.996225118637085,0.0777022540569305,0.0387032777070999,-0.996232628822327,0.0776017755270004,0.0387098453938961,-0.997338593006134,0.0610968917608261,0.0397830903530121,-0.997338771820068,0.0610968992114067,0.0397830940783024,-0.0826750099658966,-0.905553460121155,-0.416098177433014,-0.0825985297560692,-0.905588924884796,-0.41603621840477,-0.0684752985835075,-0.911960780620575,-0.404522776603699,-0.0684752985835075,-0.911960780620575,-0.404522806406021,0.997437953948975,-0.0598217733204365,-0.0392287112772465,0.99743789434433,-0.0598217733204365,-0.0392287112772465,
  367. 0.996254503726959,-0.0772801786661148,-0.0387924052774906,0.996232688426971,-0.0775645598769188,-0.0387851968407631,-0.0578255355358124,0.908245503902435,0.414422869682312,-0.057481124997139,0.908119738101959,0.414746403694153,-0.0474619828164577,0.904367685317993,0.42410671710968,-0.0474619716405869,0.904367685317993,0.424106657505035,-0.998380661010742,-0.0517431385815144,-0.023637754842639,-0.998388767242432,-0.0515953339636326,-0.0236193891614676,-0.998873353004456,-0.0418322756886482,-0.0224055591970682,-0.9988734126091,-0.0418322756886482,-0.0224055610597134,0.0574923790991306,-0.908120512962341,-0.414743065834045,0.0578263141214848,-0.908242583274841,-0.41442933678627,0.0474677048623562,-0.904365181922913,-0.424111366271973,0.0474677011370659,-0.904365181922913,-0.42411133646965,0.99886953830719,0.0425107628107071,0.0212681125849485,0.998869597911835,0.0425107590854168,0.0212681107223034,0.99837464094162,0.0523092970252037,0.0226250346750021,0.998369634151459,0.0523982867598534,0.0226373486220837,-0.999183356761932,-0.0372883044183254,-0.0155620230361819,-0.999160766601563,-0.0378348119556904,-0.0156911313533783,-0.996714890003204,-0.0770507454872131,-0.0249498821794987,-0.996714949607849,-0.0770507454872131,-0.024949885904789,0.0414354018867016,-0.906641364097595,-0.419862627983093,0.0419806949794292,-0.906614005565643,-0.419867336750031,0.0810706093907356,-0.903951227664948,-0.419880479574203,0.0810705944895744,-0.903951227664948,-0.419880479574203,0.996706128120422,0.0771335139870644,0.0250469613820314,0.996706068515778,0.077133521437645,0.0250469651073217,0.999130845069885,0.0385319404304028,0.0158988386392593,0.999188959598541,0.0371378399431705,0.0155682535842061,-0.0420621447265148,0.906610250473022,0.419867604970932,-0.0413308031857014,0.906646728515625,0.419861137866974,-0.0810633301734924,0.903951227664948,0.419881939888,-0.0810633301734924,0.903951168060303,0.419881969690323,-0.0395183302462101,-0.624344646930695,0.780148684978485,-0.197654873132706,-0.87354302406311,0.444809317588806,0.280520677566528,-0.865908026695251,0.41413938999176,
  368. 0.0501751899719238,-0.614679932594299,0.787179172039032,0.0470553524792194,-0.205541759729385,0.977516353130341,0.230322524905205,0.420428246259689,0.877605676651001,-0.15881110727787,0.411142498254776,0.89763069152832,-0.0385004580020905,-0.191359609365463,0.980764627456665,-0.0385004580020905,-0.191359609365463,0.980764627456665,-0.15881110727787,0.411142498254776,0.89763069152832,-0.197654873132706,-0.87354302406311,0.444809317588806,-0.0395183302462101,-0.624344646930695,0.780148684978485,0.0470553524792194,-0.205541759729385,0.977516353130341,-0.0385004580020905,-0.191359609365463,0.980764627456665,-0.0395183302462101,-0.624344646930695,0.780148684978485,0.0501751899719238,-0.614679932594299,0.787179172039032,-0.0582677125930786,-0.900534331798553,-0.430862903594971,-0.0582677088677883,-0.900534331798553,-0.430862903594971,-0.0583345890045166,-0.905856132507324,-0.419549494981766,-0.0583333857357502,-0.905755281448364,-0.41976723074913,0.0582680515944958,0.900537133216858,0.430856883525848,0.0582680404186249,0.900537133216858,0.430856794118881,0.0583336912095547,0.905754446983337,0.419768959283829,0.0583349578082561,0.90586131811142,0.419538348913193,-0.998183488845825,0.0509245283901691,0.0321923308074474,-0.99818354845047,0.0509245358407497,0.0321923308074474,-0.998237490653992,0.0524684563279152,0.0277300253510475,-0.998236835002899,0.0524417757987976,0.0278071947395802,0.280520677566528,-0.865908026695251,0.41413938999176,0.230322524905205,0.420428246259689,0.877605676651001,0.0470553524792194,-0.205541759729385,0.977516353130341,0.0501751899719238,-0.614679932594299,0.787179172039032,0.998243689537048,-0.0521288365125656,-0.0281471218913794,0.99824458360672,-0.052162166684866,-0.0280510447919369,0.998189687728882,-0.0506302267313004,-0.0324655994772911,0.998189687728882,-0.0506302230060101,-0.0324655994772911,0.147387191653252,-0.553596913814545,-0.819638550281525,-0.145221576094627,-0.554843425750732,-0.819182276725769,-0.0529349222779274,0.196545273065567,-0.979064881801605,0.0529146641492844,0.196140050888062,-0.97914707660675,
  369. -0.147293418645859,0.978366136550903,-0.145273104310036,0.145671203732491,0.978478312492371,-0.146150395274162,0.0524337850511074,0.588989078998566,-0.806438207626343,-0.0534319505095482,0.588512122631073,-0.806720793247223,-0.145221576094627,-0.554843425750732,-0.819182276725769,-0.147293418645859,0.978366136550903,-0.145273104310036,-0.0534319505095482,0.588512122631073,-0.806720793247223,-0.0529349222779274,0.196545273065567,-0.979064881801605,0.0529146641492844,0.196140050888062,-0.97914707660675,0.0524337850511074,0.588989078998566,-0.806438207626343,0.145671203732491,0.978478312492371,-0.146150395274162,0.147387191653252,-0.553596913814545,-0.819638550281525,0.0529146641492844,0.196140050888062,-0.97914707660675,-0.0529349222779274,0.196545273065567,-0.979064881801605,-0.0534319505095482,0.588512122631073,-0.806720793247223,0.0524337850511074,0.588989078998566,-0.806438207626343,0.0583349578082561,0.90586131811142,0.419538348913193,0.0583336912095547,0.905754446983337,0.419768959283829,0.0584075413644314,0.912496030330658,0.404894530773163,0.0584075450897217,0.912496030330658,0.40489450097084,-0.998236835002899,0.0524417757987976,0.0278071947395802,-0.998237490653992,0.0524684563279152,0.0277300253510475,-0.998274266719818,0.0544562116265297,0.021979071199894,-0.998274326324463,0.0544562116265297,0.0219790730625391,-0.0583333857357502,-0.905755281448364,-0.41976723074913,-0.0583345890045166,-0.905856132507324,-0.419549494981766,-0.0584072209894657,-0.91249543428421,-0.40489587187767,-0.058407224714756,-0.91249543428421,-0.404895901679993,0.9982830286026,-0.0541158318519592,-0.0224155448377132,0.9982830286026,-0.0541158318519592,-0.0224155448377132,0.99824458360672,-0.052162166684866,-0.0280510447919369,0.998243689537048,-0.0521288365125656,-0.0281471218913794,-0.0601187683641911,-0.716965198516846,0.694511830806732,-0.223873272538185,-0.932085871696472,0.284774631261826,0.234070301055908,-0.947232246398926,0.219002410769463,0.031457033008337,-0.687115788459778,0.725866556167603,0.0523891821503639,-0.117888540029526,0.991643965244293,
  370. 0.237404525279999,0.580475509166718,0.778901278972626,-0.0977234467864037,0.585283100605011,0.80491840839386,-0.0352101102471352,-0.101713590323925,0.994190394878387,-0.0352101102471352,-0.101713590323925,0.994190394878387,-0.0977234467864037,0.585283100605011,0.80491840839386,-0.223873272538185,-0.932085871696472,0.284774631261826,-0.0601187683641911,-0.716965198516846,0.694511830806732,0.0523891821503639,-0.117888540029526,0.991643965244293,-0.0352101102471352,-0.101713590323925,0.994190394878387,-0.0601187683641911,-0.716965198516846,0.694511830806732,0.031457033008337,-0.687115788459778,0.725866556167603,-0.0146193001419306,-0.913304209709167,-0.407015562057495,-0.0146193001419306,-0.913304209709167,-0.407015591859818,0.0163304340094328,-0.912299692630768,-0.409197449684143,0.0167003553360701,-0.912282347679138,-0.409221112728119,0.0146085163578391,0.914354503154755,0.404650956392288,0.0146085163578391,0.914354503154755,0.404650986194611,-0.0165551360696554,0.912278115749359,0.409236609935761,-0.0164613854140043,0.91228574514389,0.409223437309265,-0.999854683876038,0.0122879398986697,0.0118116876110435,-0.999854683876038,0.0122879398986697,0.0118116894736886,-0.999880373477936,-0.015202303417027,-0.00285679381340742,-0.999876201152802,-0.0154489437118173,-0.00298842019401491,0.234070301055908,-0.947232246398926,0.219002410769463,0.237404525279999,0.580475509166718,0.778901278972626,0.0523891821503639,-0.117888540029526,0.991643965244293,0.031457033008337,-0.687115788459778,0.725866556167603,0.999888002872467,0.0143186552450061,0.00434479955583811,0.999869048595428,0.015207476913929,0.00553379952907562,0.999694347381592,-0.00672272918745875,-0.0237932316958904,0.999694347381592,-0.00672272872179747,-0.0237932298332453,0.224574655294418,-0.535194396972656,-0.814329922199249,0.00163693609647453,-0.569554030895233,-0.821952164173126,-0.0210771355777979,0.186963453888893,-0.982140839099884,0.0554845668375492,0.194735139608383,-0.979285299777985,-0.238957151770592,0.959116220474243,-0.151642754673958,-0.0150147508829832,0.989189743995667,-0.145870491862297,
  371. -0.00746052712202072,0.594696342945099,-0.803915798664093,-0.0832531601190567,0.582003176212311,-0.80891352891922,0.00163693609647453,-0.569554030895233,-0.821952164173126,-0.238957151770592,0.959116220474243,-0.151642754673958,-0.0832531601190567,0.582003176212311,-0.80891352891922,-0.0210771355777979,0.186963453888893,-0.982140839099884,0.0554845668375492,0.194735139608383,-0.979285299777985,-0.00746052712202072,0.594696342945099,-0.803915798664093,-0.0150147508829832,0.989189743995667,-0.145870491862297,0.224574655294418,-0.535194396972656,-0.814329922199249,0.0554845668375492,0.194735139608383,-0.979285299777985,-0.0210771355777979,0.186963453888893,-0.982140839099884,-0.0832531601190567,0.582003176212311,-0.80891352891922,-0.00746052712202072,0.594696342945099,-0.803915798664093,-0.0164613854140043,0.91228574514389,0.409223437309265,-0.0165551360696554,0.912278115749359,0.409236609935761,-0.074839748442173,0.905947506427765,0.416723132133484,-0.0748397409915924,0.905947506427765,0.416723102331162,-0.999876201152802,-0.0154489437118173,-0.00298842019401491,-0.999880373477936,-0.015202303417027,-0.00285679381340742,-0.997214496135712,-0.0678543448448181,-0.0309655945748091,-0.997214496135712,-0.0678543448448181,-0.0309655927121639,0.0167003553360701,-0.912282347679138,-0.409221112728119,0.0163304340094328,-0.912299692630768,-0.409197449684143,0.0748907327651978,-0.907988369464874,-0.412248134613037,0.0748907327651978,-0.907988309860229,-0.412248075008392,0.996701061725616,0.055389478802681,0.0593204125761986,0.996701121330261,0.0553894862532616,0.0593204125761986,0.999869048595428,0.015207476913929,0.00553379952907562,0.999888002872467,0.0143186552450061,0.00434479955583811,-0.0422783978283405,-0.154784023761749,0.987043261528015,-0.264102578163147,0.181004494428635,0.947357952594757,-0.134625628590584,-0.916733741760254,0.376131683588028,-0.00207161880098283,-0.615678727626801,0.787994503974915,-0.00207161880098283,-0.615678727626801,0.787994503974915,-0.134625628590584,-0.916733741760254,0.376131683588028,0.318901151418686,-0.874549984931946,0.36532786488533,
  372. 0.086322620511055,-0.602642834186554,0.793328464031219,0.086322620511055,-0.602642834186554,0.793328464031219,0.049814760684967,-0.154015064239502,0.986811935901642,-0.0422783978283405,-0.154784023761749,0.987043261528015,-0.00207161880098283,-0.615678727626801,0.787994503974915,0.0245857052505016,-0.622385144233704,0.782324910163879,0.281115651130676,-0.95500636100769,0.0945353731513023,0.26862958073616,0.585628926753998,0.764772415161133,0.0237251278012991,-0.168908789753914,0.985346138477325,-0.03975660353899,-0.623460233211517,0.780843555927277,-0.225904375314713,-0.974033772945404,0.0150132440030575,0.281115651130676,-0.95500636100769,0.0945353731513023,0.0245857052505016,-0.622385144233704,0.782324910163879,0.0237251278012991,-0.168908789753914,0.985346138477325,0.26862958073616,0.585628926753998,0.764772415161133,-0.211993664503098,0.66166216135025,0.719209253787994,-0.0393090210855007,-0.164810001850128,0.985541701316834,-0.03975660353899,-0.623460233211517,0.780843555927277,0.0245857052505016,-0.622385144233704,0.782324910163879,0.0237251278012991,-0.168908789753914,0.985346138477325,-0.0393090210855007,-0.164810001850128,0.985541701316834,-0.105456747114658,-0.957829058170319,0.267287045717239,-0.15816242992878,-0.980285286903381,0.118428558111191,0.210117891430855,-0.97473555803299,0.0757701471447945,0.0878929570317268,-0.885384202003479,0.45647531747818,0.0116355568170547,-0.819250762462616,0.573317289352417,0.00344392308034003,-0.832986056804657,0.553283214569092,0.0116355568170547,-0.819250762462616,0.573317289352417,0.0878929570317268,-0.885384202003479,0.45647531747818,0.0911567583680153,0.240171790122986,0.966440856456757,0.00800227280706167,0.157028570771217,0.987561643123627,0.0911567583680153,0.240171790122986,0.966440856456757,0.216302648186684,0.587757050991058,0.77958619594574,-0.12386079877615,0.586556255817413,0.800381302833557,-0.111641079187393,0.365723669528961,0.924003481864929,-0.01426986977458,0.219959780573845,0.975404560565948,0.00800227280706167,0.157028570771217,0.987561643123627,
  373. -0.111641079187393,0.365723669528961,0.924003481864929,-0.12386079877615,0.586556255817413,0.800381302833557,-0.15816242992878,-0.980285286903381,0.118428558111191,-0.105456747114658,-0.957829058170319,0.267287045717239,0.00344392308034003,-0.832986056804657,0.553283214569092,-0.01426986977458,0.219959780573845,0.975404560565948,-0.111641079187393,0.365723669528961,0.924003481864929,-0.105456747114658,-0.957829058170319,0.267287045717239,0.00800227280706167,0.157028570771217,0.987561643123627,-0.01426986977458,0.219959780573845,0.975404560565948,0.00344392308034003,-0.832986056804657,0.553283214569092,0.0116355568170547,-0.819250762462616,0.573317289352417,0.999434590339661,0.0301146768033504,0.0149471247568727,0.99943470954895,0.0301146786659956,0.0149471266195178,0.999482691287994,0.030007092282176,0.0115780672058463,0.999483287334442,0.0300053618848324,0.0115240002050996,0.0299676097929478,-0.916642963886261,-0.398582071065903,0.0299676079303026,-0.916642904281616,-0.398582071065903,0.0295778196305037,-0.908090531826019,-0.417727947235107,0.0295769907534122,-0.908072292804718,-0.417767643928528,-0.029980355873704,0.916241347789764,0.399503290653229,-0.0299803577363491,0.916241407394409,0.399503320455551,-0.0295859407633543,0.908074676990509,0.417762011289597,-0.0295869819819927,0.908096373081207,0.417714715003967,-0.211993664503098,0.66166216135025,0.719209253787994,-0.225904375314713,-0.974033772945404,0.0150132440030575,-0.03975660353899,-0.623460233211517,0.780843555927277,-0.211993664503098,0.66166216135025,0.719209253787994,-0.03975660353899,-0.623460233211517,0.780843555927277,-0.0393090210855007,-0.164810001850128,0.985541701316834,-0.999066829681396,-0.0342944040894508,-0.0262538511306047,-0.999066829681396,-0.0342944040894508,-0.0262538511306047,-0.999929308891296,0.0110604884102941,0.00435257004573941,-0.999951541423798,0.00931702367961407,0.00317587144672871,0.0459857285022736,-0.905672073364258,-0.421477437019348,0.0459857359528542,-0.905672192573547,-0.421477496623993,-0.009523362852633,-0.909201800823212,-0.416246861219406,
  374. -0.00950341299176216,-0.909200966358185,-0.416248947381973,0.262003898620605,0.237327992916107,0.93543004989624,-0.264102578163147,0.181004494428635,0.947357952594757,-0.0422783978283405,-0.154784023761749,0.987043261528015,0.049814760684967,-0.154015064239502,0.986811935901642,0.318901151418686,-0.874549984931946,0.36532786488533,0.262003898620605,0.237327992916107,0.93543004989624,0.049814760684967,-0.154015064239502,0.986811935901642,0.086322620511055,-0.602642834186554,0.793328464031219,0.0256137922406197,-0.903231382369995,-0.428388983011246,0.0256137885153294,-0.903231263160706,-0.428388893604279,0.0257575642317533,-0.907097160816193,-0.420132637023926,0.0257611442357302,-0.907193064689636,-0.419925093650818,-0.0256078336387873,0.903228402137756,0.428395479917526,-0.0256078355014324,0.903228402137756,0.428395479917526,-0.0257563106715679,0.907193243503571,0.419925093650818,-0.0257527343928814,0.90709787607193,0.420131057500839,-0.99969869852066,-0.0227633379399776,-0.00918943900614977,-0.999698638916016,-0.0227633342146873,-0.00918943714350462,-0.999684810638428,-0.0225165914744139,-0.0110986120998859,-0.999685049057007,-0.0225198175758123,-0.011073655448854,0.210117891430855,-0.97473555803299,0.0757701471447945,0.216302648186684,0.587757050991058,0.77958619594574,0.0911567583680153,0.240171790122986,0.966440856456757,0.0878929570317268,-0.885384202003479,0.45647531747818,-0.999401926994324,-0.0330571308732033,-0.0101435659453273,-0.999400317668915,-0.0331618599593639,-0.00996390637010336,-0.99923187494278,-0.0391879305243492,0.000378946657292545,-0.99923175573349,-0.0391879230737686,0.000378946599084884,0.178107395768166,0.978774905204773,-0.101376891136169,0.180211052298546,-0.587092399597168,-0.789206147193909,0.0291963554918766,0.16336752474308,-0.986133098602295,0.0290154684334993,0.617209553718567,-0.786263644695282,0.180211052298546,-0.587092399597168,-0.789206147193909,-0.203228667378426,-0.583905577659607,-0.785972237586975,-0.0761100947856903,0.158527061343193,-0.984416723251343,0.0291963554918766,0.16336752474308,-0.986133098602295,
  375. -0.205193385481834,0.973492026329041,-0.101039089262486,0.178107395768166,0.978774905204773,-0.101376891136169,0.0290154684334993,0.617209553718567,-0.786263644695282,-0.0765412598848343,0.618125677108765,-0.782343983650208,-0.0765412598848343,0.618125677108765,-0.782343983650208,-0.0761100947856903,0.158527061343193,-0.984416723251343,-0.203228667378426,-0.583905577659607,-0.785972237586975,-0.205193385481834,0.973492026329041,-0.101039089262486,0.0205169338732958,0.90946352481842,0.415277361869812,0.0200979728251696,0.909449577331543,0.415328145027161,-0.0307065919041634,0.906570911407471,0.42093500494957,-0.0307065881788731,0.906570851802826,0.420934945344925,0.999912321567535,-0.0122395204380155,-0.00506390212103724,0.999910831451416,-0.012331529520452,-0.0051264283247292,0.99912041425705,0.0331004336476326,0.0257418695837259,0.999120533466339,0.0331004373729229,0.0257418658584356,-0.292019486427307,-0.329596936702728,-0.897825360298157,-0.0585186220705509,0.942600429058075,-0.328755289316177,0.0450062826275826,0.608124792575836,-0.792564570903778,-0.0330473966896534,0.183560863137245,-0.982452630996704,0.123827502131462,-0.398117393255234,-0.908938586711884,-0.292019486427307,-0.329596936702728,-0.897825360298157,-0.0330473966896534,0.183560863137245,-0.982452630996704,0.0545848831534386,0.166615054011345,-0.984509944915771,0.133166328072548,0.594117999076843,-0.793278336524963,0.0450062826275826,0.608124792575836,-0.792564570903778,-0.0585186220705509,0.942600429058075,-0.328755289316177,0.356787413358688,0.869323194026947,-0.34202316403389,0.0545848831534386,0.166615054011345,-0.984509944915771,0.133166328072548,0.594117999076843,-0.793278336524963,0.356787413358688,0.869323194026947,-0.34202316403389,0.123827502131462,-0.398117393255234,-0.908938586711884,0.999682188034058,0.0231028124690056,0.0100888395681977,0.999682009220123,0.0230994559824467,0.0101128509268165,0.999692261219025,0.0233386605978012,0.00840046256780624,0.999692261219025,0.0233386587351561,0.00840046349912882,0.106404021382332,-0.561146974563599,-0.82084846496582,
  376. -0.128620862960815,-0.559785544872284,-0.818594396114349,-0.0625665560364723,0.192657560110092,-0.97926938533783,0.0202122591435909,0.196304067969322,-0.9803346991539,-0.130637645721436,0.981322169303894,-0.141211062669754,0.104584604501724,0.984405934810638,-0.141446202993393,0.0197390094399452,0.589654564857483,-0.807414293289185,-0.0630701333284378,0.591253519058228,-0.804015874862671,-0.128620862960815,-0.559785544872284,-0.818594396114349,-0.130637645721436,0.981322169303894,-0.141211062669754,-0.0630701333284378,0.591253519058228,-0.804015874862671,-0.0625665560364723,0.192657560110092,-0.97926938533783,0.0202122591435909,0.196304067969322,-0.9803346991539,0.0197390094399452,0.589654564857483,-0.807414293289185,0.104584604501724,0.984405934810638,-0.141446202993393,0.106404021382332,-0.561146974563599,-0.82084846496582,0.0202122591435909,0.196304067969322,-0.9803346991539,-0.0625665560364723,0.192657560110092,-0.97926938533783,-0.0630701333284378,0.591253519058228,-0.804015874862671,0.0197390094399452,0.589654564857483,-0.807414293289185,0.133166328072548,0.594117999076843,-0.793278336524963,0.0545848831534386,0.166615054011345,-0.984509944915771,-0.0330473966896534,0.183560863137245,-0.982452630996704,0.0450062826275826,0.608124792575836,-0.792564570903778,-0.0765412598848343,0.618125677108765,-0.782343983650208,0.0290154684334993,0.617209553718567,-0.786263644695282,0.0291963554918766,0.16336752474308,-0.986133098602295,-0.0761100947856903,0.158527061343193,-0.984416723251343,-0.99941474199295,-0.0260251704603434,-0.0222005844116211,-0.999414682388306,-0.0260251704603434,-0.0222005862742662,-0.999400317668915,-0.0331618599593639,-0.00996390637010336,-0.999401926994324,-0.0330571308732033,-0.0101435659453273,0.0295769907534122,-0.908072292804718,-0.417767643928528,0.0295778196305037,-0.908090531826019,-0.417727947235107,0.0291132871061563,-0.897757411003113,-0.439527094364166,0.0291132852435112,-0.897757351398468,-0.439527034759521,0.999483287334442,0.0300053618848324,0.0115240002050996,0.999482691287994,0.030007092282176,0.0115780672058463,
  377. 0.999524593353271,0.029879366979003,0.00759226595982909,0.999524652957916,0.0298793651163578,0.00759226689115167,-0.0295869819819927,0.908096373081207,0.417714715003967,-0.0295859407633543,0.908074676990509,0.417762011289597,-0.0291198305785656,0.898278295993805,0.438461184501648,-0.0291198305785656,0.898278295993805,0.43846121430397,0.0849481001496315,0.909658253192902,0.406578004360199,0.0849480926990509,0.909658193588257,0.406577944755554,0.0200979728251696,0.909449577331543,0.415328145027161,0.0205169338732958,0.90946352481842,0.415277361869812,-0.999951541423798,0.00931702367961407,0.00317587144672871,-0.999929308891296,0.0110604884102941,0.00435257004573941,-0.996694326400757,0.0687468498945236,0.0432940125465393,-0.996694266796112,0.0687468498945236,0.0432940125465393,-0.00950341299176216,-0.909200966358185,-0.416248947381973,-0.009523362852633,-0.909201800823212,-0.416246861219406,-0.0798720791935921,-0.909595727920532,-0.407745063304901,-0.0798720791935921,-0.909595787525177,-0.407745093107224,0.996565699577332,-0.0699619129300117,-0.0442969612777233,0.996565580368042,-0.0699619054794312,-0.0442969538271427,0.999910831451416,-0.012331529520452,-0.0051264283247292,0.999912321567535,-0.0122395204380155,-0.00506390212103724,-0.0257527343928814,0.90709787607193,0.420131057500839,-0.0257563106715679,0.907193243503571,0.419925093650818,-0.0258841849863529,0.910592138767242,0.41249480843544,-0.0258841831237078,0.910592138767242,0.412494778633118,-0.999685049057007,-0.0225198175758123,-0.011073655448854,-0.999684810638428,-0.0225165914744139,-0.0110986120998859,-0.9996697306633,-0.0222997833043337,-0.0127756129950285,-0.999669671058655,-0.0222997851669788,-0.0127756129950285,0.0257611442357302,-0.907193064689636,-0.419925093650818,0.0257575642317533,-0.907097160816193,-0.420132637023926,0.0258880723267794,-0.910590350627899,-0.412498474121094,0.0258880741894245,-0.910590350627899,-0.412498444318771,0.999670445919037,0.0228889752179384,0.0116191664710641,0.999670445919037,0.0228889770805836,0.0116191674023867,0.999682009220123,0.0230994559824467,0.0101128509268165,
  378. 0.999682188034058,0.0231028124690056,0.0100888395681977,-0.039517018944025,-0.624359726905823,0.78013676404953,-0.197715252637863,-0.873469769954681,0.444926172494888,0.280564248561859,-0.865838825702667,0.414254605770111,0.0501762554049492,-0.614699959754944,0.787163376808167,0.0470554381608963,-0.205525189638138,0.977519929409027,0.230353847146034,0.420381993055344,0.877619504928589,-0.158856347203255,0.411078423261642,0.897652089595795,-0.0384997315704823,-0.191341742873192,0.980768203735352,-0.0384997315704823,-0.191341742873192,0.980768203735352,-0.158856347203255,0.411078423261642,0.897652089595795,-0.197715252637863,-0.873469769954681,0.444926172494888,-0.039517018944025,-0.624359726905823,0.78013676404953,0.0470554381608963,-0.205525189638138,0.977519929409027,-0.0384997315704823,-0.191341742873192,0.980768203735352,-0.039517018944025,-0.624359726905823,0.78013676404953,0.0501762554049492,-0.614699959754944,0.787163376808167,0.00103578413836658,-0.90949672460556,-0.415709674358368,0.0010357842547819,-0.90949672460556,-0.41570970416069,0.00104986841324717,-0.908074676990509,-0.418807059526443,0.00104991847183555,-0.908069491386414,-0.418818056583405,-0.00103440694510937,0.90949684381485,0.415709555149078,-0.00103440682869405,0.909496784210205,0.415709495544434,-0.00104914768598974,0.908070802688599,0.41881537437439,-0.00104909623041749,0.908075869083405,0.418804556131363,-0.999970018863678,-0.00300339190289378,0.00713314767926931,-0.999970018863678,-0.00300339190289378,0.00713314721360803,-0.999971270561218,-0.00330341537483037,0.00682395603507757,-0.999971270561218,-0.00329740066081285,0.00683015445247293,0.280564248561859,-0.865838825702667,0.414254605770111,0.230353847146034,0.420381993055344,0.877619504928589,0.0470554381608963,-0.205525189638138,0.977519929409027,0.0501762554049492,-0.614699959754944,0.787163376808167,0.999999821186066,0.000495074375066906,-0.00014184380415827,0.999999940395355,0.000444997742306441,-1.16703240564675e-005,0.99997466802597,0.00293617486022413,-0.00648746732622385,0.99997466802597,0.00293617509305477,-0.00648746779188514,
  379. 0.136910691857338,-0.556753516197205,-0.819317400455475,-0.134760990738869,-0.557876646518707,-0.818909704685211,-0.0490163937211037,0.196504980325699,-0.979276895523071,0.04899812489748,0.196097880601883,-0.979359328746796,-0.136878654360771,0.980234563350677,-0.142844185233116,0.1351727694273,0.980356395244598,-0.143629878759384,0.0485238879919052,0.589177846908569,-0.806544959545136,-0.0495012030005455,0.588724434375763,-0.806816697120667,-0.134760990738869,-0.557876646518707,-0.818909704685211,-0.136878654360771,0.980234563350677,-0.142844185233116,-0.0495012030005455,0.588724434375763,-0.806816697120667,-0.0490163937211037,0.196504980325699,-0.979276895523071,0.04899812489748,0.196097880601883,-0.979359328746796,0.0485238879919052,0.589177846908569,-0.806544959545136,0.1351727694273,0.980356395244598,-0.143629878759384,0.136910691857338,-0.556753516197205,-0.819317400455475,0.04899812489748,0.196097880601883,-0.979359328746796,-0.0490163937211037,0.196504980325699,-0.979276895523071,-0.0495012030005455,0.588724434375763,-0.806816697120667,0.0485238879919052,0.589177846908569,-0.806544959545136,-0.00104909623041749,0.908075869083405,0.418804556131363,-0.00104914768598974,0.908070802688599,0.41881537437439,-0.001068084849976,0.906221449375153,0.422802031040192,-0.00106808473356068,0.906221389770508,0.422802031040192,-0.999971270561218,-0.00329740066081285,0.00683015445247293,-0.999971270561218,-0.00330341537483037,0.00682395603507757,-0.999972641468048,-0.00370000954717398,0.00641524000093341,-0.999972522258759,-0.00370000908151269,0.00641523906961083,0.00104991847183555,-0.908069491386414,-0.418818056583405,0.00104986841324717,-0.908074676990509,-0.418807059526443,0.00106808042619377,-0.906218230724335,-0.422808915376663,0.0010680805426091,-0.906218290328979,-0.422808945178986,0.999959349632263,-0.00284933182410896,0.00855182949453592,0.999959349632263,-0.00284933159127831,0.00855182949453592,0.999999940395355,0.000444997742306441,-1.16703240564675e-005,0.999999821186066,0.000495074375066906,-0.00014184380415827,
  380. -0.0670406743884087,-0.717230796813965,0.693603217601776,-0.238575607538223,-0.929843842983246,0.280128747224808,0.205827832221985,-0.955893933773041,0.209527209401131,0.0227471049875021,-0.689773917198181,0.723667502403259,0.0616917535662651,-0.121657982468605,0.990653038024902,0.256715625524521,0.576727151870728,0.775553166866302,-0.0679567009210587,0.58939254283905,0.80498343706131,-0.0225959718227386,-0.103445880115032,0.994378387928009,-0.0225959718227386,-0.103445880115032,0.994378387928009,-0.0679567009210587,0.58939254283905,0.80498343706131,-0.238575607538223,-0.929843842983246,0.280128747224808,-0.0670406743884087,-0.717230796813965,0.693603217601776,0.0616917535662651,-0.121657982468605,0.990653038024902,-0.0225959718227386,-0.103445880115032,0.994378387928009,-0.0670406743884087,-0.717230796813965,0.693603217601776,0.0227471049875021,-0.689773917198181,0.723667502403259,-0.0293881502002478,-0.914637923240662,-0.403204292058945,-0.0293881520628929,-0.914637982845306,-0.4032042324543,-0.00678634736686945,-0.909462809562683,-0.415729969739914,-0.00655883038416505,-0.909407436847687,-0.415854543447495,0.0293744746595621,0.915671408176422,0.400852918624878,0.0293744746595621,0.915671408176422,0.400852918624878,0.00661760522052646,0.909414768218994,0.415837794542313,0.0067176716402173,0.909443795681,0.415772557258606,-0.999494254589081,0.0253159124404192,0.0192469991743565,-0.999494194984436,0.025315910577774,0.0192469991743565,-0.999965846538544,0.00561822857707739,0.00607006391510367,-0.999961793422699,0.00601130537688732,0.0063330284319818,0.205827832221985,-0.955893933773041,0.209527209401131,0.256715625524521,0.576727151870728,0.775553166866302,0.0616917535662651,-0.121657982468605,0.990653038024902,0.0227471049875021,-0.689773917198181,0.723667502403259,0.999962389469147,-0.0063960081897676,-0.00585130089893937,0.999973714351654,-0.00567660760134459,-0.00449038809165359,0.999318480491638,-0.0197774954140186,-0.0311681590974331,0.999318480491638,-0.0197774954140186,-0.0311681553721428,0.168497398495674,-0.549560964107513,-0.818285584449768,
  381. -0.0513064041733742,-0.566946625709534,-0.822155237197876,-0.0226074922829866,0.190160110592842,-0.981492817401886,0.052529152482748,0.192147895693779,-0.979959189891815,-0.167638272047043,0.974974453449249,-0.14602118730545,0.0527847819030285,0.988180100917816,-0.143922209739685,0.0221410673111677,0.595322847366333,-0.80318146944046,-0.0526396445930004,0.58844405412674,-0.806822597980499,-0.0513064041733742,-0.566946625709534,-0.822155237197876,-0.167638272047043,0.974974453449249,-0.14602118730545,-0.0526396445930004,0.58844405412674,-0.806822597980499,-0.0226074922829866,0.190160110592842,-0.981492817401886,0.052529152482748,0.192147895693779,-0.979959189891815,0.0221410673111677,0.595322847366333,-0.80318146944046,0.0527847819030285,0.988180100917816,-0.143922209739685,0.168497398495674,-0.549560964107513,-0.818285584449768,0.052529152482748,0.192147895693779,-0.979959189891815,-0.0226074922829866,0.190160110592842,-0.981492817401886,-0.0526396445930004,0.58844405412674,-0.806822597980499,0.0221410673111677,0.595322847366333,-0.80318146944046,0.0067176716402173,0.909443795681,0.415772557258606,0.00661760522052646,0.909414768218994,0.415837794542313,-0.0361405462026596,0.895740926265717,0.443104863166809,-0.0361405536532402,0.895740985870361,0.443104952573776,-0.999961793422699,0.00601130537688732,0.0063330284319818,-0.999965846538544,0.00561822857707739,0.00607006391510367,-0.999337553977966,-0.0312749445438385,-0.0186134353280067,-0.999337494373322,-0.0312749445438385,-0.0186134353280067,-0.00655883038416505,-0.909407436847687,-0.415854543447495,-0.00678634736686945,-0.909462809562683,-0.415729969739914,0.0361533388495445,-0.897894084453583,-0.438724339008331,0.0361533425748348,-0.897894144058228,-0.438724309206009,0.998818039894104,0.0200963523238897,0.0442553088068962,0.998818099498749,0.0200963523238897,0.0442553125321865,0.999973714351654,-0.00567660760134459,-0.00449038809165359,0.999962389469147,-0.0063960081897676,-0.00585130089893937,-0.0321472696959972,-0.166767820715904,0.985472023487091,-0.23808990418911,0.215395569801331,0.947057545185089,
  382. -0.126636385917664,-0.935572326183319,0.329647719860077,0.00119118834845722,-0.620089411735535,0.784530282020569,0.00119118834845722,-0.620089411735535,0.784530282020569,-0.126636385917664,-0.935572326183319,0.329647719860077,0.296460747718811,-0.923322975635529,0.244101822376251,0.0895277187228203,-0.604444265365601,0.79160088300705,0.0895277187228203,-0.604444265365601,0.79160088300705,0.0653803944587708,-0.185236141085625,0.980516731739044,-0.0321472696959972,-0.166767820715904,0.985472023487091,0.00119118834845722,-0.620089411735535,0.784530282020569,0.0284049864858389,-0.618870139122009,0.784979641437531,0.301572501659393,-0.94899046421051,0.0920383483171463,0.288756668567657,0.583264112472534,0.759224891662598,0.0274660494178534,-0.173184990882874,0.98450630903244,-0.0457857251167297,-0.620455682277679,0.782903790473938,-0.245286270976067,-0.969329118728638,0.0153526579961181,0.301572501659393,-0.94899046421051,0.0920383483171463,0.0284049864858389,-0.618870139122009,0.784979641437531,0.0274660494178534,-0.173184990882874,0.98450630903244,0.288756668567657,0.583264112472534,0.759224891662598,-0.230631992220879,0.658377885818481,0.716482579708099,-0.0451793596148491,-0.168602481484413,0.984648168087006,-0.0457857251167297,-0.620455682277679,0.782903790473938,0.0284049864858389,-0.618870139122009,0.784979641437531,0.0274660494178534,-0.173184990882874,0.98450630903244,-0.0451793596148491,-0.168602481484413,0.984648168087006,0.999929010868073,0.00650887517258525,-0.00998130068182945,0.999929070472717,0.00650887470692396,-0.00998130068182945,0.999586522579193,-0.0241086296737194,-0.0156659539788961,0.99957674741745,-0.0244686733931303,-0.0157327372580767,0.0015295745106414,-0.905950486660004,-0.423380941152573,0.00152957439422607,-0.905950427055359,-0.42338091135025,-0.0333421379327774,-0.906522214412689,-0.420839428901672,-0.0329201780259609,-0.906521856784821,-0.420873254537582,-0.00154474971350282,0.905521333217621,0.42429792881012,-0.0015447495970875,0.905521273612976,0.424297869205475,0.032995481044054,0.906520664691925,0.420870035886765,
  383. 0.033255897462368,0.906524062156677,0.420842289924622,-0.230631992220879,0.658377885818481,0.716482579708099,-0.245286270976067,-0.969329118728638,0.0153526579961181,-0.0457857251167297,-0.620455682277679,0.782903790473938,-0.230631992220879,0.658377885818481,0.716482579708099,-0.0457857251167297,-0.620455682277679,0.782903790473938,-0.0451793596148491,-0.168602481484413,0.984648168087006,-0.999579787254334,0.0276126880198717,0.00881910603493452,-0.999579727649689,0.0276126861572266,0.00881910510361195,-0.998994827270508,0.0399271249771118,0.0203773751854897,-0.998998761177063,0.039859838783741,0.0203142073005438,-0.031412810087204,-0.904903292655945,-0.424456626176834,-0.031412810087204,-0.904903173446655,-0.424456596374512,-0.0414874032139778,-0.910051286220551,-0.412414371967316,-0.0414392687380314,-0.910027205944061,-0.412472188472748,0.184417486190796,0.380837380886078,0.906064569950104,-0.23808990418911,0.215395569801331,0.947057545185089,-0.0321472696959972,-0.166767820715904,0.985472023487091,0.0653803944587708,-0.185236141085625,0.980516731739044,0.296460747718811,-0.923322975635529,0.244101822376251,0.184417486190796,0.380837380886078,0.906064569950104,0.0653803944587708,-0.185236141085625,0.980516731739044,0.0895277187228203,-0.604444265365601,0.79160088300705,-0.999624788761139,0.0229263696819544,0.0149951903149486,-0.999648094177246,0.0219280943274498,0.0149239301681519,-0.999871730804443,-0.00981521140784025,0.0126510662958026,-0.999871790409088,-0.00981521140784025,0.0126510681584477,0.337258845567703,0.935524165630341,-0.105122849345207,0.0839449539780617,-0.593789517879486,-0.800229489803314,0.0196145735681057,0.16830687224865,-0.985539495944977,0.0916253253817558,0.610033810138702,-0.787060022354126,0.0839449539780617,-0.593789517879486,-0.800229489803314,-0.343323111534119,-0.531195819377899,-0.774570882320404,-0.102995052933693,0.185984715819359,-0.977139472961426,0.0196145735681057,0.16830687224865,-0.985539495944977,-0.0913871973752975,0.991698384284973,-0.0904581844806671,0.337258845567703,0.935524165630341,-0.105122849345207,
  384. 0.0916253253817558,0.610033810138702,-0.787060022354126,-0.0301955975592136,0.632790327072144,-0.773734271526337,-0.0301955975592136,0.632790327072144,-0.773734271526337,-0.102995052933693,0.185984715819359,-0.977139472961426,-0.343323111534119,-0.531195819377899,-0.774570882320404,-0.0913871973752975,0.991698384284973,-0.0904581844806671,0.052723690867424,0.909940659999847,0.411373615264893,0.0527359992265701,0.909952104091644,0.411346703767776,0.0472205393016338,0.904734015464783,0.423351496458054,0.0472205355763435,0.904734075069427,0.423351496458054,0.999814569950104,0.0169452987611294,0.00915218237787485,0.999819338321686,0.0167200099676847,0.00903846137225628,0.998650968074799,0.0461114980280399,0.023874569684267,0.998650968074799,0.0461114980280399,0.0238745715469122,-0.166498824954033,-0.40326327085495,-0.899809300899506,-0.197522580623627,0.931248903274536,-0.306203067302704,-0.0284672155976295,0.600993871688843,-0.798746466636658,-0.0179351735860109,0.174359306693077,-0.984518826007843,0.219331622123718,-0.402666479349136,-0.888680696487427,-0.166498824954033,-0.40326327085495,-0.899809300899506,-0.0179351735860109,0.174359306693077,-0.984518826007843,0.0672944188117981,0.179758936166763,-0.981406211853027,0.05654451623559,0.608566403388977,-0.791485846042633,-0.0284672155976295,0.600993871688843,-0.798746466636658,-0.197522580623627,0.931248903274536,-0.306203067302704,0.189253807067871,0.931782007217407,-0.309782475233078,0.0672944188117981,0.179758936166763,-0.981406211853027,0.05654451623559,0.608566403388977,-0.791485846042633,0.189253807067871,0.931782007217407,-0.309782475233078,0.219331622123718,-0.402666479349136,-0.888680696487427,0.05654451623559,0.608566403388977,-0.791485846042633,0.0672944188117981,0.179758936166763,-0.981406211853027,-0.0179351735860109,0.174359306693077,-0.984518826007843,-0.0284672155976295,0.600993871688843,-0.798746466636658,-0.0301955975592136,0.632790327072144,-0.773734271526337,0.0916253253817558,0.610033810138702,-0.787060022354126,0.0196145735681057,0.16830687224865,-0.985539495944977,
  385. -0.102995052933693,0.185984715819359,-0.977139472961426,-0.998018622398376,0.0603896602988243,0.0176596846431494,-0.998018682003021,0.0603896602988243,0.0176596827805042,-0.999648094177246,0.0219280943274498,0.0149239301681519,-0.999624788761139,0.0229263696819544,0.0149951903149486,-0.0329201780259609,-0.906521856784821,-0.420873254537582,-0.0333421379327774,-0.906522214412689,-0.420839428901672,-0.0739162415266037,-0.905790209770203,-0.41722959280014,-0.0739162340760231,-0.905790150165558,-0.417229622602463,0.99957674741745,-0.0244686733931303,-0.0157327372580767,0.999586522579193,-0.0241086296737194,-0.0156659539788961,0.997908413410187,-0.0606273300945759,-0.0224320515990257,0.997908353805542,-0.0606273263692856,-0.0224320515990257,0.033255897462368,0.906524062156677,0.420842289924622,0.032995481044054,0.906520664691925,0.420870035886765,0.073933370411396,0.906288266181946,0.4161436855793,0.0739333629608154,0.906288206577301,0.416143596172333,0.0596483014523983,0.916245758533478,0.396151095628738,0.0596483014523983,0.916245818138123,0.396151155233383,0.0527359992265701,0.909952104091644,0.411346703767776,0.052723690867424,0.909940659999847,0.411373615264893,-0.998998761177063,0.039859838783741,0.0203142073005438,-0.998994827270508,0.0399271249771118,0.0203773751854897,-0.997758507728577,0.0564664714038372,0.0359088256955147,-0.997758567333221,0.0564664714038372,0.0359088256955147,-0.0414392687380314,-0.910027205944061,-0.412472188472748,-0.0414874032139778,-0.910051286220551,-0.412414371967316,-0.0542198792099953,-0.91620945930481,-0.397014319896698,-0.0542198829352856,-0.91620945930481,-0.397014319896698,0.999726474285126,-0.021112909540534,-0.0100596295669675,0.999726474285126,-0.021112909540534,-0.0100596295669675,0.999819338321686,0.0167200099676847,0.00903846137225628,0.999814569950104,0.0169452987611294,0.00915218237787485,0,0.913474082946777,0.406896978616714,0,0.913474023342133,0.406897008419037,0,0.913474023342133,0.406896948814392,0,0.913474082946777,0.406896978616714,0,-0.913059532642365,-0.40782618522644,
  386. 0,-0.913059592247009,-0.407826215028763,0,-0.913059592247009,-0.407826215028763,0,-0.913059532642365,-0.40782618522644,1,0,0,1,0,0,1,0,0,1,0,0,-0.999999821186066,0.000122695491882041,-0.000448595819761977,-0.99999988079071,0.000122695506433956,-0.000448595877969638,-0.99999988079071,0.000122695506433956,-0.000448595790658146,-0.99999988079071,0.000122695491882041,-0.000448595819761977,0,-0.26545861363411,0.964122295379639,0,-0.26545861363411,0.964122295379639,0,-0.26545861363411,0.964122295379639,0,-0.26545861363411,0.964122295379639,0,0.262509912252426,-0.964929342269897,0,0.262509912252426,-0.964929342269897,0,0.262509912252426,-0.964929342269897,0,0.262509912252426,-0.964929342269897,0,0.910342216491699,0.413856446743011,0,0.910342156887054,0.413856446743011,0,0.910342216491699,0.413856416940689,0,0.910342216491699,0.413856446743011,0,-0.909904778003693,-0.414817184209824,0,-0.909904778003693,-0.414817243814468,0,-0.909904778003693,-0.414817243814468,0,-0.909904837608337,-0.414817243814468,1,4.04636182338436e-008,0,1,4.04636217865573e-008,0,1,4.04636146811299e-008,0,1,4.04636146811299e-008,0,1,4.04636217865573e-008,0,1,4.04636182338436e-008,0,-0.999999761581421,0.000167478865478188,-0.000666750886011869,-0.999999821186066,0.000167478850926273,-0.000666750886011869,-0.999999821186066,0.000167478865478188,-0.00066675094421953,-0.999999761581421,0.000167478850926273,-0.000666750886011869,-0.999999821186066,0.000167478865478188,-0.000666750886011869,-0.999999821186066,0.000167478865478188,-0.00066675094421953,0,-0.244995176792145,0.969524264335632,0,-0.244995191693306,0.969524264335632,0,-0.244995191693306,0.969524264335632,0,-0.244995176792145,0.969524264335632,0,-0.244995191693306,0.969524264335632,0,-0.244995191693306,0.969524264335632,0,0.242163047194481,-0.970235526561737,0,0.242163017392159,-0.970235586166382,0,0.242163047194481,-0.970235526561737,0,0.242163047194481,-0.970235526561737,0,0.242163017392159,-0.970235586166382,0,0.242163047194481,-0.970235526561737,0,0.913474023342133,0.406897097826004,0,0.913474023342133,0.406897068023682,
  387. 0,0.913473963737488,0.406897038221359,0,0.913474023342133,0.406897097826004,0,-0.913059771060944,-0.407825708389282,0,-0.913059771060944,-0.407825708389282,0,-0.913059771060944,-0.407825708389282,0,-0.913059830665588,-0.407825708389282,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,-0.999999821186066,0.000125845908769406,-0.000446873455075547,-0.99999988079071,0.000125845923321322,-0.000446873484179378,-0.99999988079071,0.000125845908769406,-0.000446873484179378,-0.999999940395355,0.000125845908769406,-0.000446873513283208,-0.99999988079071,0.000125845908769406,-0.000446873484179378,-0.99999988079071,0.000125845908769406,-0.000446873484179378,0,-0.274223625659943,0.961665987968445,0,-0.274223625659943,0.961665987968445,0,-0.274223625659943,0.961665987968445,0,-0.274223625659943,0.961665987968445,0,-0.274223625659943,0.961665987968445,0,-0.274223625659943,0.961665987968445,0,0.271240830421448,-0.962511479854584,0,0.271240830421448,-0.962511479854584,0,0.271240830421448,-0.962511479854584,0,0.271240830421448,-0.962511479854584,0,0.271240830421448,-0.962511479854584,0,0.271240830421448,-0.962511479854584,-0.001513063441962,-0.385587304830551,0.922670185565948,-0.001545574166812,-0.385587275028229,0.922670066356659,0.00479795085266232,-0.385583221912384,0.92266058921814,0.00479795085266232,-0.385583251714706,0.922660648822784,0.000652012531645596,0.38558766245842,-0.922671020030975,0.000619506172370166,0.385587632656097,-0.922671020030975,-0.00569082051515579,0.385580211877823,-0.922656774520874,-0.00569082051515579,0.385580211877823,-0.922656774520874,-0.00427307607606053,0.922664701938629,0.38557967543602,-0.00429921038448811,0.92266458272934,0.385579645633698,-0.0216463916003704,0.922456741333008,0.385493248701096,-0.0216463897377253,0.922456741333008,0.385493278503418,0.0041915369220078,-0.922664940357208,-0.385579764842987,0.00416539935395122,-0.922665119171143,-0.385579794645309,0.0215391367673874,-0.922459185123444,-0.385493248701096,0.0215391386300325,-0.922459304332733,-0.385493248701096,1,0,0,1,0,0,1,0,0,
  388. 1,0,0,-1,3.83059614250669e-007,0,-1,3.83059614250669e-007,0,-1,3.83059614250669e-007,0,-1,3.83059614250669e-007,0,0.00365461013279855,0.385586947202683,-0.922664344310761,0.00365620409138501,0.385586947202683,-0.922664284706116,0.000619506172370166,0.385587632656097,-0.922671020030975,0.000652012531645596,0.38558766245842,-0.922671020030975,-0.000195266693481244,0.922673404216766,0.385582387447357,-0.000123341116704978,0.922673404216766,0.385582357645035,-0.00429921038448811,0.92266458272934,0.385579645633698,-0.00427307607606053,0.922664701938629,0.38557967543602,-0.00454949913546443,-0.385584473609924,0.922661304473877,-0.00454790564253926,-0.385584503412247,0.922661364078522,-0.001545574166812,-0.385587275028229,0.922670066356659,-0.001513063441962,-0.385587304830551,0.922670185565948,1.55364596139407e-005,-0.922672986984253,-0.385583221912384,8.74645484145731e-005,-0.922672986984253,-0.385583221912384,0.00416539935395122,-0.922665119171143,-0.385579794645309,0.0041915369220078,-0.922664940357208,-0.385579764842987,0.000691416556946933,0.385586380958557,-0.922671556472778,0.000671128567773849,0.385586440563202,-0.922671556472778,-0.000813607999589294,0.38558954000473,-0.922670066356659,-0.000814330298453569,0.385589569807053,-0.922670006752014,-0.000721484771929681,0.922672808170319,0.385583013296127,-0.000678829615935683,0.922672867774963,0.38558304309845,0.000950368645135313,0.922672986984253,0.385582387447357,0.000945831241551787,0.922672867774963,0.385582327842712,-0.00156507710926235,-0.385587006807327,0.922670245170593,-0.00158536387607455,-0.385586977005005,0.922670125961304,-7.90995691204444e-005,-0.385589778423309,0.922670304775238,-7.98209657659754e-005,-0.385589808225632,0.922670304775238,0.000570877862628549,-0.922673225402832,-0.38558229804039,0.000613516254816204,-0.922673225402832,-0.38558229804039,-0.00105360068846494,-0.922672867774963,-0.385582208633423,-0.00105813541449606,-0.922672808170319,-0.3855821788311,-0.00615032948553562,0.385578662157059,-0.922654449939728,-0.00601955130696297,0.385578960180283,-0.922655284404755,
  389. -0.00508565083146095,0.385578900575638,-0.922660887241364,-0.00514014950022101,0.385578811168671,-0.92266058921814,0.0137422382831573,0.922585666179657,0.385547518730164,0.0137470411136746,0.922585606575012,0.385547488927841,-0.0010691643692553,0.922672271728516,0.385583519935608,-0.00112175650428981,0.92267233133316,0.38558354973793,0.00512829888612032,-0.385580688714981,0.922659814357758,0.00525908172130585,-0.385580450296402,0.92265921831131,0.00424822187051177,-0.385580658912659,0.922664403915405,0.0041937124915421,-0.385580718517303,0.922664523124695,-0.0138546638190746,-0.922584116458893,-0.385547071695328,-0.0138498619198799,-0.922584235668182,-0.385547131299973,0.00101418211124837,-0.92267245054245,-0.385583400726318,0.000961592013482004,-0.922672510147095,-0.385583460330963,0.00701533164829016,0.385578691959381,-0.922648370265961,0.00701533118262887,0.385578691959381,-0.922648310661316,-0.00601955130696297,0.385578960180283,-0.922655284404755,-0.00615032948553562,0.385578662157059,-0.922654449939728,0.0199540685862303,0.922488868236542,0.385507375001907,0.0199540704488754,0.922489047050476,0.385507434606552,0.0137470411136746,0.922585606575012,0.385547488927841,0.0137422382831573,0.922585666179657,0.385547518730164,-0.00790701899677515,-0.385575979948044,0.922642230987549,-0.00790701899677515,-0.385575979948044,0.922642171382904,0.00525908172130585,-0.385580450296402,0.92265921831131,0.00512829888612032,-0.385580688714981,0.922659814357758,-0.0200626738369465,-0.922486901283264,-0.385506570339203,-0.0200626775622368,-0.922486960887909,-0.385506629943848,-0.0138498619198799,-0.922584235668182,-0.385547131299973,-0.0138546638190746,-0.922584116458893,-0.385547071695328,-0.000814330298453569,0.385589569807053,-0.922670006752014,-0.000813607999589294,0.38558954000473,-0.922670066356659,0.00365620409138501,0.385586947202683,-0.922664284706116,0.00365461013279855,0.385586947202683,-0.922664344310761,0.000945831241551787,0.922672867774963,0.385582327842712,0.000950368645135313,0.922672986984253,0.385582387447357,
  390. -0.000123341116704978,0.922673404216766,0.385582357645035,-0.000195266693481244,0.922673404216766,0.385582387447357,-7.98209657659754e-005,-0.385589808225632,0.922670304775238,-7.90995691204444e-005,-0.385589778423309,0.922670304775238,-0.00454790564253926,-0.385584503412247,0.922661364078522,-0.00454949913546443,-0.385584473609924,0.922661304473877,-0.00105813541449606,-0.922672808170319,-0.3855821788311,-0.00105360068846494,-0.922672867774963,-0.385582208633423,8.74645484145731e-005,-0.922672986984253,-0.385583221912384,1.55364596139407e-005,-0.922672986984253,-0.385583221912384,-0.00514014950022101,0.385578811168671,-0.92266058921814,-0.00508565083146095,0.385578900575638,-0.922660887241364,0.000671128567773849,0.385586440563202,-0.922671556472778,0.000691416556946933,0.385586380958557,-0.922671556472778,-0.00112175650428981,0.92267233133316,0.38558354973793,-0.0010691643692553,0.922672271728516,0.385583519935608,-0.000678829615935683,0.922672867774963,0.38558304309845,-0.000721484771929681,0.922672808170319,0.385583013296127,0.0041937124915421,-0.385580718517303,0.922664523124695,0.00424822187051177,-0.385580658912659,0.922664403915405,-0.00158536387607455,-0.385586977005005,0.922670125961304,-0.00156507710926235,-0.385587006807327,0.922670245170593,0.000961592013482004,-0.922672510147095,-0.385583460330963,0.00101418211124837,-0.92267245054245,-0.385583400726318,0.000613516254816204,-0.922673225402832,-0.38558229804039,0.000570877862628549,-0.922673225402832,-0.38558229804039,0.00151045469101518,0.385585337877274,-0.922670900821686,0.0015489065553993,0.385585367679596,-0.922670900821686,-0.00479717133566737,0.385582536458969,-0.922660887241364,-0.00479717087000608,0.385582506656647,-0.922660887241364,-0.00065535499015823,-0.385583966970444,0.922672510147095,-0.000616905163042247,-0.385584026575089,0.92267256975174,0.00569052202627063,-0.385578721761703,0.922657310962677,0.0056905229575932,-0.385578811168671,0.922657430171967,0.00505490880459547,0.922661244869232,0.385578572750092,0.005085832439363,0.922661066055298,0.385578483343124,
  391. 0.0256033949553967,0.922370553016663,0.38545697927475,0.0256033949553967,0.922370493412018,0.385456919670105,-0.00495817326009274,-0.922660887241364,-0.385580360889435,-0.00492724403738976,-0.922661125659943,-0.385580480098724,-0.025476410984993,-0.922372698783875,-0.385460078716278,-0.025476410984993,-0.922372758388519,-0.385460078716278,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,-1.29530963022262e-006,0,0.999999940395355,-1.29530963022262e-006,0,1,-1.29530963022262e-006,0,0.999999940395355,-1.29530963022262e-006,0,-0.00365445157513022,-0.385580599308014,0.922666907310486,-0.00365633703768253,-0.385580629110336,0.922666907310486,-0.000616905163042247,-0.385584026575089,0.92267256975174,-0.00065535499015823,-0.385583966970444,0.922672510147095,0.000230847159400582,0.922672808170319,0.38558366894722,0.0001457741309423,0.922672867774963,0.385583728551865,0.005085832439363,0.922661066055298,0.385578483343124,0.00505490880459547,0.922661244869232,0.385578572750092,0.00454951776191592,0.385579884052277,-0.922663271427155,0.00454763090237975,0.385579884052277,-0.922663271427155,0.0015489065553993,0.385585367679596,-0.922670900821686,0.00151045469101518,0.385585337877274,-0.922670900821686,-1.84201289812336e-005,-0.922672629356384,-0.38558429479599,-0.00010349863441661,-0.922672510147095,-0.38558429479599,-0.00492724403738976,-0.922661125659943,-0.385580480098724,-0.00495817326009274,-0.922660887241364,-0.385580360889435,-0.000693347305059433,-0.385585099458694,0.922672033309937,-0.000669345317874104,-0.385585129261017,0.922672033309937,0.000813763763289899,-0.385584712028503,0.922672092914581,0.000814617262221873,-0.385584712028503,0.922672092914581,0.000853732053656131,0.922672510147095,0.38558366894722,0.000803289236500859,0.92267256975174,0.385583639144897,-0.00112461391836405,0.92267233133316,0.385583370923996,-0.00111924821976572,0.92267233133316,0.385583370923996,0.001563252764754,0.385584712028503,-0.92267107963562,0.00158725411165506,0.385584682226181,-0.92267107963562,7.87603057688102e-005,0.385584712028503,-0.92267233133316,
  392. 7.96132662799209e-005,0.385584712028503,-0.92267245054245,-0.000675530056469142,-0.92267256975174,-0.385583698749542,-0.000725987716577947,-0.92267256975174,-0.385583698749542,0.00124673289246857,-0.922672212123871,-0.385583192110062,0.0012521066237241,-0.922672212123871,-0.385583192110062,0.00616278732195497,-0.385576039552689,0.922655463218689,0.00600808719173074,-0.38557642698288,0.922656416893005,0.00508091319352388,-0.385578542947769,0.922661066055298,0.0051453816704452,-0.385578393936157,0.922660768032074,-0.0162558667361736,0.922550857067108,0.385532885789871,-0.0162615515291691,0.922550797462463,0.385532855987549,0.00126518099568784,0.922672033309937,0.385583639144897,0.00132739800028503,0.922672033309937,0.385583579540253,-0.00511673372238874,0.385578572750092,-0.922660768032074,-0.00527144642546773,0.385578274726868,-0.922659993171692,-0.00425327429547906,0.385580211877823,-0.922664523124695,-0.00418879231438041,0.385580331087112,-0.922664761543274,0.0163892302662134,-0.922548770904541,-0.385532319545746,0.0163835510611534,-0.922548890113831,-0.385532349348068,-0.00119977525901049,-0.922672033309937,-0.385583907365799,-0.00113756279461086,-0.922672033309937,-0.385583847761154,-0.00701483897864819,-0.385573744773865,0.922650337219238,-0.00701483990997076,-0.385573744773865,0.922650337219238,0.00600808719173074,-0.38557642698288,0.922656416893005,0.00616278732195497,-0.385576039552689,0.922655463218689,-0.0236050542443991,0.922415435314178,0.385476887226105,-0.0236050579696894,0.922415494918823,0.385476887226105,-0.0162615515291691,0.922550797462463,0.385532855987549,-0.0162558667361736,0.922550857067108,0.385532885789871,0.00790682062506676,0.385571211576462,-0.922644138336182,0.00790682062506676,0.385571181774139,-0.922644257545471,-0.00527144642546773,0.385578274726868,-0.922659993171692,-0.00511673372238874,0.385578572750092,-0.922660768032074,0.0237315930426121,-0.922412753105164,-0.385475724935532,0.0237315930426121,-0.922412753105164,-0.385475754737854,0.0163835510611534,-0.922548890113831,-0.385532349348068,
  393. 0.0163892302662134,-0.922548770904541,-0.385532319545746,0.000814617262221873,-0.385584712028503,0.922672092914581,0.000813763763289899,-0.385584712028503,0.922672092914581,-0.00365633703768253,-0.385580629110336,0.922666907310486,-0.00365445157513022,-0.385580599308014,0.922666907310486,-0.00111924821976572,0.92267233133316,0.385583370923996,-0.00112461391836405,0.92267233133316,0.385583370923996,0.0001457741309423,0.922672867774963,0.385583728551865,0.000230847159400582,0.922672808170319,0.38558366894722,7.96132662799209e-005,0.385584712028503,-0.92267245054245,7.87603057688102e-005,0.385584712028503,-0.92267233133316,0.00454763090237975,0.385579884052277,-0.922663271427155,0.00454951776191592,0.385579884052277,-0.922663271427155,0.0012521066237241,-0.922672212123871,-0.385583192110062,0.00124673289246857,-0.922672212123871,-0.385583192110062,-0.00010349863441661,-0.922672510147095,-0.38558429479599,-1.84201289812336e-005,-0.922672629356384,-0.38558429479599,0.0051453816704452,-0.385578393936157,0.922660768032074,0.00508091319352388,-0.385578542947769,0.922661066055298,-0.000669345317874104,-0.385585129261017,0.922672033309937,-0.000693347305059433,-0.385585099458694,0.922672033309937,0.00132739800028503,0.922672033309937,0.385583579540253,0.00126518099568784,0.922672033309937,0.385583639144897,0.000803289236500859,0.92267256975174,0.385583639144897,0.000853732053656131,0.922672510147095,0.38558366894722,-0.00418879231438041,0.385580331087112,-0.922664761543274,-0.00425327429547906,0.385580211877823,-0.922664523124695,0.00158725411165506,0.385584682226181,-0.92267107963562,0.001563252764754,0.385584712028503,-0.92267107963562,-0.00113756279461086,-0.922672033309937,-0.385583847761154,-0.00119977525901049,-0.922672033309937,-0.385583907365799,-0.000725987716577947,-0.92267256975174,-0.385583698749542,-0.000675530056469142,-0.92267256975174,-0.385583698749542,0,0.000616347708273679,-0.999999821186066,0,0.000616347708273679,-0.999999761581421,0,-0.00453702267259359,-0.999989688396454,0,-0.00459410669282079,-0.99998939037323,
  394. 0.999993324279785,0.00342804496176541,0.00121646071784198,0.999993324279785,0.0034280454274267,0.0012164608342573,0.999996602535248,-0.00262418086640537,8.20763380033895e-005,0.99999988079071,5.15111023560166e-005,0.00058359099784866,0,0.000636362528894097,0.999999761581421,0,0.000636362587101758,0.999999821186066,0,0.00699342740699649,0.999975562095642,0,0.00689461221918464,0.999976217746735,-0.99999475479126,-0.00304251932539046,-0.0010796373244375,-0.99999475479126,-0.00304251909255981,-0.00107963720802218,-0.999999761581421,0.000481656839838251,-0.00043794748489745,-0.99999463558197,0.00327429175376892,7.05466154613532e-005,0,-0.0429128929972649,-0.999078810214996,0,-0.0423770472407341,-0.99910169839859,0,-0.277082741260529,-0.96084600687027,0,-0.277082741260529,-0.960846066474915,0.99920517206192,-0.0397923737764359,-0.0023637677077204,0.999152660369873,-0.0410907007753849,-0.00235971598885953,0.963040411472321,-0.269352555274963,-0.0015805889852345,0.963040292263031,-0.269352495670319,-0.00158058875240386,0,-0.00160728127229959,0.999998688697815,0,-0.00251977029256523,0.999996900558472,0,-0.283781945705414,0.958888828754425,0,-0.283781975507736,0.958888828754425,-0.999948263168335,-0.0099231107160449,0.00222546374425292,-0.999961316585541,-0.00850994884967804,0.00224623153917491,-0.965604245662689,-0.260011702775955,-0.00152577832341194,-0.965604186058044,-0.260011672973633,-0.00152577820699662,-0.999999940395355,6.70867308372181e-008,0,-0.999999940395355,6.70867308372181e-008,0,-0.999999403953552,-0.00106270122341812,-0.000146989899803884,-0.999998450279236,-0.00167781580239534,-0.000232065503951162,0,0.000603493885137141,-0.99999988079071,0,0.000603493885137141,-0.99999988079071,0,-0.00979920942336321,-0.999952018260956,0,-0.00974955130368471,-0.999952554702759,0.999999940395355,2.50791543088269e-009,0,0.999999940395355,2.50791543088269e-009,0,0.999991238117218,0.0041500860825181,0.000574021076317877,0.999996483325958,0.00262869312427938,0.000363588740583509,0,0.00062085292302072,0.999999821186066,0,0.00062085292302072,0.999999821186066,
  395. 0,0.0124863954260945,0.999922037124634,0,0.0125546017661691,0.999921202659607,-0.999626040458679,-0.0273382030427456,-0.00057731824927032,-0.999663889408112,-0.0259167738258839,-0.000573714729398489,-0.930601596832275,-0.366031050682068,-0.00140548252966255,-0.930601596832275,-0.366031050682068,-0.00140548241324723,0,-0.0388816930353642,-0.999243795871735,0,-0.0390073172748089,-0.999238967895508,0,-0.260993868112564,-0.965340435504913,0,-0.260993897914886,-0.965340435504913,0.99990975856781,-0.0133899031206965,0.00112185243051499,0.999889194965363,-0.0148419449105859,0.0011117096291855,0.93212765455246,-0.362127244472504,-0.00139052839949727,0.93212753534317,-0.362127244472504,-0.00139052851591259,0,0.0187001526355743,0.999825060367584,0,0.0188836939632893,0.999821722507477,0,-0.253024727106094,0.967459797859192,0,-0.253024756908417,0.967459797859192,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.001513063441962,-0.385587275028229,0.922670066356659,-0.00154557451605797,-0.385587334632874,0.922670125961304,0.00479805190116167,-0.385583132505417,0.922660648822784,0.00479805190116167,-0.385583192110062,0.922660648822784,0.000652051414363086,0.38558766245842,-0.922671020030975,0.000619544647634029,0.385587632656097,-0.922671020030975,-0.00569084612652659,0.385580211877823,-0.922656774520874,-0.00569084612652659,0.385580211877823,-0.922656774520874,-0.00427314033731818,0.922664701938629,0.38557967543602,-0.00429927464574575,0.92266458272934,0.385579615831375,-0.0216464996337891,0.922456741333008,0.385493189096451,-0.0216464977711439,0.922456681728363,0.385493159294128,0.00419149408116937,-0.922664940357208,-0.385579764842987,0.00416535651311278,-0.922665119171143,-0.385579794645309,0.0215389579534531,-0.922459185123444,-0.385493248701096,0.0215389616787434,-0.922459304332733,-0.385493248701096,1,0,0,1,0,0,1,0,0,1,0,0,-1,3.83059614250669e-007,0,-0.999999940395355,3.8305958582896e-007,0,-1,3.83059614250669e-007,0,-0.999999940395355,3.8305958582896e-007,0,0.00365465693175793,0.385586947202683,-0.922664344310761,
  396. 0.00365625112317503,0.385586947202683,-0.922664284706116,0.000619544647634029,0.385587632656097,-0.922671020030975,0.000652051414363086,0.38558766245842,-0.922671020030975,-0.000195268788957037,0.922673404216766,0.385582447052002,-0.00012334251368884,0.922673404216766,0.385582387447357,-0.00429927464574575,0.92266458272934,0.385579615831375,-0.00427314033731818,0.922664701938629,0.38557967543602,-0.00454949960112572,-0.385584473609924,0.922661304473877,-0.00454790517687798,-0.385584503412247,0.922661304473877,-0.00154557451605797,-0.385587334632874,0.922670125961304,-0.001513063441962,-0.385587275028229,0.922670066356659,1.55894995259587e-005,-0.922672986984253,-0.385583221912384,8.75178302521817e-005,-0.922672986984253,-0.385583251714706,0.00416535651311278,-0.922665119171143,-0.385579794645309,0.00419149408116937,-0.922664940357208,-0.385579764842987,0.000691370281856507,0.385586351156235,-0.922671556472778,0.000671081361360848,0.385586380958557,-0.922671496868134,-0.000813690829090774,0.38558954000473,-0.922670066356659,-0.000814413011539727,0.385589569807053,-0.922670006752014,-0.000721450487617403,0.922672808170319,0.385583013296127,-0.000678793818224221,0.922672867774963,0.38558304309845,0.000950440589804202,0.922672986984253,0.385582387447357,0.000945904524996877,0.922672867774963,0.385582327842712,-0.00156503717880696,-0.385587066411972,0.922670185565948,-0.00158532417844981,-0.385586947202683,0.922670125961304,-7.90050398791209e-005,-0.385589778423309,0.922670304775238,-7.97264292486943e-005,-0.385589838027954,0.922670364379883,0.000570829433854669,-0.922673225402832,-0.38558229804039,0.000613468000665307,-0.922673225402832,-0.385582268238068,-0.00105362862814218,-0.922672867774963,-0.385582208633423,-0.00105816265568137,-0.922672808170319,-0.385582268238068,-0.00615052506327629,0.385578632354736,-0.922654509544373,-0.00601974688470364,0.385579019784927,-0.922655284404755,-0.00508573278784752,0.385578840970993,-0.922660827636719,-0.00514023285359144,0.385578781366348,-0.92266058921814,0.0137422019615769,0.922585666179657,0.385547667741776,
  397. 0.0137470019981265,0.922585487365723,0.385547608137131,-0.001069201156497,0.922672271728516,0.385583609342575,-0.00112179422285408,0.922672212123871,0.385583639144897,0.00512824207544327,-0.385580867528915,0.922659754753113,0.00525902211666107,-0.385580658912659,0.92265921831131,0.00424810545518994,-0.385580718517303,0.922664284706116,0.00419359700754285,-0.385580867528915,0.92266458272934,-0.013854593038559,-0.922584116458893,-0.385547041893005,-0.0138497920706868,-0.922584235668182,-0.385547131299973,0.00101417861878872,-0.92267245054245,-0.385583341121674,0.000961589103098959,-0.92267245054245,-0.385583370923996,0.00701511930674315,0.385578781366348,-0.922648251056671,0.00701511930674315,0.385578811168671,-0.922648310661316,-0.00601974688470364,0.385579019784927,-0.922655284404755,-0.00615052506327629,0.385578632354736,-0.922654509544373,0.019953915849328,0.922488868236542,0.385507494211197,0.019953915849328,0.922488987445831,0.385507524013519,0.0137470019981265,0.922585487365723,0.385547608137131,0.0137422019615769,0.922585666179657,0.385547667741776,-0.0079067749902606,-0.385576099157333,0.922642111778259,-0.00790677685290575,-0.385576158761978,0.922642230987549,0.00525902211666107,-0.385580658912659,0.92265921831131,0.00512824207544327,-0.385580867528915,0.922659754753113,-0.020062442868948,-0.922486901283264,-0.38550677895546,-0.0200624391436577,-0.922486841678619,-0.385506749153137,-0.0138497920706868,-0.922584235668182,-0.385547131299973,-0.013854593038559,-0.922584116458893,-0.385547041893005,-0.000814413011539727,0.385589569807053,-0.922670006752014,-0.000813690829090774,0.38558954000473,-0.922670066356659,0.00365625112317503,0.385586947202683,-0.922664284706116,0.00365465693175793,0.385586947202683,-0.922664344310761,0.000945904524996877,0.922672867774963,0.385582327842712,0.000950440589804202,0.922672986984253,0.385582387447357,-0.00012334251368884,0.922673404216766,0.385582387447357,-0.000195268788957037,0.922673404216766,0.385582447052002,-7.97264292486943e-005,-0.385589838027954,0.922670364379883,-7.90050398791209e-005,-0.385589778423309,0.922670304775238,
  398. -0.00454790517687798,-0.385584503412247,0.922661304473877,-0.00454949960112572,-0.385584473609924,0.922661304473877,-0.00105816265568137,-0.922672808170319,-0.385582268238068,-0.00105362862814218,-0.922672867774963,-0.385582208633423,8.75178302521817e-005,-0.922672986984253,-0.385583251714706,1.55894995259587e-005,-0.922672986984253,-0.385583221912384,-0.00514023285359144,0.385578781366348,-0.92266058921814,-0.00508573278784752,0.385578840970993,-0.922660827636719,0.000671081361360848,0.385586380958557,-0.922671496868134,0.000691370281856507,0.385586351156235,-0.922671556472778,-0.00112179422285408,0.922672212123871,0.385583639144897,-0.001069201156497,0.922672271728516,0.385583609342575,-0.000678793818224221,0.922672867774963,0.38558304309845,-0.000721450487617403,0.922672808170319,0.385583013296127,0.00419359700754285,-0.385580867528915,0.92266458272934,0.00424810545518994,-0.385580718517303,0.922664284706116,-0.00158532417844981,-0.385586947202683,0.922670125961304,-0.00156503717880696,-0.385587066411972,0.922670185565948,0.000961589103098959,-0.92267245054245,-0.385583370923996,0.00101417861878872,-0.92267245054245,-0.385583341121674,0.000613468000665307,-0.922673225402832,-0.385582268238068,0.000570829433854669,-0.922673225402832,-0.38558229804039,0,0.00689461221918464,0.999976217746735,0,0.00699342740699649,0.999975562095642,0,-0.00251977029256523,0.999996900558472,0,-0.00160728127229959,0.999998688697815,-0.99999463558197,0.00327429175376892,7.05466154613532e-005,-0.999999761581421,0.000481656839838251,-0.00043794748489745,-0.999961316585541,-0.00850994884967804,0.00224623153917491,-0.999948263168335,-0.0099231107160449,0.00222546374425292,0,-0.00459410669282079,-0.99998939037323,0,-0.00453702267259359,-0.999989688396454,0,-0.0423770472407341,-0.99910169839859,0,-0.0429128929972649,-0.999078810214996,0.99999988079071,5.15111023560166e-005,0.00058359099784866,0.999996602535248,-0.00262418086640537,8.20763380033895e-005,0.999152660369873,-0.0410907007753849,-0.00235971598885953,0.99920517206192,-0.0397923737764359,-0.0023637677077204,
  399. 0,0.0125546017661691,0.999921202659607,0,0.0124863954260945,0.999922037124634,0,0.0188836939632893,0.999821722507477,0,0.0187001526355743,0.999825060367584,-0.999998450279236,-0.00167781580239534,-0.000232065503951162,-0.999999403953552,-0.00106270122341812,-0.000146989899803884,-0.999663889408112,-0.0259167738258839,-0.000573714729398489,-0.999626040458679,-0.0273382030427456,-0.00057731824927032,0,-0.00974955130368471,-0.999952554702759,0,-0.00979920942336321,-0.999952018260956,0,-0.0390073172748089,-0.999238967895508,0,-0.0388816930353642,-0.999243795871735,0.999996483325958,0.00262869312427938,0.000363588740583509,0.999991238117218,0.0041500860825181,0.000574021076317877,0.999889194965363,-0.0148419449105859,0.0011117096291855,0.99990975856781,-0.0133899031206965,0.00112185243051499
  400. }
  401. NormalsW: *1726 {
  402. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  403. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  404. }
  405. }
  406. LayerElementBinormal: 0 {
  407. Version: 102
  408. Name: "map1"
  409. MappingInformationType: "ByPolygonVertex"
  410. ReferenceInformationType: "Direct"
  411. Binormals: *5178 {
  412. a: -0.00112285907380283,0.999924659729004,-0.0122306002303958,-0.00105748570058495,0.999879002571106,-0.0155242616310716,-0.0179815087467432,0.999797642230988,-0.00901673175394535,-0.0179815180599689,0.999797821044922,-0.0089977215975523,0.000323874526657164,-0.999775052070618,0.0212084744125605,0.000355730910087004,-0.999940991401672,0.0108669018372893,0.017953272908926,-0.999838769435883,0.000535518513061106,0.0179533120244741,-0.999838709831238,0.000586357549764216,-0.999998331069946,-0.00169003510382026,0.000700787117239088,-0.999997675418854,-0.00165540189482272,0.00136367802042514,-0.999807357788086,-0.0195776633918285,0.00144333392381668,-0.999807834625244,-0.0195790734142065,0.0010400852188468,1,4.66071542177815e-005,0.000311847747070715,0.999999701976776,4.41846932517365e-005,0.0008712675771676,0.999808192253113,0.0195832774043083,0.000194177962839603,0.999808311462402,0.0195812471210957,-0.000213574414374307,0.00824451819062233,0.999790549278259,-0.0187345314770937,0.00824451260268688,0.999790728092194,-0.018727108836174,-0.00105748570058495,0.999879002571106,-0.0155242616310716,-0.00112285907380283,0.999924659729004,-0.0122306002303958,0.99995082616806,-0.00970678590238094,0.00207557645626366,0.999948859214783,-0.00968792289495468,0.00292480713687837,0.999999701976776,4.41846932517365e-005,0.0008712675771676,1,4.66071542177815e-005,0.000311847747070715,-0.00927954446524382,-0.999462723731995,0.0314358286559582,-0.00927952956408262,-0.999462068080902,0.0314567536115646,0.000355730910087004,-0.999940991401672,0.0108669018372893,0.000323874526657164,-0.999775052070618,0.0212084744125605,-0.999951064586639,0.00979215651750565,0.00144521472975612,-0.999948680400848,0.00982094742357731,0.00252475985325873,-0.999997675418854,-0.00165540189482272,0.00136367802042514,-0.999998331069946,-0.00169003510382026,0.000700787117239088,-0.0202959310263395,0.99972003698349,-0.0121669331565499,-0.0201911944895983,0.999722182750702,-0.0121648712083697,-0.014781809411943,0.999315679073334,-0.0339061841368675,
  413. -0.0147818131372333,0.999315798282623,-0.0339035876095295,0.0197364948689938,-0.99975448846817,0.0100822169333696,0.0198149383068085,-0.999752879142761,0.0100814513862133,0.0148139595985413,-0.999447643756866,0.0297509916126728,0.0148139605298638,-0.999447464942932,0.0297535471618176,-0.999791920185089,-0.0203952379524708,-0.000458323920611292,-0.999791324138641,-0.0204006377607584,-0.00105333724059165,-0.999871790409088,-0.0159168429672718,-0.00179219455458224,-0.999871790409088,-0.0159167423844337,-0.00178897089790553,0.999748587608337,0.022401150316,-0.000991012202575803,0.999747931957245,0.0223701484501362,-0.00192691804841161,0.999872088432312,0.0157744400203228,-0.00265397340990603,0.999872148036957,0.0157745108008385,-0.00265182554721832,-0.99949187040329,-0.0318771526217461,-2.33731407206506e-005,-0.999491810798645,-0.0318771228194237,-2.51340061367955e-005,-0.999791324138641,-0.0204006377607584,-0.00105333724059165,-0.999791920185089,-0.0203952379524708,-0.000458323920611292,-0.0304181985557079,0.999491512775421,0.00957367662340403,-0.0304181948304176,0.999491512775421,0.0095701040700078,-0.0201911944895983,0.999722182750702,-0.0121648712083697,-0.0202959310263395,0.99972003698349,-0.0121669331565499,0.99949187040329,0.0318763516843319,1.95023476408096e-005,0.99949187040329,0.0318763554096222,1.88434660230996e-005,0.999747931957245,0.0223701484501362,-0.00192691804841161,0.999748587608337,0.022401150316,-0.000991012202575803,0.0290425084531307,-0.999532341957092,-0.00958031136542559,0.0290424972772598,-0.999532163143158,-0.00959207862615585,0.0198149383068085,-0.999752879142761,0.0100814513862133,0.0197364948689938,-0.99975448846817,0.0100822169333696,-0.152255594730377,0.777378916740417,0.610328137874603,-0.0534820444881916,0.450550973415375,0.891147434711456,0.0858040601015091,0.444851338863373,0.89148473739624,0.123858407139778,0.787933468818665,0.603174924850464,0.25387892127037,0.948405146598816,0.189929530024529,-0.233298122882843,0.897401094436646,-0.37449061870575,0.243454962968826,0.893578886985779,-0.377155661582947,
  414. -0.0456634052097797,0.980072319507599,0.193321645259857,-0.0456634052097797,0.980072319507599,0.193321645259857,0.243454962968826,0.893578886985779,-0.377155661582947,-0.0534820444881916,0.450550973415375,0.891147434711456,-0.152255594730377,0.777378916740417,0.610328137874603,0.25387892127037,0.948405146598816,0.189929530024529,-0.0456634052097797,0.980072319507599,0.193321645259857,-0.152255594730377,0.777378916740417,0.610328137874603,0.123858407139778,0.787933468818665,0.603174924850464,0.999998688697815,0.00160784262698144,-0.000104137507150881,0.999995112419128,0.000254213809967041,0.00313604157418013,0.999997138977051,0.00201981631107628,-0.00128426437731832,0.999997973442078,0.00184062216430902,-0.000872125790920109,-0.999994874000549,-0.000230845180340111,-0.00318802683614194,-0.99999874830246,-0.00158356584142894,4.99747693538666e-005,-0.999992311000824,-0.00269693369045854,0.00284864916466177,-0.999994397163391,-0.00245086848735809,0.00228101713582873,-0.000137438473757356,-0.923640549182892,-0.383260130882263,-0.000137438328238204,-0.923640549182892,-0.383259952068329,0.000260339817032218,-0.917025029659271,-0.398829579353333,0.000218731554923579,-0.91440623998642,-0.404797613620758,0.0858040601015091,0.444851338863373,0.89148473739624,-0.233298122882843,0.897401094436646,-0.37449061870575,0.25387892127037,0.948405146598816,0.189929530024529,0.123858407139778,0.787933468818665,0.603174924850464,-0.000382614263799042,0.91437703371048,0.404863625764847,-0.000380764220608398,0.917005002498627,0.398875772953033,-0.000212451937841251,0.923632800579071,0.383278757333755,-0.000212451239349321,0.923632740974426,0.383278876543045,0.675926268100739,0.659735918045044,-0.328439265489578,-0.339052975177765,0.803846180438995,-0.488747745752335,-0.13365563750267,0.9698606133461,0.203731745481491,-0.1798395216465,0.966029644012451,0.185592338442802,0.690967381000519,0.20358769595623,0.693625330924988,-0.307082772254944,0.181465730071068,0.934221863746643,-0.126762568950653,0.805996358394623,0.578187823295593,-0.155406832695007,0.794150292873383,0.587515234947205,
  415. -0.339052975177765,0.803846180438995,-0.488747745752335,0.690967381000519,0.20358769595623,0.693625330924988,-0.155406832695007,0.794150292873383,0.587515234947205,-0.13365563750267,0.9698606133461,0.203731745481491,-0.1798395216465,0.966029644012451,0.185592338442802,-0.126762568950653,0.805996358394623,0.578187823295593,-0.307082772254944,0.181465730071068,0.934221863746643,0.675926268100739,0.659735918045044,-0.328439265489578,-0.1798395216465,0.966029644012451,0.185592338442802,-0.13365563750267,0.9698606133461,0.203731745481491,-0.155406832695007,0.794150292873383,0.587515234947205,-0.126762568950653,0.805996358394623,0.578187823295593,-0.999994397163391,-0.00245086848735809,0.00228101713582873,-0.999992311000824,-0.00269693369045854,0.00284864916466177,-0.999998807907104,-0.000705996877513826,-0.00137026014272124,-0.99999326467514,-0.00253432500176132,0.00264928000979126,0.000218731554923579,-0.91440623998642,-0.404797613620758,0.000260339817032218,-0.917025029659271,-0.398829579353333,0.000753743224777281,-0.915465235710144,-0.402396529912949,0.00055378396064043,-0.910143971443176,-0.414291709661484,0.999997973442078,0.00184062216430902,-0.000872125790920109,0.999997138977051,0.00201981631107628,-0.00128426437731832,0.999969899654388,0.00427510123699903,-0.00647384067997336,0.999994039535522,0.00244919396936893,-0.00245961965993047,-0.000899203587323427,0.910115242004395,0.414354264736176,-0.000790442223660648,0.915455460548401,0.40241876244545,-0.000380764220608398,0.917005002498627,0.398875772953033,-0.000382614263799042,0.91437703371048,0.404863625764847,-0.0479878522455692,0.700138449668884,0.712392628192902,-0.0649855881929398,0.288668781518936,0.955221056938171,0.260248064994812,0.256421506404877,0.930869996547699,0.30442601442337,0.696397304534912,0.649888873100281,0.21659654378891,0.969838082790375,0.111803911626339,-0.308207035064697,0.809085369110107,-0.500389337539673,0.400598585605621,0.750989377498627,-0.524915039539337,0.0597960539162159,0.992336809635162,0.108130350708961,0.0597960539162159,0.992336809635162,0.108130350708961,
  416. 0.400598585605621,0.750989377498627,-0.524915039539337,-0.0649855881929398,0.288668781518936,0.955221056938171,-0.0479878522455692,0.700138449668884,0.712392628192902,0.21659654378891,0.969838082790375,0.111803911626339,0.0597960539162159,0.992336809635162,0.108130350708961,-0.0479878522455692,0.700138449668884,0.712392628192902,0.30442601442337,0.696397304534912,0.649888873100281,0.999491930007935,-0.0285854823887348,-0.0140982326120138,0.999492645263672,-0.0288821887224913,-0.0134270591661334,0.999972343444824,-0.00710329599678516,-0.00223927921615541,0.999974429607391,-0.00665337312966585,-0.0026284558698535,-0.999492347240448,0.028574712574482,0.0140948314219713,-0.999492943286896,0.0295283123850822,0.0119224842637777,-0.999973893165588,0.00628518685698509,0.00357609079219401,-0.999971866607666,0.00597524736076593,0.004544323310256,-0.0284564308822155,-0.918684542179108,-0.393965870141983,-0.0284553449600935,-0.918744385242462,-0.393826454877853,-0.00707280915230513,-0.911675870418549,-0.410849273204803,-0.00747340731322765,-0.909653067588806,-0.415301650762558,0.260248064994812,0.256421506404877,0.930869996547699,-0.308207035064697,0.809085369110107,-0.500389337539673,0.21659654378891,0.969838082790375,0.111803911626339,0.30442601442337,0.696397304534912,0.649888873100281,0.00764499977231026,0.901578724384308,0.432547628879547,0.00654049543663859,0.903631448745728,0.428260833024979,0.0283535681664944,0.913588166236877,0.405650973320007,0.0283577553927898,0.913498044013977,0.405853539705276,0.615044057369232,0.710187911987305,-0.34256973862648,-0.362032890319824,0.778020620346069,-0.513435542583466,-0.239550530910492,0.951953768730164,0.190787106752396,-0.193454101681709,0.964095711708069,0.181920066475868,0.477552950382233,0.214758932590485,0.851951837539673,-0.502528011798859,0.15131214261055,0.851216971874237,-0.199513763189316,0.790386080741882,0.579210102558136,-0.231998175382614,0.780324816703796,0.58074951171875,-0.362032890319824,0.778020620346069,-0.513435542583466,0.477552950382233,0.214758932590485,0.851951837539673,
  417. -0.231998175382614,0.780324816703796,0.58074951171875,-0.239550530910492,0.951953768730164,0.190787106752396,-0.193454101681709,0.964095711708069,0.181920066475868,-0.199513763189316,0.790386080741882,0.579210102558136,-0.502528011798859,0.15131214261055,0.851216971874237,0.615044057369232,0.710187911987305,-0.34256973862648,-0.193454101681709,0.964095711708069,0.181920066475868,-0.239550530910492,0.951953768730164,0.190787106752396,-0.231998175382614,0.780324816703796,0.58074951171875,-0.199513763189316,0.790386080741882,0.579210102558136,-0.999971866607666,0.00597524736076593,0.004544323310256,-0.999973893165588,0.00628518685698509,0.00357609079219401,-0.999232709407806,-0.0350310355424881,-0.0175148770213127,-0.999232769012451,-0.0350699871778488,-0.0174354556947947,-0.00747340731322765,-0.909653067588806,-0.415301650762558,-0.00707280915230513,-0.911675870418549,-0.410849273204803,0.0333838053047657,-0.907705426216125,-0.418277889490128,0.0334149375557899,-0.90365606546402,-0.426953256130219,0.999974429607391,-0.00665337312966585,-0.0026284558698535,0.999972343444824,-0.00710329599678516,-0.00223927921615541,0.999231338500977,0.0346458591520786,0.0183441992849112,0.999231219291687,0.0346078090369701,0.0184227637946606,-0.0349578000605106,0.893065273761749,0.448567271232605,-0.0346975475549698,0.89716774225235,0.440325051546097,0.00654049543663859,0.903631448745728,0.428260833024979,0.00764499977231026,0.901578724384308,0.432547628879547,-0.139428675174713,0.696104764938354,0.704271197319031,-0.100194543600082,0.330603271722794,0.938436329364777,0.326202481985092,0.337378084659576,0.88304477930069,-0.0515362396836281,0.727445423603058,0.684227406978607,-0.162128150463104,0.978589653968811,0.126794785261154,-0.174573808908463,0.824222803115845,-0.53868442773819,0.348521381616592,0.798071384429932,-0.491543531417847,0.0133578768000007,0.99420166015625,0.106698803603649,0.0133578768000007,0.99420166015625,0.106698803603649,0.348521381616592,0.798071384429932,-0.491543531417847,-0.100194543600082,0.330603271722794,0.938436329364777,
  418. -0.139428675174713,0.696104764938354,0.704271197319031,-0.162128150463104,0.978589653968811,0.126794785261154,0.0133578768000007,0.99420166015625,0.106698803603649,-0.139428675174713,0.696104764938354,0.704271197319031,-0.0515362396836281,0.727445423603058,0.684227406978607,0.999985337257385,-0.00117407203651965,0.00530077656731009,0.999985337257385,-0.00117351929657161,0.00529957842081785,0.999110996723175,0.0364671535789967,0.0211536828428507,0.999134838581085,0.0361050702631474,0.0206381902098656,-0.99999874830246,-0.00152469240128994,0.000558983825612813,-0.999998688697815,-0.00152568751946092,0.0005611393135041,-0.999144077301025,-0.0382249653339386,-0.0158121027052403,-0.999114096164703,-0.0387576818466187,-0.0164022408425808,-0.00022595701739192,-0.909098088741302,-0.41658216714859,-0.000225960247917101,-0.909098207950592,-0.416581779718399,0.0409441851079464,-0.912098288536072,-0.407922118902206,0.0403851978480816,-0.909471333026886,-0.41380050778389,0.326202481985092,0.337378084659576,0.88304477930069,-0.174573808908463,0.824222803115845,-0.53868442773819,-0.162128150463104,0.978589653968811,0.126794785261154,-0.0515362396836281,0.727445423603058,0.684227406978607,-0.0402360074222088,0.905104219913483,0.423281878232956,-0.0416289456188679,0.902954638004303,0.427715063095093,1.91782601177692e-006,0.909129083156586,0.416514486074448,7.10133534198576e-008,0.909014344215393,0.416764944791794,0.537647485733032,0.781382322311401,-0.316823095083237,-0.404275864362717,0.753660380840302,-0.518225014209747,-0.286011815071106,0.939928472042084,0.186364516615868,-0.292043626308441,0.941693425178528,0.167105227708817,0.427208125591278,0.265490472316742,0.86429625749588,-0.518077254295349,0.132435172796249,0.845018923282623,-0.262339890003204,0.775716543197632,0.573970198631287,-0.360181093215942,0.7420414686203,0.565370738506317,-0.404275864362717,0.753660380840302,-0.518225014209747,0.427208125591278,0.265490472316742,0.86429625749588,-0.360181093215942,0.7420414686203,0.565370738506317,-0.286011815071106,0.939928472042084,0.186364516615868,
  419. -0.292043626308441,0.941693425178528,0.167105227708817,-0.262339890003204,0.775716543197632,0.573970198631287,-0.518077254295349,0.132435172796249,0.845018923282623,0.537647485733032,0.781382322311401,-0.316823095083237,-0.292043626308441,0.941693425178528,0.167105227708817,-0.286011815071106,0.939928472042084,0.186364516615868,-0.360181093215942,0.7420414686203,0.565370738506317,-0.262339890003204,0.775716543197632,0.573970198631287,0.203348562121391,0.967290580272675,0.151651978492737,0.138509556651115,0.973223745822906,-0.183441668748856,-0.0817817822098732,0.410866051912308,0.908020377159119,0.120383940637112,0.780066192150116,0.614006996154785,0.120383940637112,0.780066192150116,0.614006996154785,-0.0817817822098732,0.410866051912308,0.908020377159119,0.350719332695007,0.410386592149735,0.841771304607391,0.0603283122181892,0.790101587772369,0.610000014305115,0.0603283122181892,0.790101587772369,0.610000014305115,0.00269344751723111,0.986375868320465,0.164485588669777,0.203348562121391,0.967290580272675,0.151651978492737,0.120383940637112,0.780066192150116,0.614006996154785,0.109506845474243,0.779687643051147,0.616518914699554,0.127968400716782,0.149329289793968,0.980471789836884,-0.287924736738205,0.814862787723541,-0.503088533878326,0.0799554660916328,0.982795655727386,0.166492775082588,-0.0904755666851997,0.780473470687866,0.618607640266418,-0.285510361194611,0.0941117405891418,0.953743636608124,0.127968400716782,0.149329289793968,0.980471789836884,0.109506845474243,0.779687643051147,0.616518914699554,0.0799554660916328,0.982795655727386,0.166492775082588,-0.287924736738205,0.814862787723541,-0.503088533878326,0.457139253616333,0.725470125675201,-0.514506459236145,-0.0915188863873482,0.982827484607697,0.160232335329056,-0.0904755666851997,0.780473470687866,0.618607640266418,0.109506845474243,0.779687643051147,0.616518914699554,0.0799554660916328,0.982795655727386,0.166492775082588,-0.0915188863873482,0.982827484607697,0.160232335329056,-0.222414076328278,0.259292721748352,0.939840078353882,-0.185603484511375,0.134372010827065,0.973393857479095,
  420. 0.256487876176834,0.135035187005997,0.957068264484406,0.028253048658371,0.445508420467377,0.894831895828247,-0.0235256552696228,0.572843909263611,0.819326758384705,-0.00416860915720463,0.556697428226471,0.830704987049103,-0.0235256552696228,0.572843909263611,0.819326758384705,0.028253048658371,0.445508420467377,0.894831895828247,-0.38562074303627,0.897355675697327,-0.214591711759567,-0.0494136363267899,0.986917734146118,-0.153466328978539,-0.38562074303627,0.897355675697327,-0.214591711759567,-0.182343989610672,0.801927089691162,-0.568914592266083,0.314152151346207,0.796347916126251,-0.516854465007782,0.0963638946413994,0.927532374858856,-0.361106395721436,0.00962503347545862,0.976719498634338,-0.214304685592651,-0.0494136363267899,0.986917734146118,-0.153466328978539,0.0963638946413994,0.927532374858856,-0.361106395721436,0.314152151346207,0.796347916126251,-0.516854465007782,-0.185603484511375,0.134372010827065,0.973393857479095,-0.222414076328278,0.259292721748352,0.939840078353882,-0.00416860915720463,0.556697428226471,0.830704987049103,0.00962503347545862,0.976719498634338,-0.214304685592651,0.0963638946413994,0.927532374858856,-0.361106395721436,-0.222414076328278,0.259292721748352,0.939840078353882,-0.0494136363267899,0.986917734146118,-0.153466328978539,0.00962503347545862,0.976719498634338,-0.214304685592651,-0.00416860915720463,0.556697428226471,0.830704987049103,-0.0235256552696228,0.572843909263611,0.819326758384705,-0.00177112873643637,0.903964042663574,0.427604854106903,-0.00177052221260965,0.90394389629364,0.427647620439529,0.0309080667793751,0.910702764987946,0.411904573440552,0.0311934463679791,0.913007915019989,0.40674763917923,0.999948740005493,0.00557263707742095,-0.00846127793192863,0.999947845935822,0.00560731720179319,-0.00853503495454788,0.999518513679504,-0.025979632511735,-0.0169653538614511,0.999519884586334,-0.0241009183228016,-0.0194755308330059,-0.999997854232788,-0.00195524981245399,0.000731419888325036,-0.999998092651367,-0.00188951846212149,0.000591995834838599,-0.999545693397522,0.0270032621920109,0.013389315456152,
  421. -0.999530971050262,0.0275274217128754,0.0134174404665828,0.457139253616333,0.725470125675201,-0.514506459236145,-0.285510361194611,0.0941117405891418,0.953743636608124,-0.0904755666851997,0.780473470687866,0.618607640266418,0.457139253616333,0.725470125675201,-0.514506459236145,-0.0904755666851997,0.780473470687866,0.618607640266418,-0.0915188863873482,0.982827484607697,0.160232335329056,-0.0978427082300186,-0.894530296325684,-0.436167985200882,-0.0978601798415184,-0.895946741104126,-0.433246910572052,-0.0866493657231331,-0.908849120140076,-0.408025979995728,-0.0867516994476318,-0.907170355319977,-0.411723285913467,0.995550811290741,-0.0877624377608299,-0.0342983156442642,0.995547294616699,-0.0879843831062317,-0.0338277034461498,0.996474206447601,-0.0812153294682503,-0.0210548937320709,0.996473670005798,-0.0811156705021858,-0.0214586313813925,-0.0512879639863968,0.979927837848663,-0.192642539739609,0.138509556651115,0.973223745822906,-0.183441668748856,0.203348562121391,0.967290580272675,0.151651978492737,0.00269344751723111,0.986375868320465,0.164485588669777,0.350719332695007,0.410386592149735,0.841771304607391,-0.0512879639863968,0.979927837848663,-0.192642539739609,0.00269344751723111,0.986375868320465,0.164485588669777,0.0603283122181892,0.790101587772369,0.610000014305115,0.997599720954895,0.061325442045927,0.0321562327444553,0.997600853443146,0.06142183765769,0.0319386571645737,0.998326539993286,0.0527839139103889,0.0236202925443649,0.998334348201752,0.0542994141578674,0.0194968972355127,-0.997592329978943,-0.0656302347779274,-0.022410374134779,-0.997610330581665,-0.0628051459789276,-0.0287959612905979,-0.998343944549561,-0.0532550439238548,-0.0217578131705523,-0.998324394226074,-0.0534957349300385,-0.0220581013709307,0.067573718726635,-0.916268527507782,-0.394823998212814,0.0675736218690872,-0.916250050067902,-0.394866824150085,0.0567445829510689,-0.90837150812149,-0.41429615020752,0.0568863451480865,-0.906653106212616,-0.418024033308029,0.256487876176834,0.135035187005997,0.957068264484406,-0.182343989610672,0.801927089691162,-0.568914592266083,
  422. -0.38562074303627,0.897355675697327,-0.214591711759567,0.028253048658371,0.445508420467377,0.894831895828247,-0.029508700594306,-0.90486216545105,-0.424680829048157,-0.0285593681037426,-0.903747737407684,-0.427111774682999,0.00385416066274047,-0.905649662017822,-0.424009412527084,0.00385393667966127,-0.905644059181213,-0.424021303653717,-0.118080019950867,0.153166130185127,0.981120467185974,0.529128074645996,0.707746088504791,-0.468101590871811,0.0473540350794792,0.984348952770233,0.169749394059181,0.0576295889914036,0.781697571277618,0.620989382266998,0.529128074645996,0.707746088504791,-0.468101590871811,-0.27114349603653,0.844205558300018,-0.462383240461349,0.0284427646547556,0.983743786811829,0.177310898900032,0.0473540350794792,0.984348952770233,0.169749394059181,0.637216150760651,0.129212066531181,0.759776294231415,-0.118080019950867,0.153166130185127,0.981120467185974,0.0576295889914036,0.781697571277618,0.620989382266998,0.083688035607338,0.773277938365936,0.628520309925079,0.083688035607338,0.773277938365936,0.628520309925079,0.0284427646547556,0.983743786811829,0.177310898900032,-0.27114349603653,0.844205558300018,-0.462383240461349,0.637216150760651,0.129212066531181,0.759776294231415,-0.995490908622742,0.0918021500110626,0.023881483823061,-0.99550199508667,0.0917450413107872,0.0236389189958572,-0.993961572647095,0.103322498500347,0.0369437076151371,-0.993961572647095,0.103326573967934,0.0369350388646126,0.0866883397102356,0.903002023696899,0.420799881219864,0.0864267870783806,0.904123961925507,0.41843780875206,0.0992445647716522,0.902647197246552,0.41878217458725,0.0992326810956001,0.901332020759583,0.42160838842392,-0.145265832543373,0.92542040348053,-0.349993050098419,0.286369979381561,0.384374618530273,0.877638041973114,-0.0307345204055309,0.793808281421661,0.607390999794006,-0.165145337581635,0.970248758792877,0.17704376578331,0.331110656261444,0.897960722446442,-0.289883315563202,-0.145265832543373,0.92542040348053,-0.349993050098419,-0.165145337581635,0.970248758792877,0.17704376578331,-0.0202293507754803,0.984898090362549,0.171949356794357,
  423. -0.108096659183502,0.792779147624969,0.599847018718719,-0.0307345204055309,0.793808281421661,0.607390999794006,0.286369979381561,0.384374618530273,0.877638041973114,-0.117909729480743,0.365353286266327,0.923371195793152,-0.0202293507754803,0.984898090362549,0.171949356794357,-0.108096659183502,0.792779147624969,0.599847018718719,-0.117909729480743,0.365353286266327,0.923371195793152,0.331110656261444,0.897960722446442,-0.289883315563202,-0.0570675209164619,0.908300161361694,0.414408385753632,-0.0569858849048615,0.910139679908752,0.410363703966141,-0.0677643492817879,0.910452425479889,0.408025175333023,-0.0677625611424446,0.910263895988464,0.408445745706558,0.497761726379395,0.742587745189667,-0.448103576898575,-0.487515270709991,0.751949906349182,-0.443734645843506,-0.115023598074913,0.973606884479523,0.197127431631088,-0.228577747941017,0.955670177936554,0.185598343610764,0.668171167373657,0.185923635959625,0.720402419567108,-0.29913717508316,0.164094626903534,0.939994633197784,-0.124817997217178,0.801704525947571,0.584542870521545,-0.142098560929298,0.791826546192169,0.593985497951508,-0.487515270709991,0.751949906349182,-0.443734645843506,0.668171167373657,0.185923635959625,0.720402419567108,-0.142098560929298,0.791826546192169,0.593985497951508,-0.115023598074913,0.973606884479523,0.197127431631088,-0.228577747941017,0.955670177936554,0.185598343610764,-0.124817997217178,0.801704525947571,0.584542870521545,-0.29913717508316,0.164094626903534,0.939994633197784,0.497761726379395,0.742587745189667,-0.448103576898575,-0.228577747941017,0.955670177936554,0.185598343610764,-0.115023598074913,0.973606884479523,0.197127431631088,-0.142098560929298,0.791826546192169,0.593985497951508,-0.124817997217178,0.801704525947571,0.584542870521545,-0.108096659183502,0.792779147624969,0.599847018718719,-0.0202293507754803,0.984898090362549,0.171949356794357,-0.165145337581635,0.970248758792877,0.17704376578331,-0.0307345204055309,0.793808281421661,0.607390999794006,0.083688035607338,0.773277938365936,0.628520309925079,0.0576295889914036,0.781697571277618,0.620989382266998,
  424. 0.0473540350794792,0.984348952770233,0.169749394059181,0.0284427646547556,0.983743786811829,0.177310898900032,-0.0677841529250145,-0.907136023044586,-0.415342807769775,-0.0677948892116547,-0.902882277965546,-0.424508512020111,-0.0285593681037426,-0.903747737407684,-0.427111774682999,-0.029508700594306,-0.90486216545105,-0.424680829048157,0.999519884586334,-0.0241009183228016,-0.0194755308330059,0.999518513679504,-0.025979632511735,-0.0169653538614511,0.997686505317688,-0.0611472353339195,-0.0297087915241718,0.997686564922333,-0.0611430145800114,-0.0297180693596601,0.0311934463679791,0.913007915019989,0.40674763917923,0.0309080667793751,0.910702764987946,0.411904573440552,0.0701449066400528,0.911262989044189,0.405807197093964,0.0700660943984985,0.915727317333221,0.395644217729568,-0.999530971050262,0.0275274217128754,0.0134174404665828,-0.999545693397522,0.0270032621920109,0.013389315456152,-0.997687160968781,0.0618515685200691,0.0281928982585669,-0.997687160968781,0.0618557743728161,0.0281836278736591,-0.997037768363953,0.0763767063617706,0.00908211711794138,-0.997037589550018,0.0763780474662781,0.00907906144857407,-0.99550199508667,0.0917450413107872,0.0236389189958572,-0.995490908622742,0.0918021500110626,0.023881483823061,-0.0867516994476318,-0.907170355319977,-0.411723285913467,-0.0866493657231331,-0.908849120140076,-0.408025979995728,-0.0717969536781311,-0.917925179004669,-0.390203535556793,-0.0718569457530975,-0.916033625602722,-0.394612401723862,0.996473670005798,-0.0811156705021858,-0.0214586313813925,0.996474206447601,-0.0812153294682503,-0.0210548937320709,0.997391998767853,-0.0718493834137917,-0.00685473345220089,0.997392058372498,-0.0718482360243797,-0.00685731507837772,0.0707831308245659,0.904702663421631,0.420122474431992,0.0707317367196083,0.906750857830048,0.415692239999771,0.0864267870783806,0.904123961925507,0.41843780875206,0.0866883397102356,0.903002023696899,0.420799881219864,-0.998324394226074,-0.0534957349300385,-0.0220581013709307,-0.998343944549561,-0.0532550439238548,-0.0217578131705523,-0.998843908309937,-0.0462160632014275,-0.013229688629508,
  425. -0.998843848705292,-0.0462153851985931,-0.0132311033084989,0.0568863451480865,-0.906653106212616,-0.418024033308029,0.0567445829510689,-0.90837150812149,-0.41429615020752,0.0473932102322578,-0.903415083885193,-0.426139920949936,0.0474114567041397,-0.899875521659851,-0.433562129735947,0.998334348201752,0.0542994141578674,0.0194968972355127,0.998326539993286,0.0527839139103889,0.0236202925443649,0.99882435798645,0.04715396463871,0.0112411407753825,0.99882435798645,0.0471551492810249,0.0112386122345924,-0.0474991425871849,0.909826934337616,0.412260681390762,-0.0474821478128433,0.913259267807007,0.404602348804474,-0.0569858849048615,0.910139679908752,0.410363703966141,-0.0570675209164619,0.908300161361694,0.414408385753632,0.0403851978480816,-0.909471333026886,-0.41380050778389,0.0409441851079464,-0.912098288536072,-0.407922118902206,0.0806085914373398,-0.913933396339417,-0.397779017686844,0.0805608257651329,-0.911562979221344,-0.403191030025482,0.999134838581085,0.0361050702631474,0.0206381902098656,0.999110996723175,0.0364671535789967,0.0211536828428507,0.996705412864685,0.0724951177835464,0.0363709889352322,0.99670547246933,0.0724964216351509,0.0363681353628635,-0.080360122025013,0.89777535200119,0.433061063289642,-0.0804083943367004,0.899715304374695,0.429006934165955,-0.0416289456188679,0.902954638004303,0.427715063095093,-0.0402360074222088,0.905104219913483,0.423281878232956,-0.999114096164703,-0.0387576818466187,-0.0164022408425808,-0.999144077301025,-0.0382249653339386,-0.0158121027052403,-0.996707558631897,-0.0742183029651642,-0.0326442010700703,-0.996707618236542,-0.0742183029651642,-0.0326442122459412,-0.146472826600075,0.775944232940674,0.613560318946838,-0.0485380217432976,0.461925983428955,0.885589420795441,0.0773217529058456,0.450447410345078,0.889448523521423,0.121229067444801,0.786092460155487,0.606104135513306,0.240695804357529,0.952098548412323,0.188610643148422,-0.22256600856781,0.900706827640533,-0.373084008693695,0.224345058202744,0.900413811206818,-0.372725576162338,-0.0427636802196503,0.980908691883087,0.18970899283886,
  426. -0.0427636802196503,0.980908691883087,0.18970899283886,0.224345058202744,0.900413811206818,-0.372725576162338,-0.0485380217432976,0.461925983428955,0.885589420795441,-0.146472826600075,0.775944232940674,0.613560318946838,0.240695804357529,0.952098548412323,0.188610643148422,-0.0427636802196503,0.980908691883087,0.18970899283886,-0.146472826600075,0.775944232940674,0.613560318946838,0.121229067444801,0.786092460155487,0.606104135513306,0.998275399208069,-0.0494664013385773,-0.0316133759915829,0.998280644416809,-0.0498050674796104,-0.0309062451124191,0.998282015323639,-0.0552426092326641,-0.0195269268006086,0.998296737670898,-0.0525364428758621,-0.0253685042262077,-0.998300135135651,0.0519721284508705,0.026380393654108,-0.998298764228821,0.0516391582787037,0.0270761288702488,-0.998292684555054,0.0541808716952801,0.0218204073607922,-0.998262763023376,0.0564187057316303,0.0169855616986752,-0.0598867870867252,-0.897006154060364,-0.437942445278168,-0.0598867982625961,-0.89700585603714,-0.43794310092926,-0.0592104271054268,-0.91206306219101,-0.405752450227737,-0.0592458657920361,-0.909046292304993,-0.412461787462235,0.0773217529058456,0.450447410345078,0.889448523521423,-0.22256600856781,0.900706827640533,-0.373084008693695,0.240695804357529,0.952098548412323,0.188610643148422,0.121229067444801,0.786092460155487,0.606104135513306,0.0591438710689545,0.90432071685791,0.422736287117004,0.0591161325573921,0.906418204307556,0.418224006891251,0.0595854856073856,0.905923008918762,0.41922926902771,0.0595854818820953,0.905923068523407,0.419229120016098,0.66497927904129,0.668906927108765,-0.332213968038559,-0.325625270605087,0.808636367321014,-0.489974915981293,-0.135516241192818,0.969955563545227,0.202043533325195,-0.164559736847878,0.968828439712524,0.185179993510246,0.675939321517944,0.206793934106827,0.707348763942719,-0.306189864873886,0.185062497854233,0.933809220790863,-0.131625086069107,0.804579734802246,0.5790736079216,-0.151153385639191,0.7937992811203,0.589097082614899,-0.325625270605087,0.808636367321014,-0.489974915981293,
  427. 0.675939321517944,0.206793934106827,0.707348763942719,-0.151153385639191,0.7937992811203,0.589097082614899,-0.135516241192818,0.969955563545227,0.202043533325195,-0.164559736847878,0.968828439712524,0.185179993510246,-0.131625086069107,0.804579734802246,0.5790736079216,-0.306189864873886,0.185062497854233,0.933809220790863,0.66497927904129,0.668906927108765,-0.332213968038559,-0.164559736847878,0.968828439712524,0.185179993510246,-0.135516241192818,0.969955563545227,0.202043533325195,-0.151153385639191,0.7937992811203,0.589097082614899,-0.131625086069107,0.804579734802246,0.5790736079216,-0.998262763023376,0.0564187057316303,0.0169855616986752,-0.998292684555054,0.0541808716952801,0.0218204073607922,-0.998219013214111,0.0583190768957138,0.0125652179121971,-0.998218894004822,0.0583207160234451,0.0125615242868662,-0.0592458657920361,-0.909046292304993,-0.412461787462235,-0.0592104271054268,-0.91206306219101,-0.405752450227737,-0.0587186180055141,-0.920359194278717,-0.386640906333923,-0.0587000995874405,-0.91456401348114,-0.400158613920212,0.998296737670898,-0.0525364428758621,-0.0253685042262077,0.998282015323639,-0.0552426092326641,-0.0195269268006086,0.998238146305084,-0.0576322935521603,-0.0141150280833244,0.998238205909729,-0.0576314926147461,-0.0141168516129255,0.0585301071405411,0.906685590744019,0.417726546525955,0.0585551932454109,0.912144362926483,0.405665129423141,0.0591161325573921,0.906418204307556,0.418224006891251,0.0591438710689545,0.90432071685791,0.422736287117004,-0.106857359409332,0.696394681930542,0.709659039974213,-0.0769802182912827,0.308189064264297,0.948205471038818,0.354146033525467,0.292856097221375,0.88815313577652,-0.0199668947607279,0.725649058818817,0.687775254249573,-0.127530485391617,0.98408716917038,0.123727686703205,-0.157333746552467,0.814214825630188,-0.558838486671448,0.3631851375103,0.773983895778656,-0.518696010112762,0.0441921055316925,0.993675708770752,0.103226028382778,0.0441921055316925,0.993675708770752,0.103226028382778,0.3631851375103,0.773983895778656,-0.518696010112762,
  428. -0.0769802182912827,0.308189064264297,0.948205471038818,-0.106857359409332,0.696394681930542,0.709659039974213,-0.127530485391617,0.98408716917038,0.123727686703205,0.0441921055316925,0.993675708770752,0.103226028382778,-0.106857359409332,0.696394681930542,0.709659039974213,-0.0199668947607279,0.725649058818817,0.687775254249573,0.999892830848694,-0.0130188157781959,-0.00670144939795136,0.999893188476563,-0.0134051805362105,-0.00583449378609657,0.9998659491539,0.014388045296073,0.00782515853643417,0.999860644340515,0.0151846027001739,0.00695317145437002,-0.999893248081207,0.0134469252079725,0.00571282673627138,-0.999890029430389,0.0143930232152343,0.00357489357702434,-0.999862909317017,-0.0152956750243902,-0.00635074498131871,-0.999864041805267,-0.0154181979596615,-0.00584850599989295,-0.0159846749156713,-0.916557967662811,-0.399582356214523,-0.0159839317202568,-0.916608154773712,-0.399467349052429,0.0151147926226258,-0.920952618122101,-0.389381289482117,0.0153754390776157,-0.918840169906616,-0.394330412149429,0.354146033525467,0.292856097221375,0.88815313577652,-0.157333746552467,0.814214825630188,-0.558838486671448,-0.127530485391617,0.98408716917038,0.123727686703205,-0.0199668947607279,0.725649058818817,0.687775254249573,-0.0148005373775959,0.903685629367828,0.427940875291824,-0.0161200650036335,0.905805289745331,0.423387467861176,0.0158022604882717,0.913852334022522,0.405739277601242,0.0158065780997276,0.913760006427765,0.405946791172028,0.556249976158142,0.756553590297699,-0.343820840120316,-0.399817079305649,0.75302529335022,-0.522588908672333,-0.27178630232811,0.944292485713959,0.185591161251068,-0.285832136869431,0.94284588098526,0.171294257044792,0.440570890903473,0.246255874633789,0.863281846046448,-0.510596334934235,0.11784628033638,0.851706326007843,-0.241164430975914,0.779137969017029,0.578604996204376,-0.335339039564133,0.748030304908752,0.572711408138275,-0.399817079305649,0.75302529335022,-0.522588908672333,0.440570890903473,0.246255874633789,0.863281846046448,-0.335339039564133,0.748030304908752,0.572711408138275,
  429. -0.27178630232811,0.944292485713959,0.185591161251068,-0.285832136869431,0.94284588098526,0.171294257044792,-0.241164430975914,0.779137969017029,0.578604996204376,-0.510596334934235,0.11784628033638,0.851706326007843,0.556249976158142,0.756553590297699,-0.343820840120316,-0.285832136869431,0.94284588098526,0.171294257044792,-0.27178630232811,0.944292485713959,0.185591161251068,-0.335339039564133,0.748030304908752,0.572711408138275,-0.241164430975914,0.779137969017029,0.578604996204376,-0.999864041805267,-0.0154181979596615,-0.00584850599989295,-0.999862909317017,-0.0152956750243902,-0.00635074498131871,-0.997194886207581,-0.0684963539242744,-0.0301776193082333,-0.997194766998291,-0.0685289800167084,-0.030106658115983,0.0153754390776157,-0.918840169906616,-0.394330412149429,0.0151147926226258,-0.920952618122101,-0.389381289482117,0.0745557472109795,-0.91867995262146,-0.387902975082397,0.0745737999677658,-0.914591908454895,-0.397442430257797,0.999860644340515,0.0151846027001739,0.00695317145437002,0.9998659491539,0.014388045296073,0.00782515853643417,0.997191786766052,0.0681768655776978,0.0309925489127636,0.997191786766052,0.0681462287902832,0.031060041859746,-0.0758268311619759,0.896103978157043,0.437319159507751,-0.0755469650030136,0.90026992559433,0.428726822137833,-0.0161200650036335,0.905805289745331,0.423387467861176,-0.0148005373775959,0.903685629367828,0.427940875291824,0.073406457901001,0.984775304794312,0.157572627067566,0.0267591327428818,0.983229637145996,-0.180398359894753,-0.181958690285683,0.396003663539886,0.900040149688721,-0.0111387623474002,0.787961602210999,0.615623712539673,-0.0111387623474002,0.787961602210999,0.615623712539673,-0.181958690285683,0.396003663539886,0.900040149688721,0.250032007694244,0.449425995349884,0.857613205909729,-0.071695365011692,0.790478527545929,0.608279168605804,-0.071695365011692,0.790478527545929,0.608279168605804,-0.128501027822495,0.978838443756104,0.159257411956787,0.073406457901001,0.984775304794312,0.157572627067566,-0.0111387623474002,0.787961602210999,0.615623712539673,
  430. 0.110146008431911,0.779483497142792,0.616663098335266,0.132693380117416,0.136242210865021,0.981748759746552,-0.292716920375824,0.806038796901703,-0.514410793781281,0.0798466578125954,0.982795059680939,0.166548937559128,-0.090183898806572,0.780510902404785,0.618602931499481,-0.289851993322372,0.0819220617413521,0.953558921813965,0.132693380117416,0.136242210865021,0.981748759746552,0.110146008431911,0.779483497142792,0.616663098335266,0.0798466578125954,0.982795059680939,0.166548937559128,-0.292716920375824,0.806038796901703,-0.514410793781281,0.460917562246323,0.716637492179871,-0.523436427116394,-0.0923771262168884,0.982679545879364,0.160646855831146,-0.090183898806572,0.780510902404785,0.618602931499481,0.110146008431911,0.779483497142792,0.616663098335266,0.0798466578125954,0.982795059680939,0.166548937559128,-0.0923771262168884,0.982679545879364,0.160646855831146,-0.198469296097755,0.283650934696198,0.938164234161377,-0.168716818094254,0.145004138350487,0.974940240383148,0.284432679414749,0.135093182325363,0.949130058288574,0.0569902434945107,0.461967676877975,0.885063886642456,0.0149540565907955,0.573434591293335,0.819114923477173,0.0349359549582005,0.553048968315125,0.832415997982025,0.0149540565907955,0.573434591293335,0.819114923477173,0.0569902434945107,0.461967676877975,0.885063886642456,-0.356519281864166,0.914026618003845,-0.193518579006195,-0.0161576177924871,0.987484693527222,-0.156885400414467,-0.356519281864166,0.914026618003845,-0.193518579006195,-0.16530267894268,0.809008419513702,-0.564074873924255,0.344728797674179,0.781789541244507,-0.519583761692047,0.125431224703789,0.92756575345993,-0.351978600025177,0.0445060543715954,0.974676787853241,-0.21914453804493,-0.0161576177924871,0.987484693527222,-0.156885400414467,0.125431224703789,0.92756575345993,-0.351978600025177,0.344728797674179,0.781789541244507,-0.519583761692047,-0.168716818094254,0.145004138350487,0.974940240383148,-0.198469296097755,0.283650934696198,0.938164234161377,0.0349359549582005,0.553048968315125,0.832415997982025,0.0445060543715954,0.974676787853241,-0.21914453804493,
  431. 0.125431224703789,0.92756575345993,-0.351978600025177,-0.198469296097755,0.283650934696198,0.938164234161377,-0.0161576177924871,0.987484693527222,-0.156885400414467,0.0445060543715954,0.974676787853241,-0.21914453804493,0.0349359549582005,0.553048968315125,0.832415997982025,0.0149540565907955,0.573434591293335,0.819114923477173,-0.033589031547308,0.913507461547852,0.405433058738709,-0.0335890911519527,0.913489818572998,0.405472815036774,-0.0320845507085323,0.905022978782654,0.424150824546814,-0.0320712812244892,0.907162010669708,0.41955778002739,0.999532997608185,0.0250945650041103,0.0174389630556107,0.999550759792328,0.0276618767529726,0.0115360980853438,0.999517738819122,0.0308267492800951,0.00375861162319779,0.999542951583862,0.029483687132597,0.00667872512713075,-0.999531149864197,-0.0249902214854956,-0.0176950357854366,-0.999473333358765,-0.0225106086581945,-0.0233775712549686,-0.999561667442322,-0.0273401625454426,-0.0113606862723827,-0.999553382396698,-0.0286342035979033,-0.00854925718158484,0.460917562246323,0.716637492179871,-0.523436427116394,-0.289851993322372,0.0819220617413521,0.953558921813965,-0.090183898806572,0.780510902404785,0.618602931499481,0.460917562246323,0.716637492179871,-0.523436427116394,-0.090183898806572,0.780510902404785,0.618602931499481,-0.0923771262168884,0.982679545879364,0.160646855831146,0.0422747693955898,-0.900958776473999,-0.431840509176254,0.0422462895512581,-0.902336537837982,-0.428957164287567,-0.0118593377992511,-0.903821527957916,-0.427745401859283,-0.00977630075067282,-0.90240615606308,-0.430775791406631,0.99887490272522,0.0367917194962502,0.029925100505352,0.998869001865387,0.0365830808877945,0.0303727872669697,0.99982362985611,-0.0153956431895494,0.0107533857226372,0.999833583831787,-0.015122652053833,0.0102047063410282,-0.161373808979988,0.966417253017426,-0.199990689754486,0.0267591327428818,0.983229637145996,-0.180398359894753,0.073406457901001,0.984775304794312,0.157572627067566,-0.128501027822495,0.978838443756104,0.159257411956787,0.250032007694244,0.449425995349884,0.857613205909729,
  432. -0.161373808979988,0.966417253017426,-0.199990689754486,-0.128501027822495,0.978838443756104,0.159257411956787,-0.071695365011692,0.790478527545929,0.608279168605804,0.999658644199371,0.020936656743288,0.0156269278377295,0.999659776687622,0.0210248343646526,0.0154410749673843,0.999665379524231,0.0223643947392702,0.0130012882873416,0.999668002128601,0.0235923789441586,0.0103583969175816,-0.999660849571228,-0.025174418464303,-0.00667817750945687,-0.999670743942261,-0.0224318895488977,-0.0124611109495163,-0.999666571617126,-0.0225971043109894,-0.0124969463795424,-0.999668121337891,-0.0230338387191296,-0.0115445861592889,0.0245173890143633,-0.907089948654175,-0.420222222805023,0.0245173312723637,-0.907071888446808,-0.420261055231094,0.0250943191349506,-0.908185720443726,-0.417814522981644,0.0250892788171768,-0.906452178955078,-0.42156258225441,0.284432679414749,0.135093182325363,0.949130058288574,-0.16530267894268,0.809008419513702,-0.564074873924255,-0.356519281864166,0.914026618003845,-0.193518579006195,0.0569902434945107,0.461967676877975,0.885063886642456,0.0342691466212273,-0.907742917537689,-0.418124854564667,0.0342649482190609,-0.905668795108795,-0.422599196434021,0.0359005779027939,-0.9192014336586,-0.392147839069366,0.0359003320336342,-0.919195473194122,-0.392161905765533,-0.166887983679771,0.131577879190445,0.97715699672699,0.456975340843201,0.760469496250153,-0.461367219686508,-0.0884583592414856,0.983105301856995,0.160246938467026,-0.0525496453046799,0.786448895931244,0.615415811538696,0.456975340843201,0.760469496250153,-0.461367219686508,-0.367277175188065,0.78957211971283,-0.491613179445267,-0.106538385152817,0.980335772037506,0.16610686480999,-0.0884583592414856,0.983105301856995,0.160246938467026,0.593635439872742,0.205871179699898,0.777955055236816,-0.166887983679771,0.131577879190445,0.97715699672699,-0.0525496453046799,0.786448895931244,0.615415811538696,-0.0433955490589142,0.781837046146393,0.621970772743225,-0.0433955490589142,0.781837046146393,0.621970772743225,-0.106538385152817,0.980335772037506,0.16610686480999,
  433. -0.367277175188065,0.78957211971283,-0.491613179445267,0.593635439872742,0.205871179699898,0.777955055236816,-0.999632596969604,0.0260202903300524,-0.0075975963845849,-0.999634861946106,0.0257840156555176,-0.0080866850912571,-0.999409317970276,-0.0213447995483875,-0.0269349869340658,-0.999409079551697,-0.0213367603719234,-0.0269522797316313,0.0132418060675263,0.914395332336426,0.40460592508316,0.0133523494005203,0.916008591651917,0.400936424732208,-0.0408157967031002,0.90839409828186,0.416118055582047,-0.0408450737595558,0.907111763954163,0.418903321027756,-0.00238799303770065,0.93899130821228,-0.343932509422302,0.377981722354889,0.325722098350525,0.866622745990753,0.123491257429123,0.783896684646606,0.608486592769623,0.00461304327473044,0.98300713300705,0.183509290218353,0.464591085910797,0.832650482654572,-0.301410347223282,-0.00238799303770065,0.93899130821228,-0.343932509422302,0.00461304327473044,0.98300713300705,0.183509290218353,0.149691745638847,0.973471879959106,0.173046469688416,0.0468504913151264,0.795738697052002,0.603825390338898,0.123491257429123,0.783896684646606,0.608486592769623,0.377981722354889,0.325722098350525,0.866622745990753,-0.0219156723469496,0.3738072514534,0.927247405052185,0.149691745638847,0.973471879959106,0.173046469688416,0.0468504913151264,0.795738697052002,0.603825390338898,-0.0219156723469496,0.3738072514534,0.927247405052185,0.464591085910797,0.832650482654572,-0.301410347223282,-0.0252049304544926,0.908254742622375,0.41765770316124,-0.0252139084041119,0.910328388214111,0.413118004798889,-0.0246764868497849,0.90140688419342,0.43226945400238,-0.024675440043211,0.901227533817291,0.432643264532089,0.500329077243805,0.743625462055206,-0.443499803543091,-0.493849396705627,0.751973986625671,-0.436632424592972,-0.116339594125748,0.973094820976257,0.198875859379768,-0.235195174813271,0.953951418399811,0.186171844601631,0.674252331256866,0.192360311746597,0.713008642196655,-0.299185425043106,0.166780591011047,0.939506471157074,-0.123127102851868,0.802858114242554,0.58331698179245,-0.141607508063316,0.792167186737061,0.593648552894592,
  434. -0.493849396705627,0.751973986625671,-0.436632424592972,0.674252331256866,0.192360311746597,0.713008642196655,-0.141607508063316,0.792167186737061,0.593648552894592,-0.116339594125748,0.973094820976257,0.198875859379768,-0.235195174813271,0.953951418399811,0.186171844601631,-0.123127102851868,0.802858114242554,0.58331698179245,-0.299185425043106,0.166780591011047,0.939506471157074,0.500329077243805,0.743625462055206,-0.443499803543091,-0.235195174813271,0.953951418399811,0.186171844601631,-0.116339594125748,0.973094820976257,0.198875859379768,-0.141607508063316,0.792167186737061,0.593648552894592,-0.123127102851868,0.802858114242554,0.58331698179245,0.0468504913151264,0.795738697052002,0.603825390338898,0.149691745638847,0.973471879959106,0.173046469688416,0.00461304327473044,0.98300713300705,0.183509290218353,0.123491257429123,0.783896684646606,0.608486592769623,-0.0433955490589142,0.781837046146393,0.621970772743225,-0.0525496453046799,0.786448895931244,0.615415811538696,-0.0884583592414856,0.983105301856995,0.160246938467026,-0.106538385152817,0.980335772037506,0.16610686480999,0.0330938957631588,-0.89985978603363,-0.434921979904175,0.0331777632236481,-0.895517528057098,-0.443787813186646,0.0342649482190609,-0.905668795108795,-0.422599196434021,0.0342691466212273,-0.907742917537689,-0.418124854564667,0.999542951583862,0.029483687132597,0.00667872512713075,0.999517738819122,0.0308267492800951,0.00375861162319779,0.99950248003006,0.0314863584935665,0.00189223908819258,0.99950236082077,0.0314893536269665,0.00188611377961934,-0.0320712812244892,0.907162010669708,0.41955778002739,-0.0320845507085323,0.905022978782654,0.424150824546814,-0.0302161276340485,0.900629758834839,0.433535575866699,-0.0302762631326914,0.904955983161926,0.424426943063736,-0.999553382396698,-0.0286342035979033,-0.00854925718158484,-0.999561667442322,-0.0273401625454426,-0.0113606862723827,-0.999539494514465,-0.0299116931855679,-0.00510284444317222,-0.999539613723755,-0.0299084894359112,-0.00510941399261355,-0.996171772480011,0.0859863981604576,0.0157526042312384,
  435. -0.996171891689301,0.0859852731227875,0.0157551355659962,-0.999634861946106,0.0257840156555176,-0.0080866850912571,-0.999632596969604,0.0260202903300524,-0.0075975963845849,-0.00977630075067282,-0.90240615606308,-0.430775791406631,-0.0118593377992511,-0.903821527957916,-0.427745401859283,-0.0806125700473785,-0.903118312358856,-0.42175704240799,-0.0806607380509377,-0.901047706604004,-0.426153868436813,0.999833583831787,-0.015122652053833,0.0102047063410282,0.99982362985611,-0.0153956431895494,0.0107533857226372,0.996589183807373,-0.0813843160867691,-0.0136674251407385,0.996589004993439,-0.0813860520720482,-0.0136635061353445,0.0817888006567955,0.915242671966553,0.394514262676239,0.0817263871431351,0.917117297649384,0.390149593353271,0.0133523494005203,0.916008591651917,0.400936424732208,0.0132418060675263,0.914395332336426,0.40460592508316,-0.999668121337891,-0.0230338387191296,-0.0115445861592889,-0.999666571617126,-0.0225971043109894,-0.0124969463795424,-0.999664306640625,-0.0240569915622473,-0.00962287839502096,-0.99966424703598,-0.0240568984299898,-0.0096230786293745,0.0250892788171768,-0.906452178955078,-0.42156258225441,0.0250943191349506,-0.908185720443726,-0.417814522981644,0.0255748219788074,-0.912204325199127,-0.408936679363251,0.0255951639264822,-0.908744752407074,-0.416566759347916,0.999668002128601,0.0235923789441586,0.0103583969175816,0.999665379524231,0.0223643947392702,0.0130012882873416,0.999659299850464,0.0249645169824362,0.00762864574790001,0.999659299850464,0.0249640867114067,0.00762960128486156,-0.0256429351866245,0.910970687866211,0.411673218011856,-0.0256306510418653,0.914869248867035,0.4029361307621,-0.0252139084041119,0.910328388214111,0.413118004798889,-0.0252049304544926,0.908254742622375,0.41765770316124,-0.146456986665726,0.775933802127838,0.613577365875244,-0.0484930127859116,0.462045758962631,0.885529398918152,0.077215202152729,0.450550496578217,0.889405429363251,0.121223956346512,0.786077380180359,0.606124639511108,0.240639582276344,0.952114939689636,0.188599959015846,-0.22249835729599,0.900735855102539,-0.373054355382919,
  436. 0.224268555641174,0.900454461574554,-0.372673273086548,-0.0427417233586311,0.980912923812866,0.189692169427872,-0.0427417233586311,0.980912923812866,0.189692169427872,0.224268555641174,0.900454461574554,-0.372673273086548,-0.0484930127859116,0.462045758962631,0.885529398918152,-0.146456986665726,0.775933802127838,0.613577365875244,0.240639582276344,0.952114939689636,0.188599959015846,-0.0427417233586311,0.980912923812866,0.189692169427872,-0.146456986665726,0.775933802127838,0.613577365875244,0.121223956346512,0.786077380180359,0.606124639511108,0.999989628791809,0.00278915278613567,-0.00361057720147073,0.999990820884705,0.00267615308985114,-0.00336335133761168,0.999998390674591,0.00157829991076142,-0.000915331882424653,0.999998152256012,0.0016353172250092,-0.0010387928923592,-0.99999213218689,-0.00253168679773808,0.00305059691891074,-0.999991059303284,-0.00264645437709987,0.00330169079825282,-0.999999225139618,-0.00127909367438406,0.000268282106844708,-0.999996662139893,-0.00195631803944707,0.00173683022148907,-0.000215288280742243,-0.91048675775528,-0.41353839635849,-0.0002152887172997,-0.910486698150635,-0.413538455963135,0.000132871107780375,-0.907579600811005,-0.419880330562592,0.000118448631837964,-0.907226979732513,-0.420641392469406,0.077215202152729,0.450550496578217,0.889405429363251,-0.22249835729599,0.900735855102539,-0.373054355382919,0.240639582276344,0.952114939689636,0.188599959015846,0.121223956346512,0.786077380180359,0.606124639511108,-0.000389453693060204,0.90719473361969,0.420711040496826,-0.000398955366108567,0.907546877861023,0.419950574636459,9.80752520263195e-006,0.910467028617859,0.413581669330597,9.80705863184994e-006,0.910467028617859,0.413581639528275,0.667760848999023,0.662799775600433,-0.338809490203857,-0.333626449108124,0.803740382194519,-0.492640614509583,-0.135240659117699,0.970120251178741,0.20143686234951,-0.172192469239235,0.967514157295227,0.185111179947853,0.682475745677948,0.19783541560173,0.703624844551086,-0.303739488124847,0.178980946540833,0.935792863368988,-0.128820717334747,0.804443717002869,0.579892694950104,
  437. -0.149576842784882,0.794327139854431,0.588788032531738,-0.333626449108124,0.803740382194519,-0.492640614509583,0.682475745677948,0.19783541560173,0.703624844551086,-0.149576842784882,0.794327139854431,0.588788032531738,-0.135240659117699,0.970120251178741,0.20143686234951,-0.172192469239235,0.967514157295227,0.185111179947853,-0.128820717334747,0.804443717002869,0.579892694950104,-0.303739488124847,0.178980946540833,0.935792863368988,0.667760848999023,0.662799775600433,-0.338809490203857,-0.172192469239235,0.967514157295227,0.185111179947853,-0.135240659117699,0.970120251178741,0.20143686234951,-0.149576842784882,0.794327139854431,0.588788032531738,-0.128820717334747,0.804443717002869,0.579892694950104,-0.999996662139893,-0.00195631803944707,0.00173683022148907,-0.999999225139618,-0.00127909367438406,0.000268282106844708,-0.999998927116394,-0.00053821160690859,-0.0013726158067584,-0.999998927116394,-0.000537609914317727,-0.0013739054556936,0.000118448631837964,-0.907226979732513,-0.420641392469406,0.000132871107780375,-0.907579600811005,-0.419880330562592,0.000734375440515578,-0.911521315574646,-0.411252290010452,0.000638684548903257,-0.90610808134079,-0.423045992851257,0.999998152256012,0.0016353172250092,-0.0010387928923592,0.999998390674591,0.00157829991076142,-0.000915331882424653,0.999999105930328,0.000581438944209367,0.00127993733622134,0.999999046325684,0.000581503380089998,0.00127979926764965,-0.00103679788298905,0.906072676181793,0.423120856285095,-0.00092013762332499,0.91150426864624,0.411289542913437,-0.000398955366108567,0.907546877861023,0.419950574636459,-0.000389453693060204,0.90719473361969,0.420711040496826,-0.0803172811865807,0.696790635585785,0.712763667106628,-0.0580297969281673,0.301593005657196,0.951669216156006,0.37550351023674,0.274869978427887,0.885123550891876,0.00676096510142088,0.723944365978241,0.689825356006622,-0.101797237992287,0.986600875854492,0.127499654889107,-0.147843554615974,0.816434800624847,-0.558190405368805,0.3764428794384,0.762358069419861,-0.526403844356537,0.069424219429493,0.992068946361542,0.104783199727535,
  438. 0.069424219429493,0.992068946361542,0.104783199727535,0.3764428794384,0.762358069419861,-0.526403844356537,-0.0580297969281673,0.301593005657196,0.951669216156006,-0.0803172811865807,0.696790635585785,0.712763667106628,-0.101797237992287,0.986600875854492,0.127499654889107,0.069424219429493,0.992068946361542,0.104783199727535,-0.0803172811865807,0.696790635585785,0.712763667106628,0.00676096510142088,0.723944365978241,0.689825356006622,0.999567151069641,-0.0263177268207073,-0.0131552126258612,0.999567866325378,-0.0266275256872177,-0.0124525129795074,0.999976575374603,-0.00657854741439223,-0.00193213042803109,0.999978423118591,-0.00613221107050776,-0.00236142822541296,-0.99956738948822,0.02629154920578,0.0131902424618602,-0.999567985534668,0.0273347571492195,0.0108072776347399,-0.999977827072144,0.00572894653305411,0.00338466232642531,-0.999975800514221,0.0053604282438755,0.00443151127547026,-0.0308453980833292,-0.9190274477005,-0.392984837293625,-0.0308441855013371,-0.919089019298553,-0.392840921878815,-0.00762012694031,-0.911159813404083,-0.411982923746109,-0.00810262747108936,-0.909133315086365,-0.416426450014114,0.37550351023674,0.274869978427887,0.885123550891876,-0.147843554615974,0.816434800624847,-0.558190405368805,-0.101797237992287,0.986600875854492,0.127499654889107,0.00676096510142088,0.723944365978241,0.689825356006622,0.00830081384629011,0.901042222976685,0.433652013540268,0.00705478107556701,0.903099536895752,0.429373562335968,0.030708234757185,0.913968741893768,0.404621094465256,0.0307128820568323,0.913876712322235,0.404828548431396,0.60608184337616,0.712444841861725,-0.353676825761795,-0.351921677589417,0.780696332454681,-0.516395568847656,-0.197955474257469,0.961454451084137,0.190837413072586,-0.213055029511452,0.96087646484375,0.17698572576046,0.472103625535965,0.209422409534454,0.856306374073029,-0.487950384616852,0.1512690782547,0.859664022922516,-0.173284038901329,0.793503999710083,0.583372950553894,-0.27088463306427,0.769235670566559,0.578703880310059,-0.351921677589417,0.780696332454681,-0.516395568847656,
  439. 0.472103625535965,0.209422409534454,0.856306374073029,-0.27088463306427,0.769235670566559,0.578703880310059,-0.197955474257469,0.961454451084137,0.190837413072586,-0.213055029511452,0.96087646484375,0.17698572576046,-0.173284038901329,0.793503999710083,0.583372950553894,-0.487950384616852,0.1512690782547,0.859664022922516,0.60608184337616,0.712444841861725,-0.353676825761795,-0.213055029511452,0.96087646484375,0.17698572576046,-0.197955474257469,0.961454451084137,0.190837413072586,-0.27088463306427,0.769235670566559,0.578703880310059,-0.173284038901329,0.793503999710083,0.583372950553894,-0.999975800514221,0.0053604282438755,0.00443151127547026,-0.999977827072144,0.00572894653305411,0.00338466232642531,-0.999346733093262,-0.0322853587567806,-0.0162436068058014,-0.999346733093262,-0.0322921462357044,-0.0162298940122128,-0.00810262747108936,-0.909133315086365,-0.416426450014114,-0.00762012694031,-0.911159813404083,-0.411982923746109,0.0362075939774513,-0.90614527463913,-0.421414107084274,0.0362411439418793,-0.90207701921463,-0.430050760507584,0.999978423118591,-0.00613221107050776,-0.00236142822541296,0.999976575374603,-0.00657854741439223,-0.00193213042803109,0.999345183372498,0.0318148471415043,0.017239298671484,0.999345064163208,0.0318079702556133,0.0172533728182316,-0.0379394516348839,0.891491651535034,0.451445937156677,-0.0376589372754097,0.895609021186829,0.443245202302933,0.00705478107556701,0.903099536895752,0.429373562335968,0.00830081384629011,0.901042222976685,0.433652013540268,0.0704225227236748,0.983153164386749,0.168672680854797,0.0831565409898758,0.976038575172424,-0.201081395149231,-0.251073956489563,0.351733207702637,0.901801407337189,-0.00079467159230262,0.784529983997345,0.620090365409851,-0.00079467159230262,0.784529983997345,0.620090365409851,-0.251073956489563,0.351733207702637,0.901801407337189,0.178226336836815,0.304588556289673,0.935660839080811,0.123537726700306,0.795394122600555,0.593368887901306,0.123537726700306,0.795394122600555,0.593368887901306,0.0069643585011363,0.982679843902588,0.18518041074276,
  440. 0.0704225227236748,0.983153164386749,0.168672680854797,-0.00079467159230262,0.784529983997345,0.620090365409851,0.112004183232784,0.782321631908417,0.612721681594849,0.136189445853233,0.138418063521385,0.980965375900269,-0.303321719169617,0.807887494564056,-0.505285859107971,0.0871438980102539,0.981543123722076,0.170232579112053,-0.0922953858971596,0.783000946044922,0.615135014057159,-0.302490890026093,0.0915711671113968,0.948743402957916,0.136189445853233,0.138418063521385,0.980965375900269,0.112004183232784,0.782321631908417,0.612721681594849,0.0871438980102539,0.981543123722076,0.170232579112053,-0.303321719169617,0.807887494564056,-0.505285859107971,0.479130983352661,0.717719316482544,-0.505284607410431,-0.0985482633113861,0.981599152088165,0.163558632135391,-0.0922953858971596,0.783000946044922,0.615135014057159,0.112004183232784,0.782321631908417,0.612721681594849,0.0871438980102539,0.981543123722076,0.170232579112053,-0.0985482633113861,0.981599152088165,0.163558632135391,-0.00164368422701955,0.904969930648804,0.425472557544708,-0.00164312543347478,0.90494978427887,0.425515294075012,0.0284277275204659,0.910272598266602,0.413032501935959,0.0287589374929667,0.912581622600555,0.407882243394852,0.99995630979538,0.00529022281989455,-0.00770741375163198,0.999955654144287,0.00532266404479742,-0.0077768350020051,0.999444007873535,-0.0302733965218067,-0.0139722973108292,0.999458074569702,-0.0298131350427866,-0.013961635529995,-0.999997854232788,-0.00198093894869089,0.00058693706523627,-0.999998092651367,-0.00192182022146881,0.000460767012555152,-0.999445021152496,0.031861562281847,0.00972748082131147,-0.999435722827911,0.0321590267121792,0.00970482639968395,0.479130983352661,0.717719316482544,-0.505284607410431,-0.302490890026093,0.0915711671113968,0.948743402957916,-0.0922953858971596,0.783000946044922,0.615135014057159,0.479130983352661,0.717719316482544,-0.505284607410431,-0.0922953858971596,0.783000946044922,0.615135014057159,-0.0985482633113861,0.981599152088165,0.163558632135391,-0.0286526326090097,-0.895147502422333,-0.444848269224167,
  441. -0.0286663174629211,-0.896544516086578,-0.442025274038315,-0.044767327606678,-0.911979734897614,-0.407785594463348,-0.0446886084973812,-0.910388588905334,-0.411333978176117,0.999500870704651,-0.0298680923879147,-0.0102940862998366,0.999499320983887,-0.0300600696355104,-0.00988470669835806,0.999012172222137,-0.0443609170615673,-0.00260832882486284,0.998989284038544,-0.0449322275817394,-0.00123120471835136,-0.340700268745422,0.889487624168396,-0.304524719715118,0.0831565409898758,0.976038575172424,-0.201081395149231,0.0704225227236748,0.983153164386749,0.168672680854797,0.0069643585011363,0.982679843902588,0.18518041074276,0.178226336836815,0.304588556289673,0.935660839080811,-0.340700268745422,0.889487624168396,-0.304524719715118,0.0069643585011363,0.982679843902588,0.18518041074276,0.123537726700306,0.795394122600555,0.593368887901306,-0.0271341633051634,-0.903939127922058,-0.426799446344376,-0.0262025725096464,-0.903805255889893,-0.427141070365906,0.00356258219107986,-0.906656801700592,-0.421853989362717,0.0035623786970973,-0.906651377677917,-0.421865791082382,-0.287385880947113,0.208646327257156,0.934813380241394,0.373938053846359,0.763146460056305,-0.527046501636505,0.376461207866669,0.911939144134521,0.163230136036873,0.362927228212357,0.715563833713531,0.596868634223938,0.373938053846359,0.763146460056305,-0.527046501636505,-0.463608801364899,0.813072323799133,-0.35210844874382,0.266620695590973,0.951577365398407,0.153016269207001,0.376461207866669,0.911939144134521,0.163230136036873,0.49535059928894,0.12407349050045,0.859787046909332,-0.287385880947113,0.208646327257156,0.934813380241394,0.362927228212357,0.715563833713531,0.596868634223938,0.30949479341507,0.741963922977448,0.594729006290436,0.30949479341507,0.741963922977448,0.594729006290436,0.266620695590973,0.951577365398407,0.153016269207001,-0.463608801364899,0.813072323799133,-0.35210844874382,0.49535059928894,0.12407349050045,0.859787046909332,-0.9983189702034,0.0579585582017899,-0.000252304598689079,-0.99837601184845,0.0569312497973442,0.00205579004250467,
  442. -0.998812258243561,0.0478645525872707,0.00911716744303703,-0.998811006546021,0.0479088872671127,0.00902224890887737,-0.0192163940519094,0.909321665763855,0.415649920701981,-0.0189592130482197,0.91091400384903,0.412160456180573,-0.0518304109573364,0.913031339645386,0.404583066701889,-0.0518402345478535,0.911725103855133,0.407516896724701,-0.173912346363068,0.910251080989838,-0.375762552022934,0.231198772788048,0.347799509763718,0.90861588716507,-0.0657771453261375,0.796212136745453,0.601431310176849,-0.191091403365135,0.965928137302399,0.174548029899597,0.35684671998024,0.880856871604919,-0.311049550771713,-0.173912346363068,0.910251080989838,-0.375762552022934,-0.191091403365135,0.965928137302399,0.174548029899597,-0.0437812395393848,0.98322057723999,0.17708919942379,-0.105013810098171,0.791981875896454,0.601445555686951,-0.0657771453261375,0.796212136745453,0.601431310176849,0.231198772788048,0.347799509763718,0.90861588716507,-0.216140776872635,0.347276836633682,0.912514090538025,-0.0437812395393848,0.98322057723999,0.17708919942379,-0.105013810098171,0.791981875896454,0.601445555686951,-0.216140776872635,0.347276836633682,0.912514090538025,0.35684671998024,0.880856871604919,-0.311049550771713,-0.105013810098171,0.791981875896454,0.601445555686951,-0.0437812395393848,0.98322057723999,0.17708919942379,-0.191091403365135,0.965928137302399,0.174548029899597,-0.0657771453261375,0.796212136745453,0.601431310176849,0.30949479341507,0.741963922977448,0.594729006290436,0.362927228212357,0.715563833713531,0.596868634223938,0.376461207866669,0.911939144134521,0.163230136036873,0.266620695590973,0.951577365398407,0.153016269207001,-0.0622163265943527,-0.90538227558136,-0.420014590024948,-0.0621182769536972,-0.901083886623383,-0.429172724485397,-0.0262025725096464,-0.903805255889893,-0.427141070365906,-0.0271341633051634,-0.903939127922058,-0.426799446344376,0.999458074569702,-0.0298131350427866,-0.013961635529995,0.999444007873535,-0.0302733965218067,-0.0139722973108292,0.997223496437073,-0.0709294974803925,-0.0226824060082436,
  443. 0.997222125530243,-0.0709914416074753,-0.0225476678460836,0.0287589374929667,0.912581622600555,0.407882243394852,0.0284277275204659,0.910272598266602,0.413032501935959,0.0644877701997757,0.909511387348175,0.410646468400955,0.0645337477326393,0.914026916027069,0.400487661361694,-0.999435722827911,0.0321590267121792,0.00970482639968395,-0.999445021152496,0.031861562281847,0.00972748082131147,-0.997206151485443,0.0716497227549553,0.021126139909029,-0.997207760810852,0.0715881362557411,0.0212605409324169,-0.997744739055634,0.0669629499316216,-0.00464656623080373,-0.997879505157471,0.065088078379631,-0.000289939343929291,-0.99837601184845,0.0569312497973442,0.00205579004250467,-0.9983189702034,0.0579585582017899,-0.000252304598689079,-0.0446886084973812,-0.910388588905334,-0.411333978176117,-0.044767327606678,-0.911979734897614,-0.407785594463348,-0.0658872053027153,-0.922763526439667,-0.379692614078522,-0.0659422799944878,-0.920932948589325,-0.384101718664169,0.998989284038544,-0.0449322275817394,-0.00123120471835136,0.999012172222137,-0.0443609170615673,-0.00260832882486284,0.998209059238434,-0.0597997531294823,0.0016783403698355,0.998127460479736,-0.0610046461224556,0.00447005592286587,0.0233842562884092,0.908984184265137,0.416174411773682,0.0233823377639055,0.910911202430725,0.411939352750778,-0.0189592130482197,0.91091400384903,0.412160456180573,-0.0192163940519094,0.909321665763855,0.415649920701981,1,-0,0,1,-9.35264251893386e-005,0.000209964593523182,0.99999988079071,-0.000187052806722932,0.000419929128838703,1,-9.35264106374234e-005,0.000209964578971267,-0.999999940395355,0.000187480021850206,-0.000419738673372194,-1,9.37400036491454e-005,-0.000209869322134182,-1,-0,0,-1,9.3740010925103e-005,-0.000209869336686097,0,-0.913267016410828,-0.407361507415771,0,-0.913474142551422,-0.406896770000458,0,-0.913267016410828,-0.407361507415771,0,-0.913059651851654,-0.407826095819473,-7.04530393704772e-005,0.913474142551422,0.406896770000458,-7.06869250279851e-005,0.913267076015472,0.407361477613449,-7.09207524778321e-005,0.913059711456299,0.407826095819473,
  444. -7.06869032001123e-005,0.913267076015472,0.407361477613449,0.999966621398926,0.00787722412496805,0.00216889195144176,0.999965488910675,0.0080117667093873,0.00220593647100031,0.999964356422424,0.00814630929380655,0.00224298099055886,0.999965488910675,0.0080117667093873,0.00220593647100031,-0.999666094779968,-0.0249350126832724,-0.00678359344601631,-0.999665915966034,-0.0249403771013021,-0.00678505236282945,-0.999665796756744,-0.0249457396566868,-0.00678651127964258,-0.999665915966034,-0.0249403771013021,-0.00678505236282945,1,-0,0,1,-0.000139921030495316,0.000307778245769441,0.999999821186066,-0.000279842002782971,0.000615556491538882,1,-0.000139921015943401,0.000307778245769441,-0.999991178512573,-0.00175196013879031,0.00384293822571635,-1,4.25538237323053e-005,-9.3342132458929e-005,-0.999990224838257,0.00183706695679575,-0.00402962043881416,-1,4.25538237323053e-005,-9.3342132458929e-005,3.6820296145379e-008,-0.909960567951202,-0.4146948158741,3.68274548634417e-008,-0.910137414932251,-0.414306610822678,3.68357326863133e-008,-0.910342156887054,-0.413856416940689,3.68310217879753e-008,-0.910225629806519,-0.414112567901611,3.68223034286075e-008,-0.910010099411011,-0.414586156606674,3.68202925926653e-008,-0.909960448741913,-0.414695084095001,-0.00012347602751106,0.910342216491699,0.413856357336044,-0.000122718527563848,0.91080516576767,0.412836521863937,-0.00012106858775951,0.911809265613556,0.410614132881165,-0.000121068820590153,0.911809086799622,0.410614460706711,-0.00012191612040624,0.911294162273407,0.41175588965416,-0.000123543373774737,0.910301029682159,0.413946986198425,0.999354839324951,0.0348234996199608,0.00879976898431778,0.999820411205292,0.0183778963983059,0.00464402604848146,0.999820351600647,0.0183804240077734,0.00464466493576765,0.998566567897797,0.0518933795392513,0.0131132639944553,0.997422158718109,0.0695710182189941,0.0175803378224373,0.997491776943207,0.0686253234744072,0.0173413641750813,-0.999774873256683,-0.0205881856381893,-0.00513864681124687,-0.991068959236145,-0.129381403326988,-0.0322925597429276,
  445. -0.969878494739532,-0.236339315772057,-0.0589884109795094,-0.969827651977539,-0.236535593867302,-0.0590373985469341,-0.991054892539978,-0.129482969641685,-0.0323179103434086,-0.999774873256683,-0.0205907374620438,-0.00513928383588791,1,-0,0,1,-9.35264251893386e-005,0.000209964564419352,0.999999940395355,-0.000187052864930592,0.000419929157942533,1,-9.35264397412539e-005,0.000209964564419352,-0.99999988079071,0.000187479745363817,-0.000419738673372194,-1,9.37398872338235e-005,-0.000209869351238012,-1,0,-0,-1,9.37398726819083e-005,-0.000209869336686097,0,-0.99909919500351,-0.0424365177750587,-0,-0.707106828689575,0.707106828689575,0,-0.983270883560181,0.182149305939674,-0,0.99909919500351,0.0424365177750587,-0,0.707106828689575,-0.707106828689575,-0,0.983363389968872,-0.181649208068848,0.000205138378078118,0.983270943164825,-0.182149320840836,0.000404973805416375,0.70710676908493,-0.70710676908493,0.00010676879901439,0.99909919500351,0.0424365252256393,-0.000204926502192393,-0.983363389968872,0.181649208068848,-0.000404973805416375,-0.70710676908493,0.70710676908493,-0.000106768806290347,-0.99909919500351,-0.0424365103244781,-1,-0,-0,-0.999989926815033,-0.00432168366387486,-0.00123234861530364,0.99998152256012,0.00586140854284167,0.00167140841949731,1,0,-0,0.99998927116394,0.00447043962776661,0.00127476709894836,-0.99998152256012,-0.00586140854284167,-0.00167140841949731,-0.999898672103882,-0.013704982586205,-0.00386213650926948,-1,0,-0,-0.99981963634491,-0.0182776506990194,-0.00515073863789439,0.999898552894592,0.0137118045240641,0.00386405899189413,1,-0,0,0.99981963634491,0.0182776506990194,0.00515073863789439,-0.00403911480680108,0.922666013240814,0.385578900575638,-0.00403936300426722,0.922666072845459,0.385578870773315,-0.0216464567929506,0.92241507768631,0.385593205690384,-0.0216460805386305,0.922415018081665,0.385593175888062,0.00403899699449539,-0.922664642333984,-0.385582119226456,0.00403899746015668,-0.922664701938629,-0.385582268238068,0.0216455981135368,-0.922408103942871,-0.385609805583954,0.0216457303613424,-0.922408103942871,-0.385609805583954,
  446. 0.00189493666402996,0.385589957237244,-0.922668278217316,0.00189514074008912,0.385590046644211,-0.92266833782196,-0.00451176101341844,0.385489523410797,-0.922701179981232,-0.00451136846095324,0.38548955321312,-0.922701179981232,-0.00189445889554918,-0.385589748620987,0.92266833782196,-0.00189518858678639,-0.385589718818665,0.92266845703125,0.00450964970514178,-0.385489165782928,0.922701418399811,0.00451037473976612,-0.385489106178284,0.922701418399811,-0,0.919834554195404,0.392306476831436,-0,0.919834494590759,0.392306566238403,-0,0.919834494590759,0.392306685447693,-0,0.919834494590759,0.392306566238403,-3.52459181840459e-007,-0.92011570930481,-0.39164662361145,-3.52459181840459e-007,-0.920115768909454,-0.391646504402161,-3.52459210262168e-007,-0.920115828514099,-0.391646385192871,-3.52459181840459e-007,-0.920115768909454,-0.391646504402161,0.00040840357542038,-0.922670960426331,-0.385588109493256,0.00040842778980732,-0.922670960426331,-0.385588109493256,0.00403899746015668,-0.922664701938629,-0.385582268238068,0.00403899699449539,-0.922664642333984,-0.385582119226456,0.00359822763130069,0.385580539703369,-0.922667145729065,0.00595066277310252,0.385576277971268,-0.922656893730164,0.00189514074008912,0.385590046644211,-0.92266833782196,0.00189493666402996,0.385589957237244,-0.922668278217316,-0.000408267136663198,0.922671496868134,0.385586738586426,-0.000408238847739995,0.922671556472778,0.385586768388748,-0.00403936300426722,0.922666072845459,0.385578870773315,-0.00403911480680108,0.922666013240814,0.385578900575638,-0.00477434135973454,-0.385578900575638,0.922662496566772,-0.00477550132200122,-0.385579228401184,0.922662377357483,-0.00189518858678639,-0.385589718818665,0.92266845703125,-0.00189445889554918,-0.385589748620987,0.92266833782196,0.00580378388985991,-0.92265772819519,-0.385576277971268,0.00580393802374601,-0.922657668590546,-0.38557642698288,0.000791982165537775,-0.922669887542725,-0.3855901658535,0.00079197104787454,-0.92266982793808,-0.385590195655823,0.00367583194747567,0.385583013296127,-0.922665894031525,
  447. 0.00168050767388195,0.38558366894722,-0.922671437263489,0.000725717400200665,0.385581851005554,-0.922673463821411,0.000204966316232458,0.385582357645035,-0.922673404216766,-0.00580412428826094,0.922659337520599,0.385572582483292,-0.00580406002700329,0.922659337520599,0.385572522878647,-0.000791978323832154,0.922670125961304,0.385589629411697,-0.000792101724073291,0.922670006752014,0.385589599609375,-0.00267602852545679,-0.38558241724968,0.922669529914856,-0.00267663598060608,-0.385582536458969,0.922669529914856,-0.00072557880776003,-0.385581642389297,0.922673463821411,-0.000203668867470697,-0.385582238435745,0.922673523426056,-0.0144616607576609,-0.922609806060791,-0.385463625192642,-0.0172088742256165,-0.922575235366821,-0.385433226823807,0.00634831748902798,-0.922641813755035,-0.385605901479721,0.00634840503334999,-0.922641634941101,-0.38560625910759,-0.000503961404319853,0.385590255260468,-0.922670006752014,-0.000504175608512014,0.385590255260468,-0.922670006752014,-0.00176416500471532,0.385581433773041,-0.922672212123871,-0.00176427734550089,0.385581314563751,-0.922672152519226,0.0172078646719456,0.922569394111633,0.385447263717651,0.0144611280411482,0.922604858875275,0.385475277900696,-0.00634830351918936,0.922643661499023,0.385601192712784,-0.00634831003844738,0.922643840312958,0.385600924491882,0.000506124924868345,-0.385590523481369,0.922669887542725,0.000504061579704285,-0.385590523481369,0.922669947147369,0.00176323112100363,-0.385581374168396,0.922672212123871,0.0017643766477704,-0.385581433773041,0.922672092914581,-0.0199541393667459,-0.922433316707611,-0.385640561580658,-0.0199532844126225,-0.922433316707611,-0.385640561580658,-0.0172088742256165,-0.922575235366821,-0.385433226823807,-0.0144616607576609,-0.922609806060791,-0.385463625192642,0.00818874407559633,0.385420501232147,-0.922704815864563,0.00818933825939894,0.38542041182518,-0.922704756259918,-0.000504175608512014,0.385590255260468,-0.922670006752014,-0.000503961404319853,0.385590255260468,-0.922670006752014,0.0199524685740471,0.922426581382751,0.385656833648682,
  448. 0.0199523027986288,0.922426640987396,0.385656893253326,0.0144611280411482,0.922604858875275,0.385475277900696,0.0172078646719456,0.922569394111633,0.385447263717651,-0.00818819459527731,-0.385419696569443,0.922705113887787,-0.00819091964513063,-0.385419636964798,0.922705054283142,0.000504061579704285,-0.385590523481369,0.922669947147369,0.000506124924868345,-0.385590523481369,0.922669887542725,0.00079197104787454,-0.92266982793808,-0.385590195655823,0.000791982165537775,-0.922669887542725,-0.3855901658535,0.00040842778980732,-0.922670960426331,-0.385588109493256,0.00040840357542038,-0.922670960426331,-0.385588109493256,0.000204966316232458,0.385582357645035,-0.922673404216766,0.000725717400200665,0.385581851005554,-0.922673463821411,0.00595066277310252,0.385576277971268,-0.922656893730164,0.00359822763130069,0.385580539703369,-0.922667145729065,-0.000792101724073291,0.922670006752014,0.385589599609375,-0.000791978323832154,0.922670125961304,0.385589629411697,-0.000408238847739995,0.922671556472778,0.385586768388748,-0.000408267136663198,0.922671496868134,0.385586738586426,-0.000203668867470697,-0.385582238435745,0.922673523426056,-0.00072557880776003,-0.385581642389297,0.922673463821411,-0.00477550132200122,-0.385579228401184,0.922662377357483,-0.00477434135973454,-0.385578900575638,0.922662496566772,0.00634840503334999,-0.922641634941101,-0.38560625910759,0.00634831748902798,-0.922641813755035,-0.385605901479721,0.00580393802374601,-0.922657668590546,-0.38557642698288,0.00580378388985991,-0.92265772819519,-0.385576277971268,-0.00176427734550089,0.385581314563751,-0.922672152519226,-0.00176416500471532,0.385581433773041,-0.922672212123871,0.00168050767388195,0.38558366894722,-0.922671437263489,0.00367583194747567,0.385583013296127,-0.922665894031525,-0.00634831003844738,0.922643840312958,0.385600924491882,-0.00634830351918936,0.922643661499023,0.385601192712784,-0.00580406002700329,0.922659337520599,0.385572522878647,-0.00580412428826094,0.922659337520599,0.385572582483292,0.0017643766477704,-0.385581433773041,0.922672092914581,
  449. 0.00176323112100363,-0.385581374168396,0.922672212123871,-0.00267663598060608,-0.385582536458969,0.922669529914856,-0.00267602852545679,-0.38558241724968,0.922669529914856,0.00477744219824672,0.922658741474152,0.385588079690933,0.00477751204743981,0.922658622264862,0.38558828830719,0.0256032049655914,0.922416388988495,0.385347247123718,0.0256031733006239,0.922416388988495,0.385347217321396,-0.00477758469060063,-0.922661066055298,-0.385582596063614,-0.004777442663908,-0.922661066055298,-0.38558241724968,-0.0256022308021784,-0.922426104545593,-0.385324209928513,-0.0256030615419149,-0.922426044940948,-0.38532418012619,-0.00189584586769342,-0.385573923587799,0.922674953937531,-0.00189600035082549,-0.385573834180832,0.922675013542175,0.00451030768454075,-0.385686039924622,0.922619044780731,0.00451059360057116,-0.385686039924622,0.922619104385376,0.00189528428018093,0.38557580113411,-0.922674298286438,0.00189595285337418,0.385575830936432,-0.922674238681793,-0.00450869044288993,0.385687410831451,-0.922618627548218,-0.00450907368212938,0.385687351226807,-0.922618567943573,0,0.925966382026672,0.377605944871902,0,0.925966799259186,0.377604901790619,0,0.925967216491699,0.377603888511658,0,0.925966799259186,0.377604901790619,-1.19899573292059e-006,-0.925644040107727,-0.37839537858963,-1.19899641504162e-006,-0.92564457654953,-0.378394365310669,-1.19899675610213e-006,-0.925644934177399,-0.378393292427063,-1.19899641504162e-006,-0.92564457654953,-0.378394365310669,-0.000482824863865972,-0.92267233133316,-0.385584771633148,-0.000482842151541263,-0.922672271728516,-0.385584771633148,-0.004777442663908,-0.922661066055298,-0.38558241724968,-0.00477758469060063,-0.922661066055298,-0.385582596063614,-0.00359864812344313,-0.385580480098724,0.922667264938354,-0.00595109025016427,-0.385576099157333,0.922656893730164,-0.00189600035082549,-0.385573834180832,0.922675013542175,-0.00189584586769342,-0.385573923587799,0.922674953937531,0.000482855073641986,0.922671794891357,0.385585814714432,0.000483085575979203,0.922671794891357,0.385585814714432,
  450. 0.00477751204743981,0.922658622264862,0.38558828830719,0.00477744219824672,0.922658741474152,0.385588079690933,0.00477429898455739,0.385579824447632,-0.922662198543549,0.00477502448484302,0.385579466819763,-0.922662258148193,0.00189595285337418,0.385575830936432,-0.922674238681793,0.00189528428018093,0.38557580113411,-0.922674298286438,-0.0068648811429739,-0.922648727893829,-0.385580539703369,-0.00686517264693975,-0.922648727893829,-0.385580360889435,-0.000936402124352753,-0.922672271728516,-0.385583966970444,-0.000936341821216047,-0.922672212123871,-0.385583937168121,-0.0036757024936378,-0.38557830452919,0.922667860984802,-0.00167996343225241,-0.385582029819489,0.922672152519226,-0.000725457153748721,-0.385584264993668,0.92267233133316,-0.00020451593445614,-0.385583817958832,0.922672808170319,0.00686499616131186,0.922646403312683,0.385586053133011,0.00686543295159936,0.922646403312683,0.3855861723423,0.000936374650336802,0.922672092914581,0.385584682226181,0.000936454220209271,0.922671973705292,0.385584563016891,0.0026766846422106,0.385580807924271,-0.922670304775238,0.00267765996977687,0.385580658912659,-0.922670304775238,0.000725556223187596,0.385584264993668,-0.922672390937805,0.000204333598958328,0.385583758354187,-0.922672927379608,0.0171060264110565,-0.9224973320961,-0.38562422990799,0.0203559603542089,-0.922434747219086,-0.385616362094879,-0.00750902108848095,-0.922661662101746,-0.385537475347519,-0.00750914681702852,-0.922661900520325,-0.385536968708038,0.000505045522004366,-0.385576218366623,0.922675848007202,0.000506354495882988,-0.385576188564301,0.922675907611847,0.00176381226629019,-0.385585427284241,0.922670483589172,0.00176395254675299,-0.385585457086563,0.922670483589172,-0.0203558597713709,0.922441601753235,0.385599881410599,-0.0171064659953117,0.922503173351288,0.385610461235046,0.00750959618017077,0.92265921831131,0.385543376207352,0.00750928837805986,0.922658979892731,0.385543823242188,-0.000506084819789976,0.385576367378235,-0.922675788402557,-0.000504862458910793,0.38557642698288,-0.922675788402557,
  451. -0.00176306418143213,0.38558554649353,-0.922670483589172,-0.00176448421552777,0.385585397481918,-0.922670543193817,0.0236032493412495,-0.922479808330536,-0.385323017835617,0.0236035957932472,-0.922479808330536,-0.385323017835617,0.0203559603542089,-0.922434747219086,-0.385616362094879,0.0171060264110565,-0.9224973320961,-0.38562422990799,-0.00818787049502134,-0.385749846696854,0.922567129135132,-0.00818572752177715,-0.385749757289886,0.922567129135132,0.000506354495882988,-0.385576188564301,0.922675907611847,0.000505045522004366,-0.385576218366623,0.922675848007202,-0.023603830486536,0.92248797416687,0.385303676128387,-0.0236027408391237,0.922488033771515,0.385303646326065,-0.0171064659953117,0.922503173351288,0.385610461235046,-0.0203558597713709,0.922441601753235,0.385599881410599,0.00818697363138199,0.38575068116188,-0.922566711902618,0.00818748865276575,0.38575080037117,-0.922566771507263,-0.000504862458910793,0.38557642698288,-0.922675788402557,-0.000506084819789976,0.385576367378235,-0.922675788402557,-0.000936341821216047,-0.922672212123871,-0.385583937168121,-0.000936402124352753,-0.922672271728516,-0.385583966970444,-0.000482842151541263,-0.922672271728516,-0.385584771633148,-0.000482824863865972,-0.92267233133316,-0.385584771633148,-0.00020451593445614,-0.385583817958832,0.922672808170319,-0.000725457153748721,-0.385584264993668,0.92267233133316,-0.00595109025016427,-0.385576099157333,0.922656893730164,-0.00359864812344313,-0.385580480098724,0.922667264938354,0.000936454220209271,0.922671973705292,0.385584563016891,0.000936374650336802,0.922672092914581,0.385584682226181,0.000483085575979203,0.922671794891357,0.385585814714432,0.000482855073641986,0.922671794891357,0.385585814714432,0.000204333598958328,0.385583758354187,-0.922672927379608,0.000725556223187596,0.385584264993668,-0.922672390937805,0.00477502448484302,0.385579466819763,-0.922662258148193,0.00477429898455739,0.385579824447632,-0.922662198543549,-0.00750914681702852,-0.922661900520325,-0.385536968708038,-0.00750902108848095,-0.922661662101746,-0.385537475347519,
  452. -0.00686517264693975,-0.922648727893829,-0.385580360889435,-0.0068648811429739,-0.922648727893829,-0.385580539703369,0.00176395254675299,-0.385585457086563,0.922670483589172,0.00176381226629019,-0.385585427284241,0.922670483589172,-0.00167996343225241,-0.385582029819489,0.922672152519226,-0.0036757024936378,-0.38557830452919,0.922667860984802,0.00750928837805986,0.922658979892731,0.385543823242188,0.00750959618017077,0.92265921831131,0.385543376207352,0.00686543295159936,0.922646403312683,0.3855861723423,0.00686499616131186,0.922646403312683,0.385586053133011,-0.00176448421552777,0.385585397481918,-0.922670543193817,-0.00176306418143213,0.38558554649353,-0.922670483589172,0.00267765996977687,0.385580658912659,-0.922670304775238,0.0026766846422106,0.385580807924271,-0.922670304775238,-0.999995231628418,-0.0030888335313648,-1.90379580544686e-006,-0.999995231628418,-0.00311273871921003,-1.91852973330242e-006,-0.999998807907104,-0.00157036341261119,7.12484779796796e-006,-0.999998867511749,-0.00155747635290027,7.15528813088895e-006,0.00121630821377039,4.66252022306435e-005,-0.999999284744263,0.00121671287342906,-7.14008274371736e-005,-0.999999284744263,0.00013926591782365,0.0218005571514368,-0.999762415885925,0.00058299588272348,0.0108828665688634,-0.999940693378448,0.999994814395905,0.00322485785000026,-2.05217907023325e-006,0.999994993209839,0.00317576131783426,-2.02093588086427e-006,0.99999874830246,0.00161299714818597,-1.12806546894717e-005,0.99999874830246,0.00163738103583455,-1.1289375834167e-005,-0.00107976945582777,4.17319279222284e-005,0.999999463558197,-0.00107941182795912,-7.57503876229748e-005,0.999999463558197,-0.000443170079961419,-0.0108967302367091,0.999940633773804,-8.61313310451806e-007,-0.0218035392463207,0.999762296676636,-1,-2.49240116545479e-007,1.07054765052794e-008,-1,2.23441915636613e-007,-9.4773220382649e-009,-1,-1.94846961676376e-007,5.61887425476471e-008,-1,-5.12536735186586e-006,1.47802120409324e-006,-0.00104455731343478,0.0331405475735664,-0.999450147151947,-0.000981849734671414,0.0335202626883984,-0.999437570571899,
  453. 0.00719648413360119,0.0315952599048615,-0.999474823474884,0.00719407200813293,0.0315866395831108,-0.999475181102753,1,-5.42674388270825e-006,-8.72231531445777e-009,1,-1.36045264298446e-005,-3.42803865294172e-008,1,-2.18280765693635e-005,-6.45999170956202e-006,1,-1.94560016097967e-005,-5.75798003410455e-006,0.00255049229599535,-0.0328632742166519,0.999456703662872,0.00252448837272823,-0.0328294523060322,0.999457776546478,0.00695344666019082,-0.0316880084574223,0.999473631381989,0.00695510441437364,-0.0316941663622856,0.999473452568054,3.83265251133191e-012,5.71298114664387e-005,1,-3.58863893462624e-012,-5.34925275132991e-005,1,-0.000133447407279164,-0.0127323316410184,0.99991899728775,-0.00018923323659692,-0.0254838522523642,0.999675273895264,-1,0,-0,-1,0,-0,-1,-2.59191409668347e-007,2.53999288268858e-009,-1,9.73151603744782e-009,-9.48824144253457e-011,-9.21692870680182e-014,3.67513493984006e-005,-1,1.99529249459568e-013,-7.95597879914567e-005,-1,0.000467824749648571,0.0255448035895824,-0.999673664569855,0.000330040144035593,0.0127516565844417,-0.999918699264526,1,0,-0,1,8.17895681848313e-007,-5.07793029846937e-010,1,2.52248037213576e-006,-3.14991446259683e-008,1,2.41455580862748e-007,-3.03161740156099e-009,0.000509710458572954,-0.0397386066615582,0.999210059642792,0.000437912123743445,-0.0390111394226551,0.999238729476929,0.0125439306721091,-0.0357288755476475,0.999282777309418,0.0125201689079404,-0.0356684699654579,0.999285221099854,-1,-1.14023498554161e-006,4.43678160877425e-008,-1,9.21686660149135e-006,-3.59799031457442e-007,-1,2.92877721221885e-005,-7.91837646829663e-006,-1,1.33990997710498e-005,-3.62264245268307e-006,0.00164231983944774,0.0389226749539375,-0.999240875244141,0.00169695517979562,0.0394776873290539,-0.999219059944153,0.0124285975471139,0.0358287580311298,-0.999280691146851,0.0124310292303562,0.0358350053429604,-0.999280452728271,1,1.91657618415775e-005,-3.58465399585839e-007,1,-4.50472252850886e-005,8.50809669827868e-007,1,2.86757367575774e-005,7.4997124102083e-006,1,0.0001825925137382,4.77543653687462e-005,
  454. 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.00403897045180202,0.922666013240814,0.38557893037796,-0.00403907336294651,0.922666013240814,0.385578870773315,-0.0216463133692741,0.922415018081665,0.385593056678772,-0.0216460805386305,0.922415018081665,0.385593116283417,0.00403885310515761,-0.922664642333984,-0.385582119226456,0.0040388535708189,-0.922664701938629,-0.385582268238068,0.0216453094035387,-0.922408044338226,-0.385609805583954,0.0216454435139894,-0.922408044338226,-0.385609805583954,0.0018949432997033,0.385589957237244,-0.922668278217316,0.00189490965567529,0.385590016841888,-0.92266833782196,-0.00451222201809287,0.385489463806152,-0.922701179981232,-0.0045118285343051,0.385489493608475,-0.922701239585876,-0.00189493200741708,-0.385589748620987,0.92266833782196,-0.00189577578566968,-0.385589718818665,0.922668397426605,0.00450919149443507,-0.385489195585251,0.922701418399811,0.00451014703139663,-0.385489106178284,0.922701418399811,-0,0.9198357462883,0.392303645610809,-0,0.919835209846497,0.39230489730835,-0,0.919834673404694,0.392306178808212,-0,0.919835209846497,0.39230489730835,-3.52459295527296e-007,-0.920116007328033,-0.391645878553391,-3.52459181840459e-007,-0.920115768909454,-0.391646653413773,-3.52459068153621e-007,-0.920115411281586,-0.391647338867188,-3.52459181840459e-007,-0.920115768909454,-0.391646653413773,0.000408479245379567,-0.922670960426331,-0.385588109493256,0.000408427382353693,-0.922670960426331,-0.385588109493256,0.0040388535708189,-0.922664701938629,-0.385582268238068,0.00403885310515761,-0.922664642333984,-0.385582119226456,0.00359821878373623,0.385580599308014,-0.922667145729065,0.00595097802579403,0.385576248168945,-0.922656774520874,0.00189490965567529,0.385590016841888,-0.92266833782196,0.0018949432997033,0.385589957237244,-0.922668278217316,-0.000408267136663198,0.922671496868134,0.385586738586426,-0.00040831754449755,0.922671496868134,0.385586768388748,-0.00403907336294651,0.922666013240814,0.385578870773315,-0.00403897045180202,0.922666013240814,0.38557893037796,-0.00477456906810403,-0.385578900575638,0.922662496566772,
  455. -0.00477548409253359,-0.385579258203506,0.922662377357483,-0.00189577578566968,-0.385589718818665,0.922668397426605,-0.00189493200741708,-0.385589748620987,0.92266833782196,0.00580359436571598,-0.92265772819519,-0.385576248168945,0.0058039384894073,-0.92265772819519,-0.38557642698288,0.000792173843365163,-0.922669887542725,-0.3855901658535,0.00079235527664423,-0.922669768333435,-0.3855901658535,0.00367617909796536,0.385583013296127,-0.922665894031525,0.00168063386809081,0.38558366894722,-0.922671437263489,0.00072539207758382,0.385581851005554,-0.922673463821411,0.000204766649403609,0.385582357645035,-0.922673404216766,-0.00580412475392222,0.922659277915955,0.385572642087936,-0.00580400181934237,0.922659337520599,0.385572493076324,-0.000792164413724095,0.922670125961304,0.385589629411697,-0.000792195030953735,0.922670066356659,0.385589629411697,-0.0026760280597955,-0.38558241724968,0.922669529914856,-0.00267682177945971,-0.385582506656647,0.922669529914856,-0.000725500751286745,-0.385581642389297,0.922673463821411,-0.000203917326871306,-0.385582327842712,0.922673523426056,-0.0144614307209849,-0.922609686851501,-0.385463505983353,-0.0172086469829082,-0.922575235366821,-0.385433286428452,0.00634801015257835,-0.922641754150391,-0.385605841875076,0.00634779268875718,-0.922641634941101,-0.385606229305267,-0.000503861752804369,0.385590404272079,-0.922670006752014,-0.000504722353070974,0.385590434074402,-0.922669947147369,-0.00176417839247733,0.385581463575363,-0.922672092914581,-0.00176430551800877,0.385581463575363,-0.922672152519226,0.0172076374292374,0.922569334506989,0.385447442531586,0.0144609017297626,0.922604739665985,0.385475426912308,-0.00634830258786678,0.922643661499023,0.385601311922073,-0.00634830910712481,0.922643780708313,0.385601013898849,0.000505934469401836,-0.385590463876724,0.922669887542725,0.000504794996231794,-0.385590523481369,0.922669947147369,0.00176269211806357,-0.385581314563751,0.922672212123871,0.00176428712438792,-0.385581403970718,0.922672152519226,-0.0199537966400385,-0.922433257102966,-0.385640650987625,
  456. -0.0199532862752676,-0.922433316707611,-0.385640680789948,-0.0172086469829082,-0.922575235366821,-0.385433286428452,-0.0144614307209849,-0.922609686851501,-0.385463505983353,0.0081909466534853,0.385420501232147,-0.922704696655273,0.00818989239633083,0.385420501232147,-0.922704696655273,-0.000504722353070974,0.385590434074402,-0.922669947147369,-0.000503861752804369,0.385590404272079,-0.922670006752014,0.0199524685740471,0.922426581382751,0.385657012462616,0.0199519619345665,0.922426462173462,0.385656952857971,0.0144609017297626,0.922604739665985,0.385475426912308,0.0172076374292374,0.922569334506989,0.385447442531586,-0.00818655081093311,-0.385419875383377,0.922704994678497,-0.00818652845919132,-0.385419934988022,0.922705054283142,0.000504794996231794,-0.385590523481369,0.922669947147369,0.000505934469401836,-0.385590463876724,0.922669887542725,0.00079235527664423,-0.922669768333435,-0.3855901658535,0.000792173843365163,-0.922669887542725,-0.3855901658535,0.000408427382353693,-0.922670960426331,-0.385588109493256,0.000408479245379567,-0.922670960426331,-0.385588109493256,0.000204766649403609,0.385582357645035,-0.922673404216766,0.00072539207758382,0.385581851005554,-0.922673463821411,0.00595097802579403,0.385576248168945,-0.922656774520874,0.00359821878373623,0.385580599308014,-0.922667145729065,-0.000792195030953735,0.922670066356659,0.385589629411697,-0.000792164413724095,0.922670125961304,0.385589629411697,-0.00040831754449755,0.922671496868134,0.385586768388748,-0.000408267136663198,0.922671496868134,0.385586738586426,-0.000203917326871306,-0.385582327842712,0.922673523426056,-0.000725500751286745,-0.385581642389297,0.922673463821411,-0.00477548409253359,-0.385579258203506,0.922662377357483,-0.00477456906810403,-0.385578900575638,0.922662496566772,0.00634779268875718,-0.922641634941101,-0.385606229305267,0.00634801015257835,-0.922641754150391,-0.385605841875076,0.0058039384894073,-0.92265772819519,-0.38557642698288,0.00580359436571598,-0.92265772819519,-0.385576248168945,-0.00176430551800877,0.385581463575363,-0.922672152519226,
  457. -0.00176417839247733,0.385581463575363,-0.922672092914581,0.00168063386809081,0.38558366894722,-0.922671437263489,0.00367617909796536,0.385583013296127,-0.922665894031525,-0.00634830910712481,0.922643780708313,0.385601013898849,-0.00634830258786678,0.922643661499023,0.385601311922073,-0.00580400181934237,0.922659337520599,0.385572493076324,-0.00580412475392222,0.922659277915955,0.385572642087936,0.00176428712438792,-0.385581403970718,0.922672152519226,0.00176269211806357,-0.385581314563751,0.922672212123871,-0.00267682177945971,-0.385582506656647,0.922669529914856,-0.0026760280597955,-0.38558241724968,0.922669529914856,0.99999874830246,0.00163738103583455,-1.1289375834167e-005,0.99999874830246,0.00161299714818597,-1.12806546894717e-005,1,-1.36045264298446e-005,-3.42803865294172e-008,1,-5.42674388270825e-006,-8.72231531445777e-009,-8.61313310451806e-007,-0.0218035392463207,0.999762296676636,-0.000443170079961419,-0.0108967302367091,0.999940633773804,0.00252448837272823,-0.0328294523060322,0.999457776546478,0.00255049229599535,-0.0328632742166519,0.999456703662872,-0.999998867511749,-0.00155747635290027,7.15528813088895e-006,-0.999998807907104,-0.00157036341261119,7.12484779796796e-006,-1,2.23441915636613e-007,-9.4773220382649e-009,-1,-2.49240116545479e-007,1.07054765052794e-008,0.00058299588272348,0.0108828665688634,-0.999940693378448,0.00013926591782365,0.0218005571514368,-0.999762415885925,-0.000981849734671414,0.0335202626883984,-0.999437570571899,-0.00104455731343478,0.0331405475735664,-0.999450147151947,1,2.41455580862748e-007,-3.03161740156099e-009,1,2.52248037213576e-006,-3.14991446259683e-008,1,-4.50472252850886e-005,8.50809669827868e-007,1,1.91657618415775e-005,-3.58465399585839e-007,-0.00018923323659692,-0.0254838522523642,0.999675273895264,-0.000133447407279164,-0.0127323316410184,0.99991899728775,0.000437912123743445,-0.0390111394226551,0.999238729476929,0.000509710458572954,-0.0397386066615582,0.999210059642792,-1,9.73151603744782e-009,-9.48824144253457e-011,-1,-2.59191409668347e-007,2.53999288268858e-009,
  458. -1,9.21686660149135e-006,-3.59799031457442e-007,-1,-1.14023498554161e-006,4.43678160877425e-008,0.000330040144035593,0.0127516565844417,-0.999918699264526,0.000467824749648571,0.0255448035895824,-0.999673664569855,0.00169695517979562,0.0394776873290539,-0.999219059944153,0.00164231983944774,0.0389226749539375,-0.999240875244141
  459. }
  460. BinormalsW: *1726 {
  461. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  462. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  463. }
  464. }
  465. LayerElementTangent: 0 {
  466. Version: 102
  467. Name: "map1"
  468. MappingInformationType: "ByPolygonVertex"
  469. ReferenceInformationType: "Direct"
  470. Tangents: *5178 {
  471. a: 0.000752189778722823,-0.0122297583147883,-0.999924898147583,0.000755514891352504,-0.0155234662815928,-0.999879240989685,0.000737812020815909,-0.00900491885840893,-0.999959170818329,0.000737470109015703,-0.00898591242730618,-0.999959349632263,-0.000510569487232715,-0.0212086364626884,-0.999774873256683,-0.000513936509378254,-0.0108670815825462,-0.999940752983093,-0.000720610260032117,-0.000548544048797339,-0.999999582767487,-0.00071969791315496,-0.000599374936427921,-0.999999642372131,-0.000670891779009253,-0.0176253858953714,-0.999844551086426,-0.00133425882086158,-0.0176445990800858,-0.999843537807465,-0.00137496821116656,-0.00350503739900887,-0.999992907047272,-0.000971794361248612,-0.00349714187905192,-0.999993443489075,0.000312571995891631,-0.0164443831890821,-0.999864816665649,0.000871876545716077,-0.0164511799812317,-0.999864339828491,0.000291811011265963,-0.00498279789462686,-0.999987542629242,-0.00011586825712584,-0.00499078212305903,-0.999987602233887,0.00067429180489853,-0.0187407210469246,-0.999824166297913,0.000674352922942489,-0.0187332984060049,-0.999824285507202,0.000755514891352504,-0.0155234662815928,-0.999879240989685,0.000752189778722823,-0.0122297583147883,-0.999924898147583,0.00185964768752456,-0.0222014673054218,-0.999751806259155,0.0027090476360172,-0.0222097039222717,-0.999749660491943,0.000871876545716077,-0.0164511799812317,-0.999864339828491,0.000312571995891631,-0.0164443831890821,-0.999864816665649,-0.000693245208822191,-0.0314307436347008,-0.999505698680878,-0.000693439156748354,-0.0314516648650169,-0.999505043029785,-0.000513936509378254,-0.0108670815825462,-0.999940752983093,-0.000510569487232715,-0.0212086364626884,-0.999774873256683,-0.00170588528271765,-0.0266645066440105,-0.999643087387085,-0.00278576300479472,-0.0266539193689823,-0.999640941619873,-0.00133425882086158,-0.0176445990800858,-0.999843537807465,-0.000670891779009253,-0.0176253858953714,-0.999844551086426,0.000649063964374363,-0.0121562611311674,-0.999925911426544,0.000644981861114502,-0.0121543221175671,-0.999925851821899,
  472. 0.000758426904212683,-0.0338986739516258,-0.999424993991852,0.00075838842894882,-0.0338960736989975,-0.999425053596497,-0.000719954201485962,-0.0100983893498778,-0.999948740005493,-0.000717052025720477,-0.0100976387038827,-0.999948740005493,-0.00061224662931636,-0.0297633185982704,-0.99955689907074,-0.000612208445090801,-0.0297658741474152,-0.999556720256805,0.000830259581562132,-0.0182316694408655,-0.999833464622498,0.00142546475399286,-0.0182350315153599,-0.999832689762115,0.00228577293455601,-0.031045975163579,-0.999515354633331,0.0022825482301414,-0.0310460291802883,-0.999515354633331,-0.000623502070084214,-0.0164068918675184,-0.999865174293518,-0.00155869475565851,-0.0164662506431341,-0.99986320734024,-0.00213836692273617,-0.0326136611402035,-0.999465763568878,-0.00213621812872589,-0.0326136201620102,-0.999465763568878,-0.00043477673898451,0.0143653517588973,-0.999896824359894,-0.000433016510214657,0.0143654085695744,-0.999896824359894,0.00142546475399286,-0.0182350315153599,-0.999832689762115,0.000830259581562132,-0.0182316694408655,-0.999833464622498,0.000377679010853171,0.0095896003767848,-0.999953985214233,0.000377787626348436,0.00958602968603373,-0.999953985214233,0.000644981861114502,-0.0121543221175671,-0.999925851821899,0.000649063964374363,-0.0121562611311674,-0.999925911426544,-0.000203302013687789,0.00698638847097754,-0.999975562095642,-0.000203960531507619,0.00698636705055833,-0.999975562095642,-0.00155869475565851,-0.0164662506431341,-0.99986320734024,-0.000623502070084214,-0.0164068918675184,-0.999865174293518,-0.000944569590501487,0.0095569072291255,-0.999953985214233,-0.000944911385886371,0.00956866983324289,-0.999953866004944,-0.000717052025720477,-0.0100976387038827,-0.999948740005493,-0.000719954201485962,-0.0100983893498778,-0.999948740005493,0.98738694190979,0.0925115421414375,0.128486081957817,0.978110194206238,-0.156084507703781,0.137615114450455,0.953319013118744,0.223356962203979,-0.203210756182671,0.990775585174561,-0.0645186603069305,-0.119168534874916,0.965869843959808,-0.238151490688324,-0.101879321038723,
  473. 0.942553699016571,0.114002570509911,-0.313999772071838,0.956166565418243,-0.155881866812706,0.247883751988411,0.99806809425354,0.0365985743701458,0.0502061806619167,0.99806809425354,0.0365985743701458,0.0502061806619167,0.956166565418243,-0.155881866812706,0.247883751988411,0.978110194206238,-0.156084507703781,0.137615114450455,0.98738694190979,0.0925115421414375,0.128486081957817,0.965869843959808,-0.238151490688324,-0.101879321038723,0.99806809425354,0.0365985743701458,0.0502061806619167,0.98738694190979,0.0925115421414375,0.128486081957817,0.990775585174561,-0.0645186603069305,-0.119168534874916,-0.000715874135494232,0.385475277900696,-0.922717928886414,0.00279568461701274,0.385478526353836,-0.922712564468384,-0.00198212033137679,0.398044526576996,-0.917364060878754,-0.00153278757352382,0.398097425699234,-0.917341887950897,0.00285266037099063,0.385478734970093,-0.922712326049805,-0.000656539341434836,0.38547557592392,-0.922717869281769,-0.00368683086708188,0.398092299699783,-0.917337954044342,-0.00306808506138623,0.398042500019073,-0.917361855506897,-0.000806297641247511,0.383260071277618,-0.923640131950378,-0.000806297641247511,0.383259922266006,-0.923640191555023,-0.00700256321579218,0.398818165063858,-0.917003333568573,-0.00707157189026475,0.404786109924316,-0.914384067058563,0.953319013118744,0.223356962203979,-0.203210756182671,0.942553699016571,0.114002570509911,-0.313999772071838,0.965869843959808,-0.238151490688324,-0.101879321038723,0.990775585174561,-0.0645186603069305,-0.119168534874916,-0.000185184719157405,0.404863595962524,-0.914377152919769,-0.000252055324381217,0.398875623941422,-0.917004942893982,-0.00662677315995097,0.383269011974335,-0.923613011837006,-0.00662677315995097,0.383269131183624,-0.923612952232361,-0.722412765026093,0.504999101161957,-0.472330033779144,-0.929753482341766,-0.207051932811737,0.304446965456009,-0.989596009254456,-0.141658708453178,0.0251512918621302,-0.982255041599274,-0.166142925620079,-0.0870148167014122,-0.708033442497253,-0.00290511711500585,0.706173002719879,-0.940742015838623,0.0905420333147049,-0.326813071966171,
  474. -0.990530848503113,-0.071873165667057,-0.116973653435707,-0.986386239528656,-0.157119989395142,-0.0485336929559708,-0.929753482341766,-0.207051932811737,0.304446965456009,-0.708033442497253,-0.00290511711500585,0.706173002719879,-0.986386239528656,-0.157119989395142,-0.0485336929559708,-0.989596009254456,-0.141658708453178,0.0251512918621302,-0.982255041599274,-0.166142925620079,-0.0870148167014122,-0.990530848503113,-0.071873165667057,-0.116973653435707,-0.940742015838623,0.0905420333147049,-0.326813071966171,-0.722412765026093,0.504999101161957,-0.472330033779144,-0.982255041599274,-0.166142925620079,-0.0870148167014122,-0.989596009254456,-0.141658708453178,0.0251512918621302,-0.986386239528656,-0.157119989395142,-0.0485336929559708,-0.990530848503113,-0.071873165667057,-0.116973653435707,-0.00306808506138623,0.398042500019073,-0.917361855506897,-0.00368683086708188,0.398092299699783,-0.917337954044342,0.00095497741131112,0.414042502641678,-0.910257041454315,-0.00346084195189178,0.414035379886627,-0.910254240036011,-0.00707157189026475,0.404786109924316,-0.914384067058563,-0.00700256321579218,0.398818165063858,-0.917003333568573,-0.0153382485732436,0.402338683605194,-0.915362417697906,-0.0153467701748014,0.414235234260559,-0.910040438175201,-0.00153278757352382,0.398097425699234,-0.917341887950897,-0.00198212033137679,0.398044526576996,-0.917364060878754,-0.0076629351824522,0.414025515317917,-0.910233020782471,-0.003252960043028,0.414040386676788,-0.910252749919891,0.00831182859838009,0.414346933364868,-0.910081028938293,0.00832287594676018,0.402410924434662,-0.915421307086945,-0.000252055324381217,0.398875623941422,-0.917004942893982,-0.000185184719157405,0.404863595962524,-0.914377152919769,0.996195495128632,-0.0183938816189766,0.0851827189326286,0.967364966869354,-0.216713413596153,0.131302788853645,0.941882312297821,0.144694715738297,-0.303185075521469,0.95219099521637,-0.20412477850914,-0.227300003170967,0.974004745483398,-0.206892237067223,-0.0922516733407974,0.912406325340271,0.102504499256611,-0.396241784095764,
  475. 0.913794875144959,-0.285519301891327,0.288890540599823,0.997893393039703,-0.0621558465063572,0.0185835976153612,0.997893393039703,-0.0621558465063572,0.0185835976153612,0.913794875144959,-0.285519301891327,0.288890540599823,0.967364966869354,-0.216713413596153,0.131302788853645,0.996195495128632,-0.0183938816189766,0.0851827189326286,0.974004745483398,-0.206892237067223,-0.0922516733407974,0.997893393039703,-0.0621558465063572,0.0185835976153612,0.996195495128632,-0.0183938816189766,0.0851827189326286,0.95219099521637,-0.20412477850914,-0.227300003170967,-0.00133709679357708,0.404330879449844,-0.91461181640625,-0.00060363276861608,0.404309898614883,-0.914621889591217,0.000912328483536839,0.41521891951561,-0.909721076488495,0.00037235050695017,0.415333181619644,-0.90966933965683,-0.00142006122041494,0.401982665061951,-0.915646255016327,0.000951169815380126,0.401913702487946,-0.915677070617676,-0.000642657920252532,0.415329605340958,-0.909670770168304,-0.00165265472605824,0.415270864963531,-0.909696340560913,-0.00714170513674617,0.394302248954773,-0.918953061103821,-0.00714602414518595,0.394162863492966,-0.919012844562531,-0.00304082315415144,0.410877227783203,-0.911685585975647,-0.00306851556524634,0.415332198143005,-0.909664750099182,0.941882312297821,0.144694715738297,-0.303185075521469,0.912406325340271,0.102504499256611,-0.396241784095764,0.974004745483398,-0.206892237067223,-0.0922516733407974,0.95219099521637,-0.20412477850914,-0.227300003170967,-0.00235519954003394,0.432575315237045,-0.901594758033752,-0.00157536426559091,0.428278833627701,-0.90364533662796,-0.0188990775495768,0.406231552362442,-0.913574695587158,-0.0188927929848433,0.406434178352356,-0.913484811782837,-0.767776370048523,0.44047412276268,-0.465297698974609,-0.930624723434448,-0.270013898611069,0.247042492032051,-0.970564067363739,-0.239845812320709,-0.0218936260789633,-0.979481279850006,-0.179106190800667,-0.0923986285924912,-0.860197961330414,-0.0831501260399818,0.503135561943054,-0.862821638584137,-0.0253512002527714,-0.504872560501099,-0.979589998722076,-0.146131455898285,-0.138017997145653,
  476. -0.971067547798157,-0.220542848110199,-0.091589979827404,-0.930624723434448,-0.270013898611069,0.247042492032051,-0.860197961330414,-0.0831501260399818,0.503135561943054,-0.971067547798157,-0.220542848110199,-0.091589979827404,-0.970564067363739,-0.239845812320709,-0.0218936260789633,-0.979481279850006,-0.179106190800667,-0.0923986285924912,-0.979589998722076,-0.146131455898285,-0.138017997145653,-0.862821638584137,-0.0253512002527714,-0.504872560501099,-0.767776370048523,0.44047412276268,-0.465297698974609,-0.979481279850006,-0.179106190800667,-0.0923986285924912,-0.970564067363739,-0.239845812320709,-0.0218936260789633,-0.971067547798157,-0.220542848110199,-0.091589979827404,-0.979589998722076,-0.146131455898285,-0.138017997145653,-0.00165265472605824,0.415270864963531,-0.909696340560913,-0.000642657920252532,0.415329605340958,-0.909670770168304,0.000302261614706367,0.440289735794067,-0.897855818271637,0.000213871069718152,0.440286606550217,-0.897857248783112,-0.00306851556524634,0.415332198143005,-0.909664750099182,-0.00304082315415144,0.410877227783203,-0.911685585975647,0.00341215613298118,0.418612241744995,-0.908158659934998,0.00309239001944661,0.427283316850662,-0.904112577438354,0.00037235050695017,0.415333181619644,-0.90966933965683,0.000912328483536839,0.41521891951561,-0.909721076488495,0.00140736089088023,0.43592894077301,-0.899980008602142,0.00149458693340421,0.435931980609894,-0.899978399276733,0.0280952136963606,0.449542373418808,-0.892817139625549,0.028415996581316,0.441297858953476,-0.896910667419434,-0.00157536426559091,0.428278833627701,-0.90364533662796,-0.00235519954003394,0.432575315237045,-0.901594758033752,0.988441348075867,0.0550837591290474,0.141242459416389,0.968131184577942,-0.185187503695488,0.168604999780655,0.895323574542999,0.189448028802872,-0.403119295835495,0.997246086597443,0.0740749761462212,-0.00364087778143585,0.985196888446808,0.167779758572578,-0.035170067101717,0.951829135417938,0.00120056373998523,-0.306626498699188,0.925886154174805,-0.21154211461544,0.313025057315826,0.998448193073273,-0.0190315637737513,0.05233483761549,
  477. 0.998448193073273,-0.0190315637737513,0.05233483761549,0.925886154174805,-0.21154211461544,0.313025057315826,0.968131184577942,-0.185187503695488,0.168604999780655,0.988441348075867,0.0550837591290474,0.141242459416389,0.985196888446808,0.167779758572578,-0.035170067101717,0.998448193073273,-0.0190315637737513,0.05233483761549,0.988441348075867,0.0550837591290474,0.141242459416389,0.997246086597443,0.0740749761462212,-0.00364087778143585,0.00530475098639727,0.419167280197144,-0.907893538475037,0.00530343176797032,0.419167280197144,-0.907893538475037,0.00386685924604535,0.420382112264633,-0.907338917255402,0.00355226895771921,0.420354515314102,-0.907353043556213,-0.00114660384133458,0.419163465499878,-0.907910048961639,-0.00114897801540792,0.419163465499878,-0.907910048961639,-0.00171318696811795,0.420155346393585,-0.907450675964355,-0.0014026565477252,0.420185506343842,-0.907437145709991,0.00674216309562325,0.416571319103241,-0.909078061580658,0.00674216262996197,0.416570961475372,-0.909078240394592,-0.00112180365249515,0.408222228288651,-0.912881851196289,-0.00127670739311725,0.414091140031815,-0.91023463010788,0.895323574542999,0.189448028802872,-0.403119295835495,0.951829135417938,0.00120056373998523,-0.306626498699188,0.985196888446808,0.167779758572578,-0.035170067101717,0.997246086597443,0.0740749761462212,-0.00364087778143585,-0.00162888364866376,0.423564910888672,-0.905864238739014,-0.00212476262822747,0.428005129098892,-0.903773844242096,0.00670324079692364,0.416505098342896,-0.909108638763428,0.00670324126258492,0.416755557060242,-0.908993899822235,-0.797693967819214,0.349641740322113,-0.49136033654213,-0.914637088775635,-0.332935303449631,0.229331940412521,-0.958156108856201,-0.282880634069443,-0.0437658280134201,-0.952627956867218,-0.270902961492538,-0.138244494795799,-0.863138377666473,-0.164892584085464,0.477286726236343,-0.855309367179871,-0.0727407336235046,-0.51298600435257,-0.964869976043701,-0.202065080404282,-0.167915791273117,-0.92941153049469,-0.337662994861603,-0.148922711610794,-0.914637088775635,-0.332935303449631,0.229331940412521,
  478. -0.863138377666473,-0.164892584085464,0.477286726236343,-0.92941153049469,-0.337662994861603,-0.148922711610794,-0.958156108856201,-0.282880634069443,-0.0437658280134201,-0.952627956867218,-0.270902961492538,-0.138244494795799,-0.964869976043701,-0.202065080404282,-0.167915791273117,-0.855309367179871,-0.0727407336235046,-0.51298600435257,-0.797693967819214,0.349641740322113,-0.49136033654213,-0.952627956867218,-0.270902961492538,-0.138244494795799,-0.958156108856201,-0.282880634069443,-0.0437658280134201,-0.92941153049469,-0.337662994861603,-0.148922711610794,-0.964869976043701,-0.202065080404282,-0.167915791273117,0.979082465171814,-0.201971560716629,-0.0245946459472179,0.972526848316193,-0.098668247461319,0.210846245288849,0.970601558685303,-0.174101516604424,0.166196629405022,0.992109417915344,-0.1163579672575,-0.0466885939240456,0.992109417915344,-0.1163579672575,-0.0466885939240456,0.970601558685303,-0.174101516604424,0.166196629405022,0.908396065235138,0.0693975314497948,-0.412311345338821,0.996691524982452,-0.0143358781933784,-0.0800031423568726,0.996691524982452,-0.0143358781933784,-0.0800031423568726,0.996418833732605,0.0112536959350109,-0.0838017240166664,0.979082465171814,-0.201971560716629,-0.0245946459472179,0.992109417915344,-0.1163579672575,-0.0466885939240456,0.993649244308472,-0.0697245895862579,-0.0883152112364769,0.947743594646454,0.272894293069839,-0.165259554982185,0.915887176990509,0.0808578282594681,-0.393208175897598,0.99648517370224,-0.0746207609772682,-0.0380645766854286,0.995016396045685,0.0447016209363937,0.0891295969486237,0.92872565984726,-0.218453913927078,0.299577236175537,0.947743594646454,0.272894293069839,-0.165259554982185,0.993649244308472,-0.0697245895862579,-0.0883152112364769,0.99648517370224,-0.0746207609772682,-0.0380645766854286,0.915887176990509,0.0808578282594681,-0.393208175897598,0.861207365989685,-0.2165796905756,0.459799081087112,0.994942009449005,0.0835570469498634,0.0557554177939892,0.995016396045685,0.0447016209363937,0.0891295969486237,0.993649244308472,-0.0697245895862579,-0.0883152112364769,
  479. 0.99648517370224,-0.0746207609772682,-0.0380645766854286,0.994942009449005,0.0835570469498634,0.0557554177939892,0.972860872745514,-0.00408321944996715,0.231354981660843,0.975727438926697,-0.0919621214270592,0.198743358254433,0.937705516815186,0.205324083566666,-0.280268460512161,0.993736386299133,0.084307849407196,-0.0733500272035599,0.999199986457825,0.0399869829416275,0.000732962798792869,0.99965626001358,0.0238218270242214,-0.0109477788209915,0.999199986457825,0.0399869829416275,0.000732962798792869,0.993736386299133,0.084307849407196,-0.0733500272035599,0.920865833759308,0.359831035137177,-0.150092199444771,0.998646199703217,0.05132045596838,0.00848609674721956,0.920865833759308,0.359831035137177,-0.150092199444771,0.968847811222076,0.0479232631623745,-0.242976054549217,0.936719059944153,-0.171413704752922,0.305245250463486,0.986310303211212,-0.0402097776532173,0.159921929240227,0.999188125133514,-0.00100940000265837,0.0402759201824665,0.998646199703217,0.05132045596838,0.00848609674721956,0.986310303211212,-0.0402097776532173,0.159921929240227,0.936719059944153,-0.171413704752922,0.305245250463486,0.975727438926697,-0.0919621214270592,0.198743358254433,0.972860872745514,-0.00408321944996715,0.231354981660843,0.99965626001358,0.0238218270242214,-0.0109477788209915,0.999188125133514,-0.00100940000265837,0.0402759201824665,0.986310303211212,-0.0402097776532173,0.159921929240227,0.972860872745514,-0.00408321944996715,0.231354981660843,0.998646199703217,0.05132045596838,0.00848609674721956,0.999188125133514,-0.00100940000265837,0.0402759201824665,0.99965626001358,0.0238218270242214,-0.0109477788209915,0.999199986457825,0.0399869829416275,0.000732962798792869,-0.0128309968858957,0.427549779415131,-0.903900742530823,-0.0128310788422823,0.427592515945435,-0.903880536556244,-0.00984970945864916,0.412358909845352,-0.910968244075775,-0.00999536365270615,0.407210260629654,-0.913279831409454,-0.0100282840430737,0.425485968589783,-0.904909491539001,-0.0101097878068686,0.425485491752625,-0.904908776283264,-0.0044805658981204,0.420189887285233,-0.907425105571747,
  480. -0.00754277175292373,0.420373439788818,-0.907319843769073,-0.00149536866229028,0.426433026790619,-0.904517889022827,-0.00134122709278017,0.42643329501152,-0.904518008232117,-0.000803676317445934,0.420194029808044,-0.907434046268463,-0.000612307223491371,0.420092225074768,-0.90748131275177,0.861207365989685,-0.2165796905756,0.459799081087112,0.92872565984726,-0.218453913927078,0.299577236175537,0.995016396045685,0.0447016209363937,0.0891295969486237,0.861207365989685,-0.2165796905756,0.459799081087112,0.995016396045685,0.0447016209363937,0.0891295969486237,0.994942009449005,0.0835570469498634,0.0557554177939892,0.00554790487512946,0.437773734331131,-0.899068057537079,0.00523023772984743,0.434867441654205,-0.900479376316071,-0.00351786776445806,0.409842997789383,-0.912149310112,-0.00311863818205893,0.413526624441147,-0.91048663854599,0.0064452919177711,0.426572680473328,-0.904430449008942,0.00696331541985273,0.426526993513107,-0.90444815158844,0.0147214438766241,0.416308492422104,-0.909104287624359,0.0143201472237706,0.416405022144318,-0.909066498279572,0.938899874687195,-0.018426226451993,-0.34369683265686,0.972526848316193,-0.098668247461319,0.210846245288849,0.979082465171814,-0.201971560716629,-0.0245946459472179,0.996418833732605,0.0112536959350109,-0.0838017240166664,0.908396065235138,0.0693975314497948,-0.412311345338821,0.938899874687195,-0.018426226451993,-0.34369683265686,0.996418833732605,0.0112536959350109,-0.0838017240166664,0.996691524982452,-0.0143358781933784,-0.0800031423568726,0.00457211118191481,0.405035376548767,-0.914289593696594,0.00433470448479056,0.405020773410797,-0.914297223091125,-0.000422247598180547,0.415101677179337,-0.909774899482727,-0.00481477240100503,0.4151731133461,-0.909729659557343,-0.00605691224336624,0.404362201690674,-0.914578855037689,0.000909016816876829,0.404810637235641,-0.914400160312653,-0.00232863798737526,0.415310114622116,-0.909676790237427,-0.00213568308390677,0.41500398516655,-0.909817159175873,-0.00187951885163784,0.395610868930817,-0.918416321277618,-0.00188266963232309,0.395653635263443,-0.918397903442383,
  481. 7.94333900557831e-005,0.414968818426132,-0.909835517406464,-0.000198633264517412,0.418691754341125,-0.908128380775452,0.937705516815186,0.205324083566666,-0.280268460512161,0.968847811222076,0.0479232631623745,-0.242976054549217,0.920865833759308,0.359831035137177,-0.150092199444771,0.993736386299133,0.084307849407196,-0.0733500272035599,-0.00943692028522491,0.425099045038223,-0.905097603797913,-0.009581308811903,0.427513927221298,-0.903958022594452,-0.0169705078005791,0.423892229795456,-0.905553638935089,-0.0169705599546433,0.423904150724411,-0.905548095703125,-0.940776348114014,0.298953771591187,-0.159895226359367,-0.844481647014618,0.385317146778107,-0.371996700763702,-0.998734533786774,0.0495410673320293,-0.00866918731480837,-0.994641780853271,0.0984324216842651,-0.0316005162894726,-0.844481647014618,0.385317146778107,-0.371996700763702,-0.906430721282959,-0.0623326897621155,0.417729675769806,-0.994951903820038,0.0107837794348598,0.0997722446918488,-0.998734533786774,0.0495410673320293,-0.00866918731480837,-0.765387177467346,-0.00929651409387589,0.643502950668335,-0.940776348114014,0.298953771591187,-0.159895226359367,-0.994641780853271,0.0984324216842651,-0.0316005162894726,-0.996134877204895,0.0480333007872105,0.0735401511192322,-0.996134877204895,0.0480333007872105,0.0735401511192322,-0.994951903820038,0.0107837794348598,0.0997722446918488,-0.906430721282959,-0.0623326897621155,0.417729675769806,-0.765387177467346,-0.00929651409387589,0.643502950668335,0.0164625905454159,0.415144056081772,-0.909606754779816,0.0166492722928524,0.415036976337433,-0.909652292728424,0.0105590084567666,0.425183266401291,-0.905045807361603,0.010568524710834,0.425182223320007,-0.905046045780182,-0.00238395342603326,0.422576785087585,-0.906323969364166,-0.00273619312793016,0.420223265886307,-0.907416641712189,0.00366596016101539,0.420525431632996,-0.907273352146149,0.00397530663758516,0.423337131738663,-0.905963480472565,-0.968985438346863,-0.0615942813456059,0.239318653941154,-0.936629235744476,-0.0806082934141159,0.340922206640244,
  482. -0.999159932136536,-0.0408801436424255,0.0028684907592833,-0.985909163951874,-0.16725355386734,-0.00305430474691093,-0.917205989360809,0.234144821763039,-0.322349786758423,-0.968985438346863,-0.0615942813456059,0.239318653941154,-0.985909163951874,-0.16725355386734,-0.00305430474691093,-0.997833490371704,-0.00911979004740715,-0.0651555731892586,-0.992197751998901,-0.0483309328556061,-0.114925146102905,-0.999159932136536,-0.0408801436424255,0.0028684907592833,-0.936629235744476,-0.0806082934141159,0.340922206640244,-0.968309819698334,0.163859948515892,-0.188483163714409,-0.997833490371704,-0.00911979004740715,-0.0651555731892586,-0.992197751998901,-0.0483309328556061,-0.114925146102905,-0.968309819698334,0.163859948515892,-0.188483163714409,-0.917205989360809,0.234144821763039,-0.322349786758423,-0.00115277920849621,0.415024548768997,-0.909809470176697,-0.000873893266543746,0.410985976457596,-0.911641240119934,-0.00388123979791999,0.408721536397934,-0.912650883197784,-0.00391247449442744,0.409141182899475,-0.912462830543518,-0.8615882396698,0.364098370075226,-0.353692054748535,-0.864864349365234,-0.346193879842758,0.363537430763245,-0.991694271564484,-0.124043628573418,0.0339957140386105,-0.97334897518158,-0.220713108778,-0.0622687675058842,-0.73397833108902,0.00627211574465036,0.679144024848938,-0.9491907954216,0.049735851585865,-0.310746103525162,-0.992015302181244,-0.0901181027293205,-0.0882283896207809,-0.988148510456085,-0.148670598864555,-0.0382048971951008,-0.864864349365234,-0.346193879842758,0.363537430763245,-0.73397833108902,0.00627211574465036,0.679144024848938,-0.988148510456085,-0.148670598864555,-0.0382048971951008,-0.991694271564484,-0.124043628573418,0.0339957140386105,-0.97334897518158,-0.220713108778,-0.0622687675058842,-0.992015302181244,-0.0901181027293205,-0.0882283896207809,-0.9491907954216,0.049735851585865,-0.310746103525162,-0.8615882396698,0.364098370075226,-0.353692054748535,-0.97334897518158,-0.220713108778,-0.0622687675058842,-0.991694271564484,-0.124043628573418,0.0339957140386105,-0.988148510456085,-0.148670598864555,-0.0382048971951008,
  483. -0.992015302181244,-0.0901181027293205,-0.0882283896207809,-0.992197751998901,-0.0483309328556061,-0.114925146102905,-0.997833490371704,-0.00911979004740715,-0.0651555731892586,-0.985909163951874,-0.16725355386734,-0.00305430474691093,-0.999159932136536,-0.0408801436424255,0.0028684907592833,-0.996134877204895,0.0480333007872105,0.0735401511192322,-0.994641780853271,0.0984324216842651,-0.0316005162894726,-0.998734533786774,0.0495410673320293,-0.00866918731480837,-0.994951903820038,0.0107837794348598,0.0997722446918488,-0.00140484655275941,0.416386693716049,-0.909186661243439,-0.00071984383976087,0.425531566143036,-0.904943287372589,-0.009581308811903,0.427513927221298,-0.903958022594452,-0.00943692028522491,0.425099045038223,-0.905097603797913,-0.00754277175292373,0.420373439788818,-0.907319843769073,-0.0044805658981204,0.420189887285233,-0.907425105571747,-0.00174582574982196,0.413818269968033,-0.91035783290863,-0.00175599765498191,0.413818895816803,-0.910357654094696,-0.00999536365270615,0.407210260629654,-0.913279831409454,-0.00984970945864916,0.412358909845352,-0.910968244075775,-0.00671140570193529,0.407231152057648,-0.913300454616547,-0.00748963141813874,0.397090703248978,-0.917748868465424,-0.000612307223491371,0.420092225074768,-0.90748131275177,-0.000803676317445934,0.420194029808044,-0.907434046268463,-0.000159750168677419,0.412625730037689,-0.9109006524086,-0.000149596831761301,0.412625074386597,-0.910900950431824,0.0225247032940388,0.402845740318298,-0.914990663528442,0.0225280318409204,0.402845501899719,-0.914990723133087,0.0166492722928524,0.415036976337433,-0.909652292728424,0.0164625905454159,0.415144056081772,-0.909606754779816,-0.00311863818205893,0.413526624441147,-0.91048663854599,-0.00351786776445806,0.409842997789383,-0.912149310112,-0.0126776760444045,0.392021358013153,-0.91986882686615,-0.0123330531641841,0.396420955657959,-0.917986035346985,0.0143201472237706,0.416405022144318,-0.909066498279572,0.0147214438766241,0.416308492422104,-0.909104287624359,0.0228134617209435,0.403937131166458,-0.914502263069153,
  484. 0.0228106491267681,0.403937369585037,-0.914502203464508,-0.0103578502312303,0.421822816133499,-0.906619131565094,-0.0107032228261232,0.417401880025864,-0.908658981323242,-0.00273619312793016,0.420223265886307,-0.907416641712189,-0.00238395342603326,0.422576785087585,-0.906323969364166,-0.00213568308390677,0.41500398516655,-0.909817159175873,-0.00232863798737526,0.415310114622116,-0.909676790237427,-0.00763603858649731,0.424244284629822,-0.905515611171722,-0.00763447023928165,0.424244344234467,-0.905515670776367,-0.000198633264517412,0.418691754341125,-0.908128380775452,7.94333900557831e-005,0.414968818426132,-0.909835517406464,0.00241511687636375,0.426721662282944,-0.904379785060883,0.0020253243856132,0.434136003255844,-0.900845170021057,-0.00481477240100503,0.4151731133461,-0.909729659557343,-0.000422247598180547,0.415101677179337,-0.909774899482727,-0.00983243901282549,0.424146413803101,-0.905540347099304,-0.00983522366732359,0.424146205186844,-0.905540347099304,0.00182478770148009,0.412804871797562,-0.910817682743073,0.00222334754653275,0.405154854059219,-0.91424548625946,-0.000873893266543746,0.410985976457596,-0.911641240119934,-0.00115277920849621,0.415024548768997,-0.909809470176697,-0.00127670739311725,0.414091140031815,-0.91023463010788,-0.00112180365249515,0.408222228288651,-0.912881851196289,-0.00784663856029511,0.398483425378799,-0.917141973972321,-0.00832277908921242,0.403876513242722,-0.914775729179382,0.00355226895771921,0.420354515314102,-0.907353043556213,0.00386685924604535,0.420382112264633,-0.907338917255402,0.00243831961415708,0.421445786952972,-0.906850337982178,0.00243518501520157,0.421445548534393,-0.906850457191467,-0.0109169753268361,0.433647304773331,-0.901016533374786,-0.0105556780472398,0.429607838392258,-0.90295398235321,-0.00212476262822747,0.428005129098892,-0.903773844242096,-0.00162888364866376,0.423564910888672,-0.905864238739014,-0.0014026565477252,0.420185506343842,-0.907437145709991,-0.00171318696811795,0.420155346393585,-0.907450675964355,-0.00165415671654046,0.421145766973495,-0.906991481781006,
  485. -0.00165415485389531,0.42114582657814,-0.906991422176361,0.988425076007843,0.0900236964225769,0.122113570570946,0.979069232940674,-0.153450861573219,0.1337019354105,0.956728518009186,0.217486694455147,-0.19331331551075,0.991355657577515,-0.0650176182389259,-0.113959401845932,0.969459295272827,-0.226408943533897,-0.0942744240164757,0.947320401668549,0.109395541250706,-0.301026046276093,0.961482405662537,-0.142186045646667,0.235233515501022,0.998343110084534,0.0346372202038765,0.0459486655890942,0.998343110084534,0.0346372202038765,0.0459486655890942,0.961482405662537,-0.142186045646667,0.235233515501022,0.979069232940674,-0.153450861573219,0.1337019354105,0.988425076007843,0.0900236964225769,0.122113570570946,0.969459295272827,-0.226408943533897,-0.0942744240164757,0.998343110084534,0.0346372202038765,0.0459486655890942,0.988425076007843,0.0900236964225769,0.122113570570946,0.991355657577515,-0.0650176182389259,-0.113959401845932,-0.00715569313615561,0.431961834430695,-0.901863515377045,-0.00637298310175538,0.431922882795334,-0.901888012886047,0.00548842316493392,0.419967830181122,-0.90752249956131,-0.00092457584105432,0.420532166957855,-0.907277226448059,-0.00136397243477404,0.431661605834961,-0.90203458070755,-0.00213397806510329,0.431701481342316,-0.902014017105103,0.00297951512038708,0.420325130224228,-0.907368659973145,0.00828324537724257,0.419800281524658,-0.907578587532043,-0.00657470710575581,0.439074814319611,-0.898426473140717,-0.00657466053962708,0.439075469970703,-0.898426175117493,-0.00400232849642634,0.406679213047028,-0.9135622382164,-0.0036477972753346,0.413382023572922,-0.9105504155159,0.956728518009186,0.217486694455147,-0.19331331551075,0.947320401668549,0.109395541250706,-0.301026046276093,0.969459295272827,-0.226408943533897,-0.0942744240164757,0.991355657577515,-0.0650176182389259,-0.113959401845932,-0.00341727607883513,0.423658549785614,-0.905815541744232,-0.00361050781793892,0.419148117303848,-0.907910704612732,-0.00818566046655178,0.420404762029648,-0.907299757003784,-0.00818567164242268,0.420404613018036,-0.907299816608429,
  486. -0.732174515724182,0.496078580617905,-0.466718882322311,-0.934279918670654,-0.195591554045677,0.29810243844986,-0.989359974861145,-0.143374294042587,0.024709289893508,-0.98494678735733,-0.151329442858696,-0.0835420563817024,-0.722087681293488,-0.00599205400794744,0.691775500774384,-0.940759062767029,0.0912793949246407,-0.326558470726013,-0.98991197347641,-0.0757844895124435,-0.119712896645069,-0.987065196037292,-0.153415217995644,-0.0465413257479668,-0.934279918670654,-0.195591554045677,0.29810243844986,-0.722087681293488,-0.00599205400794744,0.691775500774384,-0.987065196037292,-0.153415217995644,-0.0465413257479668,-0.989359974861145,-0.143374294042587,0.024709289893508,-0.98494678735733,-0.151329442858696,-0.0835420563817024,-0.98991197347641,-0.0757844895124435,-0.119712896645069,-0.940759062767029,0.0912793949246407,-0.326558470726013,-0.732174515724182,0.496078580617905,-0.466718882322311,-0.98494678735733,-0.151329442858696,-0.0835420563817024,-0.989359974861145,-0.143374294042587,0.024709289893508,-0.987065196037292,-0.153415217995644,-0.0465413257479668,-0.98991197347641,-0.0757844895124435,-0.119712896645069,0.00828324537724257,0.419800281524658,-0.907578587532043,0.00297951512038708,0.420325130224228,-0.907368659973145,0.0121473632752895,0.404907286167145,-0.914277076721191,0.0121513968333602,0.404907017946243,-0.914277136325836,-0.0036477972753346,0.413382023572922,-0.9105504155159,-0.00400232849642634,0.406679213047028,-0.9135622382164,0.000826358911581337,0.387264221906662,-0.921968460083008,0.00168985372874886,0.400758236646652,-0.916182279586792,-0.00092457584105432,0.420532166957855,-0.907277226448059,0.00548842316493392,0.419967830181122,-0.90752249956131,0.0104551780968905,0.405006915330887,-0.914253830909729,0.0104531887918711,0.405007034540176,-0.914253830909729,0.00228176778182387,0.418321311473846,-0.908296227455139,0.0015066935447976,0.406281113624573,-0.913746893405914,-0.00361050781793892,0.419148117303848,-0.907910704612732,-0.00341727607883513,0.423658549785614,-0.905815541744232,0.992455065250397,0.0315498635172844,0.118479371070862,
  487. 0.971573412418365,-0.190355852246284,0.140747472643852,0.9054234623909,0.130331426858902,-0.404007464647293,0.999305665493011,0.0361286886036396,-0.00910721998661757,0.990450084209442,0.132946819067001,-0.0365210883319378,0.95858496427536,-0.0101233283057809,-0.284626662731171,0.926577925682068,-0.241645663976669,0.288202553987503,0.99840235710144,-0.0475699715316296,0.0304925050586462,0.99840235710144,-0.0475699715316296,0.0304925050586462,0.926577925682068,-0.241645663976669,0.288202553987503,0.971573412418365,-0.190355852246284,0.140747472643852,0.992455065250397,0.0315498635172844,0.118479371070862,0.990450084209442,0.132946819067001,-0.0365210883319378,0.99840235710144,-0.0475699715316296,0.0304925050586462,0.992455065250397,0.0315498635172844,0.118479371070862,0.999305665493011,0.0361286886036396,-0.00910721998661757,-0.000821601948700845,0.407069891691208,-0.913396656513214,0.000127449544379488,0.407057404518127,-0.913402616977692,0.00125133839901537,0.409270405769348,-0.912412405014038,0.000129395863041282,0.409280210733414,-0.912408828735352,0.00021776209177915,0.404691219329834,-0.914453387260437,0.0025554308667779,0.404658704996109,-0.914464235305786,-0.000465904711745679,0.409285664558411,-0.912406265735626,-0.000973979011178017,0.409264087677002,-0.912415564060211,-0.00591605296358466,0.399713069200516,-0.916621208190918,-0.00591806136071682,0.399598121643066,-0.916671454906464,-0.00328852096572518,0.389377892017365,-0.921072244644165,-0.0033461069688201,0.394327521324158,-0.918963968753815,0.9054234623909,0.130331426858902,-0.404007464647293,0.95858496427536,-0.0101233283057809,-0.284626662731171,0.990450084209442,0.132946819067001,-0.0365210883319378,0.999305665493011,0.0361286886036396,-0.00910721998661757,-0.00220120395533741,0.427957266569138,-0.903796374797821,-0.00142611039336771,0.423421233892441,-0.905931770801544,-0.0190158225595951,0.405991226434708,-0.913679122924805,-0.0190122332423925,0.40619882941246,-0.913587033748627,-0.800095200538635,0.375757575035095,-0.467604607343674,-0.916593492031097,-0.329485982656479,0.226484850049019,
  488. -0.962126791477203,-0.2708440721035,-0.0309112761169672,-0.956672012805939,-0.270406991243362,-0.107974946498871,-0.865330457687378,-0.139477998018265,0.481403231620789,-0.85968941450119,-0.0872690975666046,-0.503307223320007,-0.970455586910248,-0.198192596435547,-0.13760681450367,-0.938411772251129,-0.318940401077271,-0.132892444729805,-0.916593492031097,-0.329485982656479,0.226484850049019,-0.865330457687378,-0.139477998018265,0.481403231620789,-0.938411772251129,-0.318940401077271,-0.132892444729805,-0.962126791477203,-0.2708440721035,-0.0309112761169672,-0.956672012805939,-0.270406991243362,-0.107974946498871,-0.970455586910248,-0.198192596435547,-0.13760681450367,-0.85968941450119,-0.0872690975666046,-0.503307223320007,-0.800095200538635,0.375757575035095,-0.467604607343674,-0.956672012805939,-0.270406991243362,-0.107974946498871,-0.962126791477203,-0.2708440721035,-0.0309112761169672,-0.938411772251129,-0.318940401077271,-0.132892444729805,-0.970455586910248,-0.198192596435547,-0.13760681450367,-0.000973979011178017,0.409264087677002,-0.912415564060211,-0.000465904711745679,0.409285664558411,-0.912406265735626,-0.00120467494707555,0.417812645435333,-0.908532440662384,-0.00128255924209952,0.417807281017303,-0.90853476524353,-0.0033461069688201,0.394327521324158,-0.918963968753815,-0.00328852096572518,0.389377892017365,-0.921072244644165,0.00212656939402223,0.389131158590317,-0.921179950237274,0.00135268538724631,0.398644655942917,-0.917104601860046,0.000129395863041282,0.409280210733414,-0.912408828735352,0.00125133839901537,0.409270405769348,-0.912412405014038,3.50869122485165e-005,0.413411557674408,-0.910544395446777,0.00010900304914685,0.413416504859924,-0.910542011260986,0.0289343819022179,0.44037452340126,-0.897347807884216,0.0296574272215366,0.431793957948685,-0.901484549045563,-0.00142611039336771,0.423421233892441,-0.905931770801544,-0.00220120395533741,0.427957266569138,-0.903796374797821,0.996405601501465,-0.0791172757744789,0.0302725862711668,0.9641233086586,0.0222931988537312,0.26451700925827,0.97404670715332,-0.0527280382812023,0.220119923353195,
  489. 0.999935805797577,0.007501938380301,0.00849026441574097,0.999935805797577,0.007501938380301,0.00849026441574097,0.97404670715332,-0.0527280382812023,0.220119923353195,0.914213418960571,0.182150214910507,-0.361987918615341,0.99368417263031,0.109386220574379,-0.0250294711440802,0.99368417263031,0.109386220574379,-0.0250294711440802,0.990457475185394,0.134739696979523,-0.0289695207029581,0.996405601501465,-0.0791172757744789,0.0302725862711668,0.999935805797577,0.007501938380301,0.00849026441574097,0.993611335754395,-0.0710088685154915,-0.0877173915505409,0.950455844402313,0.263440698385239,-0.165022805333138,0.917689979076386,0.0856758952140808,-0.38794931769371,0.996524751186371,-0.0747251883149147,-0.0368037186563015,0.995131313800812,0.0458259582519531,0.0872565656900406,0.930028557777405,-0.211061552166939,0.300832211971283,0.950455844402313,0.263440698385239,-0.165022805333138,0.993611335754395,-0.0710088685154915,-0.0877173915505409,0.996524751186371,-0.0747251883149147,-0.0368037186563015,0.917689979076386,0.0856758952140808,-0.38794931769371,0.861750304698944,-0.220530942082405,0.456894278526306,0.994947910308838,0.0847266390919685,0.0538528524339199,0.995131313800812,0.0458259582519531,0.0872565656900406,0.993611335754395,-0.0710088685154915,-0.0877173915505409,0.996524751186371,-0.0747251883149147,-0.0368037186563015,0.994947910308838,0.0847266390919685,0.0538528524339199,0.974417209625244,-0.0458874702453613,0.220012560486794,0.972892284393311,-0.134218037128448,0.188324838876724,0.935386836528778,0.177877694368362,-0.305632144212723,0.994498372077942,0.0517762191593647,-0.0910619497299194,0.999820470809937,0.000957440701313317,-0.0189233534038067,0.999383687973022,-0.0164627023041248,-0.031005822122097,0.999820470809937,0.000957440701313317,-0.0189233534038067,0.994498372077942,0.0517762191593647,-0.0910619497299194,0.929830372333527,0.326914250850677,-0.168945595622063,0.999837338924408,0.0147012015804648,-0.0104393288493156,0.929830372333527,0.326914250850677,-0.168945595622063,0.962230801582336,0.00685678981244564,-0.272148489952087,
  490. 0.930494785308838,-0.211558386683464,0.299035906791687,0.985800802707672,-0.0766036063432693,0.149427592754364,0.998907148838043,-0.0402842424809933,0.023698054254055,0.999837338924408,0.0147012015804648,-0.0104393288493156,0.985800802707672,-0.0766036063432693,0.149427592754364,0.930494785308838,-0.211558386683464,0.299035906791687,0.972892284393311,-0.134218037128448,0.188324838876724,0.974417209625244,-0.0458874702453613,0.220012560486794,0.999383687973022,-0.0164627023041248,-0.031005822122097,0.998907148838043,-0.0402842424809933,0.023698054254055,0.985800802707672,-0.0766036063432693,0.149427592754364,0.974417209625244,-0.0458874702453613,0.220012560486794,0.999837338924408,0.0147012015804648,-0.0104393288493156,0.998907148838043,-0.0402842424809933,0.023698054254055,0.999383687973022,-0.0164627023041248,-0.031005822122097,0.999820470809937,0.000957440701313317,-0.0189233534038067,0.00144482462201267,0.405705899000168,-0.914002537727356,0.00144336512312293,0.405745625495911,-0.913984894752502,-0.00224911631084979,0.424302875995636,-0.905517578125,-0.00213484838604927,0.419710546731949,-0.907655477523804,0.00598305789753795,0.398918509483337,-0.91696685552597,-0.000451046304078773,0.398748755455017,-0.917060136795044,-0.00946403574198484,0.417637676000595,-0.908564388751984,-0.00625256542116404,0.417774260044098,-0.908529341220856,0.00622924836352468,0.399846464395523,-0.91656094789505,0.0124264350160956,0.399993747472763,-0.91643363237381,-0.00110533041879535,0.417915016412735,-0.908485472202301,-0.00419737864285707,0.417781114578247,-0.908538103103638,0.861750304698944,-0.220530942082405,0.456894278526306,0.930028557777405,-0.211061552166939,0.300832211971283,0.995131313800812,0.0458259582519531,0.0872565656900406,0.861750304698944,-0.220530942082405,0.456894278526306,0.995131313800812,0.0458259582519531,0.0872565656900406,0.994947910308838,0.0847266390919685,0.0538528524339199,0.00884392485022545,0.432547390460968,-0.901567816734314,0.00897897686809301,0.429665982723236,-0.902943253517151,0.000797126616816968,0.427766770124435,-0.903888761997223,
  491. 0.00114762177690864,0.430785894393921,-0.902453422546387,0.0115954475477338,0.422379374504089,-0.906345009803772,0.0120888436213136,0.422397464513779,-0.906330108642578,0.0161853861063719,0.416071057319641,-0.909188091754913,0.0155729185789824,0.416082739830017,-0.909193456172943,0.951479017734528,0.0985555574297905,-0.291503608226776,0.9641233086586,0.0222931988537312,0.26451700925827,0.996405601501465,-0.0791172757744789,0.0302725862711668,0.990457475185394,0.134739696979523,-0.0289695207029581,0.914213418960571,0.182150214910507,-0.361987918615341,0.951479017734528,0.0985555574297905,-0.291503608226776,0.990457475185394,0.134739696979523,-0.0289695207029581,0.99368417263031,0.109386220574379,-0.0250294711440802,0.00514569971710444,0.428642988204956,-0.903459310531616,0.00494005531072617,0.42863866686821,-0.903462529182434,0.00239741965197027,0.420326858758926,-0.907369554042816,-0.000509965931996703,0.42005255818367,-0.907499670982361,-0.00475268671289086,0.428421169519424,-0.903566658496857,0.00164550868794322,0.42857351899147,-0.903505444526672,0.00184805365279317,0.420106917619705,-0.907472729682922,0.000794838822912425,0.420288920402527,-0.907389998435974,-0.00123001204337925,0.420320928096771,-0.907374799251556,-0.00123106245882809,0.420359790325165,-0.907356798648834,0.000671841786243021,0.417961329221725,-0.90846449136734,0.000544226728379726,0.421707659959793,-0.906731724739075,0.935386836528778,0.177877694368362,-0.305632144212723,0.962230801582336,0.00685678981244564,-0.272148489952087,0.929830372333527,0.326914250850677,-0.168945595622063,0.994498372077942,0.0517762191593647,-0.0910619497299194,-0.00461425958201289,0.418222457170486,-0.908332943916321,-0.00499017629772425,0.422687172889709,-0.9062619805336,-0.015715790912509,0.391833007335663,-0.919902205467224,-0.0157163366675377,0.391847044229507,-0.919896245002747,-0.969755709171295,0.157120332121849,-0.186780780553818,-0.871032416820526,0.27750426530838,-0.405331790447235,-0.995651841163635,-0.0825530812144279,-0.0431543700397015,-0.99819678068161,-0.0234613195061684,-0.0552533119916916,
  492. -0.871032416820526,0.27750426530838,-0.405331790447235,-0.907637417316437,-0.188759788870811,0.374918878078461,-0.991391360759735,-0.117520585656166,0.057724304497242,-0.995651841163635,-0.0825530812144279,-0.0431543700397015,-0.778134047985077,-0.0996508523821831,0.620142757892609,-0.969755709171295,0.157120332121849,-0.186780780553818,-0.99819678068161,-0.0234613195061684,-0.0552533119916916,-0.99612158536911,-0.0815566629171371,0.0330188795924187,-0.99612158536911,-0.0815566629171371,0.0330188795924187,-0.991391360759735,-0.117520585656166,0.057724304497242,-0.907637417316437,-0.188759788870811,0.374918878078461,-0.778134047985077,-0.0996508523821831,0.620142757892609,0.0177153721451759,0.414968878030777,-0.909663140773773,0.0180632602423429,0.415013998746872,-0.909635782241821,0.0154337026178837,0.421513438224792,-0.906690835952759,0.0154527649283409,0.421513795852661,-0.906690359115601,0.000321774132316932,0.404637455940247,-0.914477109909058,0.000248306983849034,0.400969117879868,-0.916091501712799,0.0096100764349103,0.416802793741226,-0.908946216106415,0.00948486570268869,0.419586300849915,-0.907665908336639,-0.956409454345703,0.0982909947633743,0.274990856647491,-0.923961818218231,0.0735499411821365,0.375346511602402,-0.991324603557587,0.125260517001152,0.0398178249597549,-0.999443054199219,-0.00153241422958672,0.033332634717226,-0.876824915409088,0.384961873292923,-0.288066834211349,-0.956409454345703,0.0982909947633743,0.274990856647491,-0.999443054199219,-0.00153241422958672,0.033332634717226,-0.987224876880646,0.156818732619286,-0.028195958584547,-0.989985764026642,0.11757468432188,-0.078130878508091,-0.991324603557587,0.125260517001152,0.0398178249597549,-0.923961818218231,0.0735499411821365,0.375346511602402,-0.933928549289703,0.323334604501724,-0.152421563863754,-0.987224876880646,0.156818732619286,-0.028195958584547,-0.989985764026642,0.11757468432188,-0.078130878508091,-0.933928549289703,0.323334604501724,-0.152421563863754,-0.876824915409088,0.384961873292923,-0.288066834211349,-0.000485831085825339,0.417779296636581,-0.908548474311829,
  493. -0.000336785975378007,0.413241624832153,-0.910621345043182,-0.00251635420136154,0.432343691587448,-0.9017054438591,-0.00252658408135176,0.432717382907867,-0.901526093482971,-0.859272420406342,0.363504201173782,-0.359882950782776,-0.859982252120972,-0.348102301359177,0.373169332742691,-0.991236865520477,-0.126370772719383,0.0384694673120975,-0.971738040447235,-0.226807042956352,-0.0654513239860535,-0.726854622364044,0.0020660855807364,0.686788260936737,-0.948446094989777,0.0559392645955086,-0.31196254491806,-0.992194533348084,-0.0879004523158073,-0.088450089097023,-0.987911701202393,-0.151296138763428,-0.0337638854980469,-0.859982252120972,-0.348102301359177,0.373169332742691,-0.726854622364044,0.0020660855807364,0.686788260936737,-0.987911701202393,-0.151296138763428,-0.0337638854980469,-0.991236865520477,-0.126370772719383,0.0384694673120975,-0.971738040447235,-0.226807042956352,-0.0654513239860535,-0.992194533348084,-0.0879004523158073,-0.088450089097023,-0.948446094989777,0.0559392645955086,-0.31196254491806,-0.859272420406342,0.363504201173782,-0.359882950782776,-0.971738040447235,-0.226807042956352,-0.0654513239860535,-0.991236865520477,-0.126370772719383,0.0384694673120975,-0.987911701202393,-0.151296138763428,-0.0337638854980469,-0.992194533348084,-0.0879004523158073,-0.088450089097023,-0.989985764026642,0.11757468432188,-0.078130878508091,-0.987224876880646,0.156818732619286,-0.028195958584547,-0.999443054199219,-0.00153241422958672,0.033332634717226,-0.991324603557587,0.125260517001152,0.0398178249597549,-0.99612158536911,-0.0815566629171371,0.0330188795924187,-0.99819678068161,-0.0234613195061684,-0.0552533119916916,-0.995651841163635,-0.0825530812144279,-0.0431543700397015,-0.991391360759735,-0.117520585656166,0.057724304497242,0.00865849573165178,0.435402184724808,-0.900194525718689,0.0083313612267375,0.444264650344849,-0.895856916904449,-0.00499017629772425,0.422687172889709,-0.9062619805336,-0.00461425958201289,0.418222457170486,-0.908332943916321,-0.00625256542116404,0.417774260044098,-0.908529341220856,
  494. -0.00946403574198484,0.417637676000595,-0.908564388751984,-0.0121403355151415,0.439363479614258,-0.898227334022522,-0.0121471509337425,0.439363241195679,-0.898227393627167,-0.00213484838604927,0.419710546731949,-0.907655477523804,-0.00224911631084979,0.424302875995636,-0.905517578125,-0.00611595017835498,0.433558940887451,-0.90110456943512,-0.00581093924120069,0.424455016851425,-0.905430376529694,-0.00419737864285707,0.417781114578247,-0.908538103103638,-0.00110533041879535,0.417915016412735,-0.908485472202301,-0.00853134132921696,0.438407868146896,-0.898735642433167,-0.0085240351036191,0.438408106565475,-0.898735642433167,0.0206306912004948,0.406359672546387,-0.913480281829834,0.0206279326230288,0.406359910964966,-0.913480222225189,0.0180632602423429,0.415013998746872,-0.909635782241821,0.0177153721451759,0.414968878030777,-0.909663140773773,0.00114762177690864,0.430785894393921,-0.902453422546387,0.000797126616816968,0.427766770124435,-0.903888761997223,-0.0101051470264792,0.423852860927582,-0.905674695968628,-0.00971323531121016,0.428237199783325,-0.903614163398743,0.0155729185789824,0.416082739830017,-0.909193456172943,0.0161853861063719,0.416071057319641,-0.909188091754913,0.0207522213459015,0.407445937395096,-0.912993490695953,0.0207564942538738,0.407445579767227,-0.912993550300598,-0.0129414927214384,0.396782368421555,-0.91782146692276,-0.013329891487956,0.392429947853088,-0.919685363769531,0.000248306983849034,0.400969117879868,-0.916091501712799,0.000321774132316932,0.404637455940247,-0.914477109909058,0.000794838822912425,0.420288920402527,-0.907389998435974,0.00184805365279317,0.420106917619705,-0.907472729682922,-0.00116086669731885,0.412605404853821,-0.910909116268158,-0.00116064620669931,0.412605434656143,-0.910909235477448,0.000544226728379726,0.421707659959793,-0.906731724739075,0.000671841786243021,0.417961329221725,-0.90846449136734,0.0025347697082907,0.409128338098526,-0.912473320960999,0.00232042279094458,0.416756153106689,-0.909015417098999,-0.000509965931996703,0.42005255818367,-0.907499670982361,
  495. 0.00239741965197027,0.420326858758926,-0.907369554042816,-0.00335125369019806,0.412555396556854,-0.910926342010498,-0.00335020595230162,0.412555456161499,-0.910926461219788,0.00116194179281592,0.411835521459579,-0.911257445812225,0.00140722328796983,0.403101116418839,-0.91515439748764,-0.000336785975378007,0.413241624832153,-0.910621345043182,-0.000485831085825339,0.417779296636581,-0.908548474311829,0.988427460193634,0.0900097340345383,0.122104413807392,0.979059219360352,-0.153506830334663,0.133710652589798,0.956724345684052,0.217548623681068,-0.193264275789261,0.991356253623962,-0.0650099888443947,-0.113958805799484,0.969473242759705,-0.2263552993536,-0.094259649515152,0.947328627109528,0.109334386885166,-0.301022261381149,0.961492717266083,-0.142113626003265,0.235234841704369,0.99834406375885,0.0346166267991066,0.0459431260824203,0.99834406375885,0.0346166267991066,0.0459431260824203,0.961492717266083,-0.142113626003265,0.235234841704369,0.979059219360352,-0.153506830334663,0.133710652589798,0.988427460193634,0.0900097340345383,0.122104413807392,0.969473242759705,-0.2263552993536,-0.094259649515152,0.99834406375885,0.0346166267991066,0.0459431260824203,0.988427460193634,0.0900097340345383,0.122104413807392,0.991356253623962,-0.0650099888443947,-0.113958805799484,-0.00444328645244241,0.415701687335968,-0.909490287303925,-0.00417146040126681,0.41570246219635,-0.909491181373596,-0.00149219273589551,0.418805360794067,-0.908074796199799,-0.00162819644901901,0.418816179037094,-0.908069550991058,-0.00382695440202951,0.415703117847443,-0.909492313861847,-0.00410303333774209,0.415702372789383,-0.909491419792175,-0.000779323163442314,0.41881474852562,-0.908071339130402,-0.00239648809656501,0.4188012778759,-0.908074796199799,-0.00773665402084589,0.413527488708496,-0.910458743572235,-0.00773665448650718,0.413527607917786,-0.91045880317688,-0.00758032128214836,0.419867306947708,-0.907553791999817,-0.00758352316915989,0.42062845826149,-0.90720123052597,0.956724345684052,0.217548623681068,-0.193264275789261,0.947328627109528,0.109334386885166,-0.301022261381149,
  496. 0.969473242759705,-0.2263552993536,-0.094259649515152,0.991356253623962,-0.0650099888443947,-0.113958805799484,-0.00033696330501698,0.420710891485214,-0.90719473361969,-0.000197468718397431,0.419950515031815,-0.907546937465668,-0.00712097296491265,0.413571238517761,-0.910443902015686,-0.00712097436189651,0.413571268320084,-0.910444021224976,-0.731676757335663,0.500721454620361,-0.462522566318512,-0.933023512363434,-0.206821203231812,0.294435262680054,-0.989599645137787,-0.142311751842499,0.0209762863814831,-0.983843922615051,-0.159568190574646,-0.0811730176210403,-0.717976987361908,0.0011764878872782,0.696065723896027,-0.943117558956146,0.0828676745295525,-0.32196632027626,-0.990480065345764,-0.075761005282402,-0.114933148026466,-0.987510204315186,-0.149826794862747,-0.0487393923103809,-0.933023512363434,-0.206821203231812,0.294435262680054,-0.717976987361908,0.0011764878872782,0.696065723896027,-0.987510204315186,-0.149826794862747,-0.0487393923103809,-0.989599645137787,-0.142311751842499,0.0209762863814831,-0.983843922615051,-0.159568190574646,-0.0811730176210403,-0.990480065345764,-0.075761005282402,-0.114933148026466,-0.943117558956146,0.0828676745295525,-0.32196632027626,-0.731676757335663,0.500721454620361,-0.462522566318512,-0.983843922615051,-0.159568190574646,-0.0811730176210403,-0.989599645137787,-0.142311751842499,0.0209762863814831,-0.987510204315186,-0.149826794862747,-0.0487393923103809,-0.990480065345764,-0.075761005282402,-0.114933148026466,-0.00239648809656501,0.4188012778759,-0.908074796199799,-0.000779323163442314,0.41881474852562,-0.908071339130402,0.00101633695885539,0.422803044319153,-0.906221032142639,0.0010177600197494,0.422803044319153,-0.906221032142639,-0.00758352316915989,0.42062845826149,-0.90720123052597,-0.00758032128214836,0.419867306947708,-0.907553791999817,-0.00736926542595029,0.411236345767975,-0.911499083042145,-0.00737817445769906,0.423030257225037,-0.906085550785065,-0.00162819644901901,0.418816179037094,-0.908069550991058,-0.00149219273589551,0.418805360794067,-0.908074796199799,
  497. 0.00091406493447721,0.42280986905098,-0.906217932701111,0.000913912488613278,0.42280986905098,-0.906217932701111,0.0089541906490922,0.423112541437149,-0.906032919883728,0.00896692927926779,0.41128072142601,-0.911464631557465,-0.000197468718397431,0.419950515031815,-0.907546937465668,-0.00033696330501698,0.420710891485214,-0.90719473361969,0.994512319564819,0.0079241506755352,0.104319356381893,0.969388663768768,-0.210789248347282,0.125911384820938,0.903676867485046,0.103504851460457,-0.415517389774323,0.999718427658081,0.0107988035306335,-0.0211311392486095,0.992890417575836,0.108711414039135,-0.0484807081520557,0.955112218856812,-0.0286356769502163,-0.29485696554184,0.923944115638733,-0.26725760102272,0.273679971694946,0.997331261634827,-0.0714016184210777,0.0152351101860404,0.997331261634827,-0.0714016184210777,0.0152351101860404,0.923944115638733,-0.26725760102272,0.273679971694946,0.969388663768768,-0.210789248347282,0.125911384820938,0.994512319564819,0.0079241506755352,0.104319356381893,0.992890417575836,0.108711414039135,-0.0484807081520557,0.997331261634827,-0.0714016184210777,0.0152351101860404,0.994512319564819,0.0079241506755352,0.104319356381893,0.999718427658081,0.0107988035306335,-0.0211311392486095,-0.0014208349166438,0.4034164249897,-0.915015518665314,-0.000653209746815264,0.403395980596542,-0.915025293827057,0.000977698480710387,0.415733337402344,-0.90948611497879,0.000402607664000243,0.415861129760742,-0.909428119659424,-0.00153888319619,0.401066958904266,-0.916047513484955,0.00106130156200379,0.400997161865234,-0.916078686714172,-0.000695749593432993,0.41585099697113,-0.909432590007782,-0.00180149206425995,0.415792286396027,-0.909457921981812,-0.00773975159972906,0.393379807472229,-0.919343590736389,-0.00774458050727844,0.393235951662064,-0.919405102729797,-0.00321618374437094,0.412015050649643,-0.91117137670517,-0.00325429998338223,0.416461855173111,-0.909147322177887,0.903676867485046,0.103504851460457,-0.415517389774323,0.955112218856812,-0.0286356769502163,-0.29485696554184,0.992890417575836,0.108711414039135,-0.0484807081520557,
  498. 0.999718427658081,0.0107988035306335,-0.0211311392486095,-0.00249862694181502,0.433684229850769,-0.901061415672302,-0.00161788077093661,0.429393976926804,-0.90311586856842,-0.0204843301326036,0.405302435159683,-0.913953125476837,-0.0204773545265198,0.405509889125824,-0.913861274719238,-0.777350306510925,0.436354368925095,-0.453124046325684,-0.934622287750244,-0.26283985376358,0.239575520157814,-0.979950308799744,-0.198606222867966,-0.015907259657979,-0.97562712430954,-0.199488341808319,-0.0914120376110077,-0.865456879138947,-0.074612595140934,0.495396137237549,-0.871273875236511,-0.0248496029525995,-0.490167587995529,-0.984623074531555,-0.126262038946152,-0.120728991925716,-0.961171388626099,-0.249018549919128,-0.118908174335957,-0.934622287750244,-0.26283985376358,0.239575520157814,-0.865456879138947,-0.074612595140934,0.495396137237549,-0.961171388626099,-0.249018549919128,-0.118908174335957,-0.979950308799744,-0.198606222867966,-0.015907259657979,-0.97562712430954,-0.199488341808319,-0.0914120376110077,-0.984623074531555,-0.126262038946152,-0.120728991925716,-0.871273875236511,-0.0248496029525995,-0.490167587995529,-0.777350306510925,0.436354368925095,-0.453124046325684,-0.97562712430954,-0.199488341808319,-0.0914120376110077,-0.979950308799744,-0.198606222867966,-0.015907259657979,-0.961171388626099,-0.249018549919128,-0.118908174335957,-0.984623074531555,-0.126262038946152,-0.120728991925716,-0.00180149206425995,0.415792286396027,-0.909457921981812,-0.000695749593432993,0.41585099697113,-0.909432590007782,0.00024426422896795,0.443402469158173,-0.89632260799408,0.000228974648052827,0.443401992321014,-0.896322846412659,-0.00325429998338223,0.416461855173111,-0.909147322177887,-0.00321618374437094,0.412015050649643,-0.91117137670517,0.00368677312508225,0.421808838844299,-0.906677305698395,0.0033409392926842,0.430440425872803,-0.902612864971161,0.000402607664000243,0.415861129760742,-0.909428119659424,0.000977698480710387,0.415733337402344,-0.90948611497879,0.0015211165882647,0.439060300588608,-0.898456335067749,
  499. 0.00153677293565124,0.439060807228088,-0.898456156253815,0.0303808227181435,0.452591359615326,-0.891200423240662,0.0307278446853161,0.444387942552567,-0.895307302474976,-0.00161788077093661,0.429393976926804,-0.90311586856842,-0.00249862694181502,0.433684229850769,-0.901061415672302,0.996999084949493,-0.0748217850923538,0.0198614671826363,0.96767669916153,-0.0308785736560822,0.250296473503113,0.959648370742798,-0.0314349122345448,0.27944004535675,0.999998927116394,0.00136209314223379,-0.000441761745605618,0.999998927116394,0.00136209314223379,-0.000441761745605618,0.959648370742798,-0.0314349122345448,0.27944004535675,0.938267767429352,0.233881339430809,-0.254859030246735,0.988293051719666,-0.0446696169674397,-0.145881474018097,0.988293051719666,-0.0446696169674397,-0.145881474018097,0.997836172580719,0.00527849420905113,-0.0655380263924599,0.996999084949493,-0.0748217850923538,0.0198614671826363,0.999998927116394,0.00136209314223379,-0.000441761745605618,0.993301689624786,-0.0705166980624199,-0.0915378257632256,0.943666517734528,0.283297508955002,-0.170985549688339,0.908083438873291,0.0843847393989563,-0.410199582576752,0.995817065238953,-0.0811180919408798,-0.0420510992407799,0.994678378105164,0.0440939851105213,0.0931154787540436,0.921050488948822,-0.228069707751274,0.315674364566803,0.943666517734528,0.283297508955002,-0.170985549688339,0.993301689624786,-0.0705166980624199,-0.0915378257632256,0.995817065238953,-0.0811180919408798,-0.0420510992407799,0.908083438873291,0.0843847393989563,-0.410199582576752,0.846901595592499,-0.226754203438759,0.480978339910507,0.994106233119965,0.0896458923816681,0.06096351146698,0.994678378105164,0.0440939851105213,0.0931154787540436,0.993301689624786,-0.0705166980624199,-0.0915378257632256,0.995817065238953,-0.0811180919408798,-0.0420510992407799,0.994106233119965,0.0896458923816681,0.06096351146698,-0.0118021257221699,0.425425916910172,-0.904916405677795,-0.0118022002279758,0.425468653440475,-0.904896199703217,-0.00430264184251428,0.413307070732117,-0.910581588745117,-0.00437706988304853,0.40816205739975,-0.912899017333984,
  500. -0.00922231562435627,0.423350691795349,-0.905919075012207,-0.00929894205182791,0.423350274562836,-0.905918478965759,7.40407122066244e-005,0.421071290969849,-0.907027542591095,-0.000108975953480694,0.421104788780212,-0.907012045383453,-0.00137199240271002,0.424296110868454,-0.905522465705872,-0.00123265874572098,0.424296408891678,-0.905522644519806,0.00459141423925757,0.420957416296005,-0.907068848609924,0.00473622186109424,0.420927584171295,-0.907081961631775,0.846901595592499,-0.226754203438759,0.480978339910507,0.921050488948822,-0.228069707751274,0.315674364566803,0.994678378105164,0.0440939851105213,0.0931154787540436,0.846901595592499,-0.226754203438759,0.480978339910507,0.994678378105164,0.0440939851105213,0.0931154787540436,0.994106233119965,0.0896458923816681,0.06096351146698,0.00438905507326126,0.444914013147354,-0.895562529563904,0.00429878477007151,0.442092299461365,-0.896959245204926,-0.00230204546824098,0.408287853002548,-0.912850260734558,-0.00209811539389193,0.411829888820648,-0.911258220672607,0.00336255808360875,0.424568116664886,-0.905389785766602,0.00381449237465858,0.4245545566082,-0.905394315719604,0.015921363607049,0.412115156650543,-0.910992681980133,0.0174128636717796,0.412106305360794,-0.910969376564026,0.921907544136047,0.252536743879318,-0.293788492679596,0.96767669916153,-0.0308785736560822,0.250296473503113,0.996999084949493,-0.0748217850923538,0.0198614671826363,0.997836172580719,0.00527849420905113,-0.0655380263924599,0.938267767429352,0.233881339430809,-0.254859030246735,0.921907544136047,0.252536743879318,-0.293788492679596,0.997836172580719,0.00527849420905113,-0.0655380263924599,0.988293051719666,-0.0446696169674397,-0.145881474018097,-0.00376977794803679,0.427046179771423,-0.904222011566162,-0.00412193825468421,0.427381813526154,-0.904061794281006,-0.0156107638031244,0.421754866838455,-0.906575620174408,-0.0156108103692532,0.421766638755798,-0.906570136547089,-0.896474003791809,0.285063296556473,-0.339224278926849,-0.923646867275238,0.254993349313736,-0.286102771759033,-0.926224648952484,0.374219000339508,0.0454737208783627,
  501. -0.927301824092865,0.340333819389343,0.15583410859108,-0.923646867275238,0.254993349313736,-0.286102771759033,-0.816820681095123,-0.238210901618004,0.525413632392883,-0.958282649517059,0.244765713810921,0.147595196962357,-0.926224648952484,0.374219000339508,0.0454737208783627,-0.863872766494751,-0.0337650030851364,0.502577066421509,-0.896474003791809,0.285063296556473,-0.339224278926849,-0.927301824092865,0.340333819389343,0.15583410859108,-0.950421571731567,0.221508547663689,0.218249276280403,-0.950421571731567,0.221508547663689,0.218249276280403,-0.958282649517059,0.244765713810921,0.147595196962357,-0.816820681095123,-0.238210901618004,0.525413632392883,-0.863872766494751,-0.0337650030851364,0.502577066421509,0.024072203785181,0.410668760538101,-0.911466777324677,0.0215478148311377,0.410787105560303,-0.911476731300354,0.0120149180293083,0.423279196023941,-0.90591961145401,0.0121195670217276,0.423274219036102,-0.905920684337616,0.00127896573394537,0.415748685598373,-0.909478604793549,0.00134193361736834,0.412257373332977,-0.911066472530365,0.00314229796640575,0.40527468919754,-0.914189577102661,0.00297583034262061,0.408204793930054,-0.912885546684265,-0.970583736896515,-0.0939239412546158,0.221688225865364,-0.9526447057724,-0.108678370714188,0.28400182723999,-0.997428238391876,-0.0696603506803513,-0.0168657060712576,-0.981408357620239,-0.19126358628273,-0.0159945357590914,-0.908049583435059,0.248899772763252,-0.336889952421188,-0.970583736896515,-0.0939239412546158,0.221688225865364,-0.981408357620239,-0.19126358628273,-0.0159945357590914,-0.996772170066834,-0.0310500618070364,-0.0740353465080261,-0.992861926555634,-0.0491085350513458,-0.108690053224564,-0.997428238391876,-0.0696603506803513,-0.0168657060712576,-0.9526447057724,-0.108678370714188,0.28400182723999,-0.957844495773315,0.105740159749985,-0.267119556665421,-0.996772170066834,-0.0310500618070364,-0.0740353465080261,-0.992861926555634,-0.0491085350513458,-0.108690053224564,-0.957844495773315,0.105740159749985,-0.267119556665421,-0.908049583435059,0.248899772763252,-0.336889952421188,
  502. -0.992861926555634,-0.0491085350513458,-0.108690053224564,-0.996772170066834,-0.0310500618070364,-0.0740353465080261,-0.981408357620239,-0.19126358628273,-0.0159945357590914,-0.997428238391876,-0.0696603506803513,-0.0168657060712576,-0.950421571731567,0.221508547663689,0.218249276280403,-0.927301824092865,0.340333819389343,0.15583410859108,-0.926224648952484,0.374219000339508,0.0454737208783627,-0.958282649517059,0.244765713810921,0.147595196962357,0.00937577150762081,0.420281052589417,-0.907345533370972,0.0100047411397099,0.429419428110123,-0.903049886226654,-0.00412193825468421,0.427381813526154,-0.904061794281006,-0.00376977794803679,0.427046179771423,-0.904222011566162,-0.000108975953480694,0.421104788780212,-0.907012045383453,7.40407122066244e-005,0.421071290969849,-0.907027542591095,0.00904838647693396,0.417747765779495,-0.908518075942993,0.0091962767764926,0.41773721575737,-0.908521354198456,-0.00437706988304853,0.40816205739975,-0.912899017333984,-0.00430264184251428,0.413307070732117,-0.910581588745117,0.0044941920787096,0.411234110593796,-0.911518692970276,0.00377699662931263,0.401097625494003,-0.9160276055336,0.00473622186109424,0.420927584171295,-0.907081961631775,0.00459141423925757,0.420957416296005,-0.907068848609924,0.0106702037155628,0.416542917490005,-0.909053444862366,0.0105227641761303,0.416553437709808,-0.909050345420837,0.0307848434895277,0.394980520009995,-0.918173611164093,0.0260503720492125,0.395293802022934,-0.918185293674469,0.0215478148311377,0.410787105560303,-0.911476731300354,0.024072203785181,0.410668760538101,-0.911466777324677,-0.00209811539389193,0.411829888820648,-0.911258220672607,-0.00230204546824098,0.408287853002548,-0.912850260734558,-0.0116954576224089,0.381207406520844,-0.924415528774261,-0.0113807525485754,0.385608732700348,-0.922592341899872,0.0174128636717796,0.412106305360794,-0.910969376564026,0.015921363607049,0.412115156650543,-0.910992681980133,0.0252790674567223,0.3962122797966,-0.91781085729599,0.0283152274787426,0.396028578281403,-0.917801558971405,-0.000357391691068187,0.416295766830444,-0.909229159355164,
  503. -0.00046619088971056,0.412061959505081,-0.911155819892883,0.00134193361736834,0.412257373332977,-0.911066472530365,0.00127896573394537,0.415748685598373,-0.909478604793549,-0,-0.406896978616714,0.913474082946777,-0.000229852827033028,-0.406897068023682,0.913474082946777,-0.000459705595858395,-0.40689691901207,0.913473963737488,-0.000229852797929198,-0.406896948814392,0.913474023342133,-0.000459705624962226,-0.407826155424118,0.91305947303772,-0.000229852812481113,-0.40782618522644,0.913059532642365,0,-0.407826215028763,0.913059592247009,-0.000229852812481113,-0.40782618522644,0.913059532642365,0,-0.407361507415771,0.913267016410828,-0,-0.406896770000458,0.913474142551422,0,-0.407361507415771,0.913267016410828,0,-0.407826095819473,0.913059651851654,-0.000459705188404769,-0.406896770000458,0.913474142551422,-0.000459669303381816,-0.407361477613449,0.913267016410828,-0.000459633127320558,-0.407826036214828,0.913059532642365,-0.000459669245174155,-0.407361477613449,0.913267016410828,0.00817035883665085,-0.964090168476105,-0.26544976234436,0.00830990821123123,-0.964089035987854,-0.265449464321136,0.00844945665448904,-0.964087843894959,-0.26544913649559,0.00830990821123123,-0.964089035987854,-0.265449464321136,0.0258412882685661,-0.964607179164886,-0.262422263622284,0.0258468464016914,-0.964607000350952,-0.262422233819962,0.0258524008095264,-0.964606761932373,-0.262422174215317,0.0258468464016914,-0.964607000350952,-0.262422233819962,-0,-0.413856416940689,0.910342156887054,-0.000338090729201213,-0.413856446743011,0.910342156887054,-0.000676181400194764,-0.4138562977314,0.91034197807312,-0.000338090729201213,-0.413856446743011,0.910342216491699,0.00422345055267215,-0.414813488721848,0.909896671772003,-0.000102584519481752,-0.414817243814468,0.909904837608337,-0.00442861765623093,-0.414813160896301,0.909895837306976,-0.000102584519481752,-0.414817243814468,0.909904837608337,1.67800529027318e-008,-0.4146948158741,0.909960567951202,1.67643463555578e-008,-0.414306610822678,0.910137414932251,1.67461262634561e-008,-0.413856416940689,0.910342156887054,
  504. 1.67564930819708e-008,-0.414112627506256,0.910225749015808,1.67756564195543e-008,-0.414586156606674,0.910010099411011,1.67800635608728e-008,-0.414695084095001,0.909960448741913,-0.000676283671054989,-0.413856327533722,0.91034197807312,-0.000676421506796032,-0.412836521863937,0.910804986953735,-0.000676718831527978,-0.410614132881165,0.911809086799622,-0.000676718715112656,-0.410614430904388,0.911808848381042,-0.000676566560287029,-0.41175588965416,0.911293983459473,-0.000676271447446197,-0.413946986198425,0.910300850868225,0.0359181277453899,-0.968898713588715,-0.2448371052742,0.0189555790275335,-0.969350099563599,-0.244951173663139,0.0189581867307425,-0.969350039958954,-0.244951158761978,0.0535245724022388,-0.968134462833405,-0.244644016027451,0.0717578828334808,-0.967024922370911,-0.244363635778427,0.0707824677228928,-0.967092514038086,-0.244380712509155,0.0212197806686163,-0.970017194747925,-0.242108553647995,0.133350506424904,-0.961570382118225,-0.240000262856483,0.243589609861374,-0.941010534763336,-0.234868735074997,0.243791937828064,-0.940961301326752,-0.234856456518173,0.133455172181129,-0.961556613445282,-0.239996805787086,0.0212224088609219,-0.970017075538635,-0.242108523845673,-0,-0.406897097826004,0.913474023342133,-0.000229852827033028,-0.406897097826004,0.913474082946777,-0.000459705654066056,-0.406897068023682,0.913474023342133,-0.000229852797929198,-0.406897068023682,0.913473963737488,-0.000459705566754565,-0.40782567858696,0.913059711456299,-0.000229852812481113,-0.407825767993927,0.913059830665588,-0,-0.407825767993927,0.913059890270233,-0.000229852783377282,-0.40782567858696,0.913059771060944,-0,-0.0424365140497684,0.99909907579422,0,-0.707106828689575,-0.707106828689575,-0,0.182149305939674,0.983270883560181,-0,-0.0424365140497684,0.99909907579422,-0,0.707106828689575,0.707106828689575,-0,0.181649208068848,0.983363330364227,-0.000416474969824776,0.182149395346642,0.983270823955536,0.000227000738959759,-0.707106828689575,-0.707106709480286,-0.000451811356469989,-0.0424364693462849,0.999099016189575,
  505. -0.000416579277953133,0.181649297475815,0.983363389968872,-0.000227000753511675,0.707106828689575,0.707106709480286,-0.000451811356469989,-0.0424364544451237,0.999099016189575,0,-0.96166604757309,-0.274223655462265,0.00449395505711436,-0.961656272411346,-0.274220854043961,-0.00609505642205477,0.961648106575012,0.274218529462814,-0,0.96166604757309,0.274223655462265,-0.00464864075183868,0.961655557155609,0.274220675230026,0.00609505642205477,-0.961648106575012,-0.274218529462814,-0.0142387710511684,0.962413907051086,0.271213322877884,0,0.962511539459229,0.271240830421448,-0.0189895424991846,0.962338030338287,0.271191954612732,0.0142458602786064,-0.962413907051086,-0.271213322877884,0,-0.962511539459229,-0.271240830421448,0.0189895424991846,-0.962338030338287,-0.271191954612732,0.99999076128006,0.00314336526207626,0.00295348395593464,0.999990701675415,0.00313105876557529,0.0029835756868124,0.999754190444946,0.0218223892152309,0.00392080843448639,0.999754190444946,0.021822040900588,0.00392066361382604,0.999991655349731,0.00347526115365326,0.00215897639282048,0.999991714954376,0.00348779512569308,0.00212898338213563,0.999749600887299,0.0221658945083618,0.00309685571119189,0.999749600887299,0.0221660155802965,0.00309690670110285,0.999989151954651,0.00321198278106749,0.00339604658074677,0.999989032745361,0.00323601765558124,0.00340631185099483,0.999755620956421,0.0217124056071043,0.00418255338445306,0.999755501747131,0.0217122510075569,0.00418291473761201,0.99998950958252,0.00313693378120661,0.00336416531354189,0.99998950958252,0.00311253569088876,0.00335475942119956,0.999757826328278,0.0216126311570406,0.00414313608780503,0.999757826328278,0.0216129086911678,0.00414246506989002,-0,0.392306476831436,-0.919834554195404,-0,0.392306625843048,-0.919834613800049,-0,0.392306685447693,-0.919834494590759,-0,0.392306625843048,-0.919834613800049,1.50024007439242e-007,0.39164662361145,-0.92011570930481,1.50023964806678e-007,0.391646504402161,-0.920115768909454,1.50023907963259e-007,0.391646385192871,-0.920115828514099,1.50023964806678e-007,0.391646504402161,-0.920115768909454,
  506. 0.999993324279785,-0.00103235465940088,0.00352947763167322,0.999993324279785,-0.00103294698055834,0.00353095750324428,0.999991714954376,0.00348779512569308,0.00212898338213563,0.999991655349731,0.00347526115365326,0.00215897639282048,0.999993503093719,-0.00120724714361131,0.00339527986943722,0.999982297420502,-0.00218066899105906,0.00553807476535439,0.999989032745361,0.00323601765558124,0.00340631185099483,0.999989151954651,0.00321198278106749,0.00339604658074677,0.999989628791809,-0.00137753423769027,0.00435511488467455,0.999989628791809,-0.00137694575823843,0.00435363315045834,0.999990701675415,0.00313105876557529,0.0029835756868124,0.99999076128006,0.00314336526207626,0.00295348395593464,0.999988615512848,-0.00182657118421048,0.00441114697605371,0.999988675117493,-0.00176065333653241,0.00443995138630271,0.99998950958252,0.00311253569088876,0.00335475942119956,0.99998950958252,0.00313693378120661,0.00336416531354189,0.999982893466949,0.00508839171379805,0.00287580071017146,0.999982893466949,0.00509635638445616,0.00285714119672775,0.999999403953552,0.00104445754550397,-0.000445311627117917,0.999999403953552,0.00104472576640546,-0.000445982237579301,0.999992966651917,-0.000751647807192057,0.0036697827745229,0.999998331069946,-2.16385506064398e-005,0.00181230425368994,0.999999225139618,-0.00115670415107161,0.000303154665743932,0.999999463558197,-0.000951725116465241,-0.000175579145434313,0.999981880187988,0.0047518415376544,0.00368202733807266,0.999981820583344,0.00474395975470543,0.00370072084479034,0.999999761581421,0.000700234959367663,0.000378361524781212,0.999999761581421,0.000700070755556226,0.000379074743250385,0.999996304512024,-0.000505097268614918,0.00268922070972621,0.999996304512024,-0.000465990480734035,0.00270622153766453,0.999999105930328,-0.00125189940445125,0.000263222900684923,0.999999403953552,-0.00105484493542463,-0.000220078625716269,0.999876499176025,-0.010972386226058,-0.0112504614517093,0.999833822250366,-0.0135577227920294,-0.0121888695284724,0.99996691942215,0.00781840085983276,-0.00224445690400898,
  507. 0.999966561794281,0.00783949624747038,-0.00229470524936914,0.999905526638031,-0.0124852508306503,-0.00576382130384445,0.999905467033386,-0.0124895991757512,-0.00576587067916989,0.999997854232788,0.00166672142222524,-0.00121549598407,0.999997854232788,0.00171528907958418,-0.001195321790874,0.999838829040527,-0.0139003181830049,-0.0113662322983146,0.999881625175476,-0.0113154472783208,-0.0104279834777117,0.999970853328705,0.00749547360464931,-0.00147181225474924,0.999970972537994,0.00747445924207568,-0.00142151687759906,0.999903917312622,-0.0125881461426616,-0.0058091701939702,0.999903976917267,-0.0125845111906528,-0.00580541463568807,0.999997973442078,0.00161562999710441,-0.00123583502136171,0.999998033046722,0.00156754814088345,-0.00125717010814697,0.999776363372803,-0.0211160499602556,-0.00122271489817649,0.999776303768158,-0.0211152601987123,-0.0012223863741383,0.999833822250366,-0.0135577227920294,-0.0121888695284724,0.999876499176025,-0.010972386226058,-0.0112504614517093,0.999767363071442,-0.0215685367584229,-0.000136681803269312,0.999767363071442,-0.0215687640011311,-0.000136130955070257,0.999905467033386,-0.0124895991757512,-0.00576587067916989,0.999905526638031,-0.0124852508306503,-0.00576382130384445,0.999769687652588,-0.0214583855122328,-0.00039954882231541,0.999769687652588,-0.0214582309126854,-0.000399484415538609,0.999881625175476,-0.0113154472783208,-0.0104279834777117,0.999838829040527,-0.0139003181830049,-0.0113662322983146,0.999765276908875,-0.0216685365885496,-0.000179046837729402,0.999765157699585,-0.0216695871204138,-0.000176534042111598,0.999903976917267,-0.0125845111906528,-0.00580541463568807,0.999903917312622,-0.0125881461426616,-0.0058091701939702,0.999999403953552,0.00104472576640546,-0.000445982237579301,0.999999403953552,0.00104445754550397,-0.000445311627117917,0.999993324279785,-0.00103294698055834,0.00353095750324428,0.999993324279785,-0.00103235465940088,0.00352947763167322,0.999999463558197,-0.000951725116465241,-0.000175579145434313,0.999999225139618,-0.00115670415107161,0.000303154665743932,
  508. 0.999982297420502,-0.00218066899105906,0.00553807476535439,0.999993503093719,-0.00120724714361131,0.00339527986943722,0.999999761581421,0.000700070755556226,0.000379074743250385,0.999999761581421,0.000700234959367663,0.000378361524781212,0.999989628791809,-0.00137694575823843,0.00435363315045834,0.999989628791809,-0.00137753423769027,0.00435511488467455,0.999999403953552,-0.00105484493542463,-0.000220078625716269,0.999999105930328,-0.00125189940445125,0.000263222900684923,0.999988675117493,-0.00176065333653241,0.00443995138630271,0.999988615512848,-0.00182657118421048,0.00441114697605371,0.999966561794281,0.00783949624747038,-0.00229470524936914,0.99996691942215,0.00781840085983276,-0.00224445690400898,0.999982893466949,0.00509635638445616,0.00285714119672775,0.999982893466949,0.00508839171379805,0.00287580071017146,0.999997854232788,0.00171528907958418,-0.001195321790874,0.999997854232788,0.00166672142222524,-0.00121549598407,0.999998331069946,-2.16385506064398e-005,0.00181230425368994,0.999992966651917,-0.000751647807192057,0.0036697827745229,0.999970972537994,0.00747445924207568,-0.00142151687759906,0.999970853328705,0.00749547360464931,-0.00147181225474924,0.999981820583344,0.00474395975470543,0.00370072084479034,0.999981880187988,0.0047518415376544,0.00368202733807266,0.999998033046722,0.00156754814088345,-0.00125717010814697,0.999997973442078,0.00161562999710441,-0.00123583502136171,0.999996304512024,-0.000465990480734035,0.00270622153766453,0.999996304512024,-0.000505097268614918,0.00268922070972621,-0.999987423419952,0.0049904203042388,0.000448477076133713,-0.999987304210663,0.00500531075522304,0.000413026806199923,-0.999660670757294,0.0217744968831539,0.0142971370369196,-0.999660670757294,0.0217744689434767,0.0142971249297261,-0.999988377094269,0.004660839214921,0.00123748974874616,-0.999988377094269,0.00464588264003396,0.00127291120588779,-0.999656021595001,0.0214293897151947,0.0151207614690065,-0.999656081199646,0.0214301589876413,0.0151210855692625,-0.99998551607132,0.00539503572508693,0.000199817513930611,
  509. -0.999985337257385,0.00542362779378891,0.000211598293390125,-0.999661982059479,0.021883649751544,0.0140350461006165,-0.999662101268768,0.0218835435807705,0.0140353115275502,-0.999985933303833,0.00530556309968233,0.000163046963280067,-0.999986171722412,0.00527728348970413,0.000150504361954518,-0.999665260314941,0.0217670891433954,0.0139846224337816,-0.999665260314941,0.0217669419944286,0.0139849754050374,0,-0.377605944871902,0.925966382026672,0,-0.377604961395264,0.925966918468475,0,-0.377603948116302,0.925967335700989,0,-0.377604961395264,0.925966918468475,-4.90139257180999e-007,-0.378395438194275,0.925644159317017,-4.90137779252109e-007,-0.378394335508347,0.925644516944885,-4.90136471853475e-007,-0.378393292427063,0.925644934177399,-4.90137779252109e-007,-0.378394335508347,0.925644516944885,-0.99999326467514,0.00185458757914603,-0.00318569364026189,-0.99999326467514,0.00185533042531461,-0.00318742636591196,-0.999988377094269,0.00464588264003396,0.00127291120588779,-0.999988377094269,0.004660839214921,0.00123748974874616,-0.999993503093719,0.00160057528410107,-0.00323136430233717,-0.999982178211212,0.00242914282716811,-0.00543470121920109,-0.999985337257385,0.00542362779378891,0.000211598293390125,-0.99998551607132,0.00539503572508693,0.000199817513930611,-0.999989569187164,0.00219974247738719,-0.00401153275743127,-0.999989569187164,0.00219922722317278,-0.00400970270857215,-0.999987304210663,0.00500531075522304,0.000413026806199923,-0.999987423419952,0.0049904203042388,0.000448477076133713,-0.999988615512848,0.00185789028182626,-0.00439801253378391,-0.999988675117493,0.00193666922859848,-0.00436587771400809,-0.999986171722412,0.00527728348970413,0.000150504361954518,-0.999985933303833,0.00530556309968233,0.000163046963280067,-0.999976098537445,0.00660137413069606,0.00200727977789938,-0.999976217746735,0.00659238919615746,0.00202953768894076,-0.999999225139618,0.000550217810086906,0.00111189961899072,-0.999999284744263,0.00054983317386359,0.00111266388557851,-0.999992907047272,0.00220500119030476,-0.00306228920817375,
  510. -0.999998211860657,0.00138893886469305,-0.00124032213352621,-0.999999105930328,-0.000757926143705845,-0.00110299279913306,-0.999999225139618,-0.000953841838054359,-0.000620265083853155,-0.999975204467773,0.00693690171465278,0.00120470765978098,-0.999975144863129,0.00694655906409025,0.00118273147381842,-0.999999642372131,0.000894335738848895,0.00028838196885772,-0.999999642372131,0.00089473812840879,0.000287625764030963,-0.999996185302734,0.0016553777968511,-0.00220923195593059,-0.999996185302734,0.00170230935327709,-0.00219067675061524,-0.999998927116394,-0.00087056343909353,-0.00115017092321068,-0.999999165534973,-0.00107649725396186,-0.000671324844006449,-0.999834716320038,-0.0181594882160425,-0.000910518981982023,-0.999774694442749,-0.0210983697324991,-0.00230670860037208,-0.99995893239975,0.00496939849108458,0.0075832805596292,-0.999958574771881,0.00494465976953506,0.00764281209558249,-0.999867737293243,-0.0151936076581478,-0.00580194545909762,-0.999867677688599,-0.0151993585750461,-0.00580292986705899,-0.999997675418854,0.000487247802084312,0.00211525545455515,-0.999997556209564,0.00054459908278659,0.00213937438093126,-0.99977970123291,-0.0207545645534992,-0.00312889646738768,-0.999839782714844,-0.0178161766380072,-0.00173295557033271,-0.999962687492371,0.00528901536017656,0.00681987358257174,-0.999963045120239,0.00531359296292067,0.00676026055589318,-0.999865651130676,-0.015317059122026,-0.00585241289809346,-0.999865770339966,-0.0153113473206759,-0.00585135072469711,-0.999997735023499,0.000427187595050782,0.00208934559486806,-0.999997794628143,0.000369239802239463,0.00206666812300682,-0.999696791172028,-0.0190745666623116,-0.0155718410387635,-0.999696791172028,-0.0190748870372772,-0.0155719760805368,-0.999774694442749,-0.0210983697324991,-0.00230670860037208,-0.999834716320038,-0.0181594882160425,-0.000910518981982023,-0.999687850475311,-0.0186210125684738,-0.0166582632809877,-0.999687850475311,-0.0186218433082104,-0.0166562870144844,-0.999867677688599,-0.0151993585750461,-0.00580292986705899,-0.999867737293243,-0.0151936076581478,-0.00580194545909762,
  511. -0.999690115451813,-0.0187314096838236,-0.016394903883338,-0.999690175056458,-0.0187304057180882,-0.0163944829255342,-0.999839782714844,-0.0178161766380072,-0.00173295557033271,-0.99977970123291,-0.0207545645534992,-0.00312889646738768,-0.999684929847717,-0.0187381003051996,-0.0167062487453222,-0.999684810638428,-0.0187378991395235,-0.0167067218571901,-0.999865770339966,-0.0153113473206759,-0.00585135072469711,-0.999865651130676,-0.015317059122026,-0.00585241289809346,-0.999999284744263,0.00054983317386359,0.00111266388557851,-0.999999225139618,0.000550217810086906,0.00111189961899072,-0.99999326467514,0.00185533042531461,-0.00318742636591196,-0.99999326467514,0.00185458757914603,-0.00318569364026189,-0.999999225139618,-0.000953841838054359,-0.000620265083853155,-0.999999105930328,-0.000757926143705845,-0.00110299279913306,-0.999982178211212,0.00242914282716811,-0.00543470121920109,-0.999993503093719,0.00160057528410107,-0.00323136430233717,-0.999999642372131,0.00089473812840879,0.000287625764030963,-0.999999642372131,0.000894335738848895,0.00028838196885772,-0.999989569187164,0.00219922722317278,-0.00400970270857215,-0.999989569187164,0.00219974247738719,-0.00401153275743127,-0.999999165534973,-0.00107649725396186,-0.000671324844006449,-0.999998927116394,-0.00087056343909353,-0.00115017092321068,-0.999988675117493,0.00193666922859848,-0.00436587771400809,-0.999988615512848,0.00185789028182626,-0.00439801253378391,-0.999958574771881,0.00494465976953506,0.00764281209558249,-0.99995893239975,0.00496939849108458,0.0075832805596292,-0.999976217746735,0.00659238919615746,0.00202953768894076,-0.999976098537445,0.00660137413069606,0.00200727977789938,-0.999997556209564,0.00054459908278659,0.00213937438093126,-0.999997675418854,0.000487247802084312,0.00211525545455515,-0.999998211860657,0.00138893886469305,-0.00124032213352621,-0.999992907047272,0.00220500119030476,-0.00306228920817375,-0.999963045120239,0.00531359296292067,0.00676026055589318,-0.999962687492371,0.00528901536017656,0.00681987358257174,-0.999975144863129,0.00694655906409025,0.00118273147381842,
  512. -0.999975204467773,0.00693690171465278,0.00120470765978098,-0.999997794628143,0.000369239802239463,0.00206666812300682,-0.999997735023499,0.000427187595050782,0.00208934559486806,-0.999996185302734,0.00170230935327709,-0.00219067675061524,-0.999996185302734,0.0016553777968511,-0.00220923195593059,0.00308883399702609,-0.999995052814484,-0.000616344739682972,0.00311273895204067,-0.999994993209839,-0.000616344739682972,0.00157037959434092,-0.999988555908203,0.00453701755031943,0.00155749265104532,-0.999988257884979,0.00459410157054663,0.00342809990979731,-0.999994218349457,-4.24553363700397e-005,0.00342795671895146,-0.999994218349457,7.55713044782169e-005,-0.00262176687829196,-0.999758839607239,-0.0218008458614349,5.78594554099254e-005,-0.999940812587738,-0.0108828339725733,0.00322485854849219,-0.99999463558197,0.000636359211057425,0.00317576178349555,-0.99999475479126,0.000636359385680407,0.00161303661298007,-0.999974250793457,0.00699341809377074,0.00163742003496736,-0.999974966049194,0.00689460383728147,0.00304247299209237,-0.999995470046997,4.5016931835562e-005,0.00304259965196252,-0.999995470046997,-7.24658602848649e-005,-0.000476856133900583,-0.999940514564514,-0.010896940715611,-0.00327505124732852,-0.999756932258606,-0.0218034256249666,2.49469906066224e-007,-0.999078750610352,0.0429128929972649,-2.23642842911431e-007,-0.999101758003235,0.0423770472407341,2.02786850422854e-007,-0.960846066474915,0.277082741260529,5.33422326043365e-006,-0.960846066474915,0.277082741260529,-0.039848830550909,-0.998658239841461,-0.0330726392567158,-0.0411466769874096,-0.998592972755432,-0.0334515124559402,-0.269261032342911,-0.962523221969604,-0.0323659032583237,-0.269261062145233,-0.962523519992828,-0.0323569476604462,-5.42675115866587e-006,-0.99999874830246,-0.00160728441551328,-1.36045700855902e-005,-0.999996840953827,-0.00251974235288799,-2.27639284275938e-005,-0.958888828754425,-0.283781945705414,-2.02901537704747e-005,-0.958888828754425,-0.283781975507736,0.00984459090977907,-0.999410569667816,-0.0328868813812733,0.00843158550560474,-0.999424695968628,-0.0328496620059013,
  513. 0.259923219680786,-0.965085387229919,-0.0324060507118702,0.259923160076141,-0.96508526802063,-0.0324124321341515,-6.70867237317907e-008,-1,5.71298078284599e-005,-6.70867237317907e-008,-1,-5.34925238753203e-005,0.00106448668520898,-0.999918341636658,-0.0127321807667613,0.00168318522628397,-0.999673783779144,-0.0254834946244955,0,-0.999999821186066,-0.00060349382692948,0,-0.999999821186066,-0.00060349382692948,2.59203886798787e-007,-0.999952018260956,0.00979920849204063,-9.73197877840448e-009,-0.999952495098114,0.00974955037236214,2.50791520883809e-009,-1,-3.67513493984006e-005,2.50791520883809e-009,-1,7.95597879914567e-005,0.00416339375078678,-0.999665021896362,-0.0255426336079836,0.00263311550952494,-0.999915301799774,-0.0127507438883185,0,-0.999999821186066,0.00062085292302072,8.1789585237857e-007,-0.999999821186066,0.00062085292302072,2.52267705036502e-006,-0.999922037124634,0.0124863954260945,2.41474594986357e-007,-0.999921202659607,0.0125546008348465,0.0273395609110594,-0.998836040496826,-0.0397376790642738,0.0259194355458021,-0.99890261888504,-0.0390093773603439,0.365818738937378,-0.929916501045227,-0.0378408133983612,0.365819573402405,-0.929918944835663,-0.0377759076654911,1.14109786863992e-006,-0.999243855476379,0.0388816967606544,-9.22388699109433e-006,-0.999239027500153,0.039007306098938,-3.03393226204207e-005,-0.965340554714203,0.260993897914886,-1.38801824505208e-005,-0.965340554714203,0.260993927717209,-0.0133360642939806,-0.999152481555939,-0.0389411486685276,-0.0147864846512675,-0.999110162258148,-0.0394985005259514,-0.361916601657867,-0.931439936161041,-0.0378977097570896,-0.3619165122509,-0.931439578533173,-0.0379044115543365,1.91691160580376e-005,-0.999825179576874,0.0187001265585423,-4.50552615802735e-005,-0.999821782112122,0.0188836995512247,2.96402358799241e-005,-0.967459797859192,-0.253024727106094,0.000188733960385434,-0.967459797859192,-0.253024756908417,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,0.99999076128006,0.00314323208294809,0.00295342761091888,0.999990701675415,0.00313079147599638,0.00298346462659538,
  514. 0.999754190444946,0.0218222960829735,0.00392065849155188,0.999754190444946,0.0218220800161362,0.00392056908458471,0.999991655349731,0.00347511377185583,0.00215895660221577,0.999991714954376,0.00348764797672629,0.00212896382436156,0.999749541282654,0.0221656374633312,0.0030967213679105,0.999749541282654,0.0221657603979111,0.00309677235782146,0.999989151954651,0.00321203982457519,0.00339607754722238,0.999989032745361,0.00323616620153189,0.00340612325817347,0.999755620956421,0.0217126850038767,0.00418216874822974,0.999755620956421,0.0217125322669744,0.00418253149837255,0.99998950958252,0.00313671212643385,0.00336458534002304,0.99998950958252,0.00311226956546307,0.003355284454301,0.999757945537567,0.0216122902929783,0.00414348999038339,0.999757826328278,0.0216126590967178,0.00414260802790523,-0,0.392303645610809,-0.9198357462883,-0,0.392304956912994,-0.919835329055786,-0,0.392306238412857,-0.919834792613983,-0,0.392304956912994,-0.919835329055786,1.50023737433003e-007,0.391645938158035,-0.920116126537323,1.50023979017533e-007,0.39164662361145,-0.92011570930481,1.50024277445482e-007,0.391647338867188,-0.920115411281586,1.50023979017533e-007,0.39164662361145,-0.92011570930481,0.999993324279785,-0.00103230297099799,0.00352955004200339,0.999993324279785,-0.00103296560700983,0.00353100104257464,0.999991714954376,0.00348764797672629,0.00212896382436156,0.999991655349731,0.00347511377185583,0.00215895660221577,0.999993503093719,-0.0012072422541678,0.00339527241885662,0.999982297420502,-0.00218078983016312,0.00553836720064282,0.999989032745361,0.00323616620153189,0.00340612325817347,0.999989151954651,0.00321203982457519,0.00339607754722238,0.999989628791809,-0.00137753423769027,0.00435511488467455,0.999989628791809,-0.00137687334790826,0.0043536638841033,0.999990701675415,0.00313079147599638,0.00298346462659538,0.99999076128006,0.00314323208294809,0.00295342761091888,0.999988615512848,-0.00182661006692797,0.00441137747839093,0.999988675117493,-0.00176059757359326,0.0044399555772543,0.99998950958252,0.00311226956546307,0.003355284454301,
  515. 0.99998950958252,0.00313671212643385,0.00336458534002304,0.999982893466949,0.00508823478594422,0.00287568452768028,0.999982893466949,0.00509637501090765,0.00285709765739739,0.999999403953552,0.00104466616176069,-0.000445313839009032,0.999999463558197,0.00104511226527393,-0.000445910292910412,0.999992966651917,-0.000751813233364373,0.00367008987814188,0.999998331069946,-2.17203141801292e-005,0.00181240681558847,0.999999225139618,-0.00115664512850344,0.000302826694678515,0.999999463558197,-0.000951715803239495,-0.000175791632500477,0.999981880187988,0.00475185690447688,0.00368199124932289,0.999981820583344,0.00474392157047987,0.00370066147297621,0.999999761581421,0.000700443109963089,0.000378346128854901,0.999999761581421,0.000700193282682449,0.000379023404093459,0.999996304512024,-0.000505141739267856,0.00268920161761343,0.999996304512024,-0.000466106488602236,0.00270637450739741,0.999999105930328,-0.00125189509708434,0.000263140100287274,0.999999403953552,-0.00105496565811336,-0.000219859910430387,0.99987655878067,-0.0109721021726727,-0.0112505536526442,0.999833822250366,-0.0135574359446764,-0.0121889635920525,0.99996691942215,0.00781814940273762,-0.00224465108476579,0.999966561794281,0.00783896259963512,-0.00229501794092357,0.999905526638031,-0.0124852536246181,-0.00576371653005481,0.999905467033386,-0.0124893523752689,-0.00576636241748929,0.999997854232788,0.00166676030494273,-0.0012154943542555,0.999997854232788,0.00171533541288227,-0.00119533273391426,0.999838829040527,-0.0139001281931996,-0.0113660953938961,0.999881625175476,-0.0113152600824833,-0.0104278428480029,0.999970853328705,0.00749542796984315,-0.00147170422133058,0.999970972537994,0.0074744145385921,-0.00142140977550298,0.999903917312622,-0.0125881545245647,-0.00580896669998765,0.999903976917267,-0.0125841638073325,-0.00580606423318386,0.999997973442078,0.00161541905254126,-0.00123533920850605,0.999998033046722,0.00156751181930304,-0.00125708826817572,0.999776303768158,-0.0211156513541937,-0.00122278148774058,0.999776303768158,-0.0211151782423258,-0.00122258404735476,
  516. 0.999833822250366,-0.0135574359446764,-0.0121889635920525,0.99987655878067,-0.0109721021726727,-0.0112505536526442,0.999767363071442,-0.0215692445635796,-0.000134590853122063,0.999767363071442,-0.0215688347816467,-0.000135562440846115,0.999905467033386,-0.0124893523752689,-0.00576636241748929,0.999905526638031,-0.0124852536246181,-0.00576371653005481,0.999769687652588,-0.0214582905173302,-0.00039977632695809,0.999769687652588,-0.0214578248560429,-0.000399580167140812,0.999881625175476,-0.0113152600824833,-0.0104278428480029,0.999838829040527,-0.0139001281931996,-0.0113660953938961,0.99976521730423,-0.0216676853597164,-0.000180477771209553,0.99976521730423,-0.0216676760464907,-0.000180498187546618,0.999903976917267,-0.0125841638073325,-0.00580606423318386,0.999903917312622,-0.0125881545245647,-0.00580896669998765,0.999999463558197,0.00104511226527393,-0.000445910292910412,0.999999403953552,0.00104466616176069,-0.000445313839009032,0.999993324279785,-0.00103296560700983,0.00353100104257464,0.999993324279785,-0.00103230297099799,0.00352955004200339,0.999999463558197,-0.000951715803239495,-0.000175791632500477,0.999999225139618,-0.00115664512850344,0.000302826694678515,0.999982297420502,-0.00218078983016312,0.00553836720064282,0.999993503093719,-0.0012072422541678,0.00339527241885662,0.999999761581421,0.000700193282682449,0.000379023404093459,0.999999761581421,0.000700443109963089,0.000378346128854901,0.999989628791809,-0.00137687334790826,0.0043536638841033,0.999989628791809,-0.00137753423769027,0.00435511488467455,0.999999403953552,-0.00105496565811336,-0.000219859910430387,0.999999105930328,-0.00125189509708434,0.000263140100287274,0.999988675117493,-0.00176059757359326,0.0044399555772543,0.999988615512848,-0.00182661006692797,0.00441137747839093,0.999966561794281,0.00783896259963512,-0.00229501794092357,0.99996691942215,0.00781814940273762,-0.00224465108476579,0.999982893466949,0.00509637501090765,0.00285709765739739,0.999982893466949,0.00508823478594422,0.00287568452768028,0.999997854232788,0.00171533541288227,-0.00119533273391426,
  517. 0.999997854232788,0.00166676030494273,-0.0012154943542555,0.999998331069946,-2.17203141801292e-005,0.00181240681558847,0.999992966651917,-0.000751813233364373,0.00367008987814188,0.999970972537994,0.0074744145385921,-0.00142140977550298,0.999970853328705,0.00749542796984315,-0.00147170422133058,0.999981820583344,0.00474392157047987,0.00370066147297621,0.999981880187988,0.00475185690447688,0.00368199124932289,0.999998033046722,0.00156751181930304,-0.00125708826817572,0.999997973442078,0.00161541905254126,-0.00123533920850605,0.999996304512024,-0.000466106488602236,0.00270637450739741,0.999996304512024,-0.000505141739267856,0.00268920161761343,0.00163742003496736,-0.999974966049194,0.00689460383728147,0.00161303661298007,-0.999974250793457,0.00699341809377074,-1.36045700855902e-005,-0.999996840953827,-0.00251974235288799,-5.42675115866587e-006,-0.99999874830246,-0.00160728441551328,-0.00327505124732852,-0.999756932258606,-0.0218034256249666,-0.000476856133900583,-0.999940514564514,-0.010896940715611,0.00843158550560474,-0.999424695968628,-0.0328496620059013,0.00984459090977907,-0.999410569667816,-0.0328868813812733,0.00155749265104532,-0.999988257884979,0.00459410157054663,0.00157037959434092,-0.999988555908203,0.00453701755031943,-2.23642842911431e-007,-0.999101758003235,0.0423770472407341,2.49469906066224e-007,-0.999078750610352,0.0429128929972649,5.78594554099254e-005,-0.999940812587738,-0.0108828339725733,-0.00262176687829196,-0.999758839607239,-0.0218008458614349,-0.0411466769874096,-0.998592972755432,-0.0334515124559402,-0.039848830550909,-0.998658239841461,-0.0330726392567158,2.41474594986357e-007,-0.999921202659607,0.0125546008348465,2.52267705036502e-006,-0.999922037124634,0.0124863954260945,-4.50552615802735e-005,-0.999821782112122,0.0188836995512247,1.91691160580376e-005,-0.999825179576874,0.0187001265585423,0.00168318522628397,-0.999673783779144,-0.0254834946244955,0.00106448668520898,-0.999918341636658,-0.0127321807667613,0.0259194355458021,-0.99890261888504,-0.0390093773603439,0.0273395609110594,-0.998836040496826,-0.0397376790642738,
  518. -9.73197877840448e-009,-0.999952495098114,0.00974955037236214,2.59203886798787e-007,-0.999952018260956,0.00979920849204063,-9.22388699109433e-006,-0.999239027500153,0.039007306098938,1.14109786863992e-006,-0.999243855476379,0.0388816967606544,0.00263311550952494,-0.999915301799774,-0.0127507438883185,0.00416339375078678,-0.999665021896362,-0.0255426336079836,-0.0147864846512675,-0.999110162258148,-0.0394985005259514,-0.0133360642939806,-0.999152481555939,-0.0389411486685276
  519. }
  520. TangentsW: *1726 {
  521. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  522. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  523. }
  524. }
  525. LayerElementUV: 0 {
  526. Version: 101
  527. Name: "map1"
  528. MappingInformationType: "ByPolygonVertex"
  529. ReferenceInformationType: "IndexToDirect"
  530. UV: *2064 {
  531. a: -0.955333769321442,1.41373145580292,-0.955333769321442,1.34309387207031,-0.963614165782928,1.6734185218811,-0.963614165782928,1.60326099395752,-0.975695669651031,2.17521047592163,-0.944284617900848,2.07375550270081,-0.94431871175766,2.33292198181152,-0.975742638111115,2.23147583007813,-0.920705854892731,1.28711724281311,-0.920705854892731,1.21481609344482,-0.952293217182159,1.5431272983551,-0.952293217182159,1.47165536880493,-0.974389731884003,2.00470304489136,-0.936594665050507,1.90160357952118,-0.941856920719147,1.83260762691498,-0.979651391506195,1.72951519489288,-0.0249432325363159,1.09018468856812,-0.0249354839324951,1.03035259246826,0.202158838510513,1.03024911880493,0.202651560306549,1.09041941165924,-0.0238586962223053,1.21348583698273,-0.0238670110702515,1.15365135669708,0.204031109809875,1.15329647064209,0.202951103448868,1.21345472335815,-0.0245490968227386,2.36380863189697,-0.0245490968227386,2.31158566474915,0.204790592193604,2.31003284454346,0.204841583967209,2.36274194717407,-0.0261217355728149,1.32983422279358,-0.0261217355728149,1.27757120132446,0.203418970108032,1.27626609802246,0.203413248062134,1.32901573181152,-0.384078502655029,1.09048819541931,-0.483380436897278,1.02939653396606,-0.480735957622528,1.32733607292175,-0.480904877185822,1.27638912200928,-0.481961727142334,1.21518659591675,-0.383365869522095,1.15283107757568,-0.380335450172424,2.36107110977173,-0.380435168743134,2.3101634979248,-0.196058094501495,1.4520857334137,-0.196053624153137,1.39228868484497,0.203418970108032,1.39198613166809,0.203405946493149,1.45238626003265,-0.177245855331421,1.57552087306976,-0.177250862121582,1.51572370529175,0.222213670611382,1.51542115211487,0.222226470708847,1.57582139968872,-0.820407211780548,2.45523428916931,-0.820407211780548,2.40200805664063,-0.42783385515213,2.40174198150635,-0.42783385515213,2.45550060272217,-0.170347452163696,1.6923485994339,-0.170347154140472,1.63912224769592,0.222226470708847,1.63885617256165,0.222226470708847,1.69261491298676,-0.976219117641449,2.45508766174316,
  532. -0.976219117641449,2.40215659141541,-0.354595005512238,1.45131993293762,-0.47466105222702,1.39301252365112,-0.444141268730164,1.69220089912415,-0.444141268730164,1.63927102088928,-0.455843806266785,1.57479345798492,-0.335784256458282,1.51648461818695,-1.46888446807861,-1.39814162254334,-1.47256708145142,-1.40148234367371,-1.37780714035034,-1.39849770069122,-1.38261127471924,-1.39220583438873,-1.38398456573486,-1.37451267242432,-1.37980127334595,-1.36781656742096,-1.4730761051178,-1.37358617782593,-1.46867942810059,-1.37877857685089,-0.742281258106232,0.0891232490539551,-0.743395388126373,-0.0137654542922974,-0.236671328544617,-0.016078770160675,-0.235970735549927,0.0875166058540344,-0.74102395772934,-0.0847458839416504,-0.739900410175323,-0.187632083892822,-0.233583331108093,-0.185964047908783,-0.234294891357422,-0.0823755264282227,0.242536157369614,0.356343746185303,0.242490917444229,0.336203098297119,0.745320796966553,0.335020124912262,0.745366752147675,0.35516083240509,0.744773864746094,0.0710099637508392,0.744727969169617,0.0911464393138886,0.242414504289627,0.0899827778339386,0.242460802197456,0.0698463916778564,-0.947683751583099,-0.404875755310059,-0.840061485767365,-0.402479112148285,-0.841919839382172,-0.398236930370331,-0.94581550359726,-0.39983469247818,-0.840055167675018,-0.375890791416168,-0.94767552614212,-0.373473107814789,-0.945808947086334,-0.378510594367981,-0.841915309429169,-0.380129098892212,0.197504431009293,-0.189522564411163,0.197361618280411,-0.0785818696022034,1.32238268852234,0.3273766040802,1.32202243804932,0.360077112913132,0.194881737232208,-0.0197996497154236,0.195015460252762,0.0911436676979065,1.32083582878113,0.0660648941993713,1.32119417190552,0.0987746715545654,-0.790131747722626,0.497362375259399,-0.794858634471893,0.493664771318436,-0.663981258869171,0.498563855886459,-0.669811427593231,0.505640685558319,-0.671237409114838,0.525287687778473,-0.666183650493622,0.532912731170654,-0.795804440975189,0.524245619773865,-0.790334403514862,0.518497824668884,1.41484475135803,1.7321572303772,
  533. 1.41384387016296,1.61183166503906,2.25372982025146,1.60799765586853,2.25430035591125,1.72158265113831,1.41501557826996,1.91635859012604,1.4163613319397,1.79314947128296,2.25790548324585,1.80674397945404,2.25749325752258,1.91890919208527,1.42141604423523,2.34538745880127,1.421351313591,2.32421922683716,2.14228057861328,2.32252311706543,2.14233064651489,2.34231495857239,2.14193773269653,2.15141105651855,2.14189219474792,2.17121887207031,1.42084407806396,2.17019510269165,1.42089295387268,2.14909362792969,-0.788155257701874,0.868426024913788,-0.647355854511261,0.869309544563293,-0.649275481700897,0.873743653297424,-0.786110103130341,0.873134613037109,-0.647347867488861,0.896730184555054,-0.788147747516632,0.897620677947998,-0.786105334758759,0.892916738986969,-0.649270236492157,0.892300128936768,2.55230951309204,1.79806840419769,2.55170559883118,1.91879177093506,2.55230951309204,2.31774759292603,2.55102753639221,2.34638333320618,2.55157399177551,1.60914993286133,2.5523099899292,1.7313973903656,2.55033493041992,2.148024559021,2.55230951309204,2.17660570144653,-0.93809574842453,-0.313753604888916,-0.942889750003815,-0.317587852478027,-0.83442348241806,-0.314220130443573,-0.840433776378632,-0.307034075260162,-0.841970145702362,-0.286796271800995,-0.836674869060516,-0.279103815555573,-0.943441450595856,-0.285722613334656,-0.937884271144867,-0.291637718677521,1.384202003479,0.978485345840454,1.38268828392029,0.878568649291992,2.09174609184265,0.879251718521118,2.09076738357544,0.979144811630249,1.3825923204422,0.816650450229645,1.38368391990662,0.71672922372818,2.09028124809265,0.713094711303711,2.09168195724487,0.812984347343445,0.252293944358826,2.37001466751099,0.25224044919014,2.34890079498291,0.79069459438324,2.34763383865356,0.790743708610535,2.36874747276306,1.99619650840759,1.9795081615448,1.99614810943604,2.00092220306396,1.41884613037109,1.99945271015167,1.4188951253891,1.97830235958099,-0.790565550327301,0.213243246078491,-0.675983726978302,0.214467257261276,-0.677970826625824,0.219003230333328,-0.788310945034027,
  534. 0.218138307332993,-0.675976455211639,0.242724597454071,-0.790558278560638,0.243952244520187,-0.78830474615097,0.239061862230301,-0.677964866161346,0.238189876079559,-1.45917916297913,-1.18909382820129,-1.46474456787109,-1.18499648571014,-1.46209192276001,-1.21824264526367,-1.45690274238586,-1.21297478675842,-1.36846232414246,-1.21400940418243,-1.37461352348328,-1.20884156227112,-1.3749098777771,-1.18550109863281,-1.37249851226807,-1.1211850643158,-1.36876797676086,-1.1245528459549,-1.36882519721985,-1.09210813045502,-1.37256836891174,-1.09556889533997,-1.46059036254883,-1.1196311712265,-1.46552014350891,-1.12382626533508,-1.46556997299194,-1.09264874458313,-1.46062254905701,-1.09694910049438,-0.801612913608551,0.399816811084747,-0.806406199932098,0.395932555198669,-0.675611555576324,0.402152717113495,-0.682012021541595,0.408454477787018,-0.722224771976471,0.406725019216537,-0.772560894489288,0.408383548259735,-0.682067811489105,0.427316874265671,-0.720021188259125,0.428640455007553,-0.675630629062653,0.433552592992783,-0.806632578372955,0.437779724597931,-0.801370203495026,0.431443989276886,-0.778047859668732,0.42922106385231,0.253111988306046,1.07894444465637,0.253071546554565,1.05821430683136,0.736201167106628,1.05705046653748,0.736204147338867,1.07831573486328,-0.252455472946167,-0.662383317947388,-0.248969435691834,-0.75886857509613,0.35129514336586,-0.762725472450256,0.350671470165253,-0.664002180099487,-0.24943333864212,-0.828896522521973,-0.252156555652618,-0.925513863563538,0.35096737742424,-0.919036388397217,0.351225823163986,-0.820289015769959,0.266682714223862,2.03291487693787,0.266704112291336,2.01143527030945,0.878952145576477,2.0113263130188,0.877736508846283,2.03486919403076,1.38053274154663,0.656881988048553,1.37654614448547,0.565798223018646,2.16388845443726,0.56352961063385,2.16608691215515,0.655155718326569,-1.36932373046875,-1.1804381608963,0.252621024847031,1.45368945598602,0.250817835330963,1.31707727909088,0.825698137283325,1.314453125,0.827984392642975,1.45035994052887,0.245857089757919,0.558100461959839,
  535. 0.24740968644619,0.415962189435959,0.819038867950439,0.421904295682907,0.816458225250244,0.557019233703613,0.244220972061157,0.00805342197418213,0.244170740246773,-0.0124602317810059,0.65320098400116,-0.0134224891662598,0.653252243995667,0.00705522298812866,0.729538440704346,0.620356500148773,0.729583382606506,0.641644835472107,0.246915981173515,0.642496168613434,0.246873497962952,0.621687769889832,-1.44121146202087,-0.547581315040588,-1.44172048568726,-0.578322410583496,-1.43851733207703,-0.573716640472412,-1.43789076805115,-0.553635239601135,-1.33993101119995,-0.582123994827271,-1.34289383888245,-0.577368497848511,-1.33863306045532,-0.552780032157898,-1.34201884269714,-0.55729079246521,2.16713118553162,0.383592128753662,2.16494727134705,0.474971383810043,1.37546992301941,0.472717612981796,1.37950146198273,0.38136351108551,0.877711534500122,1.84690117835999,0.878388524055481,1.86952519416809,0.27055948972702,1.86851859092712,0.270547926425934,1.84888875484467,-0.788703978061676,-0.138091921806335,-0.788423001766205,-0.11094069480896,-0.79301518201828,-0.115341246128082,-0.793035447597504,-0.134980797767639,-0.897471487522125,-0.137608885765076,-0.892816126346588,-0.133248567581177,-0.892568409442902,-0.113349735736847,-0.897106230258942,-0.108849704265594,0.653344929218292,0.244467735290527,0.653297662734985,0.26496821641922,0.24324931204319,0.263838469982147,0.243295729160309,0.243697583675385,-0.67553585767746,1.03986048698425,-0.53078693151474,1.04089117050171,-0.532821476459503,1.04545748233795,-0.673620402812958,1.04480695724487,-0.530779302120209,1.06930470466614,-0.675528347492218,1.07036423683167,-0.673612415790558,1.06542205810547,-0.532815158367157,1.06474208831787,1.32914710044861,0.61398583650589,1.32869672775269,0.645282864570618,0.813259482383728,-0.764403581619263,0.813448846340179,-0.667896866798401,1.3386116027832,1.05285394191742,1.33813691139221,1.08423483371735,0.813448846340179,-0.917833685874939,0.812879800796509,-0.821295499801636,2.5523099899292,0.398952573537827,2.55188679695129,0.490381717681885,
  536. 1.37079334259033,2.01030445098877,1.37144684791565,2.03751802444458,2.55185317993164,0.55108630657196,2.55230951309204,0.642775595188141,1.36734890937805,1.84424555301666,1.36761665344238,1.87133932113647,1.32807111740112,0.416182786226273,1.32633829116821,0.550602316856384,1.32098603248596,-0.0201249122619629,1.31991982460022,0.0101796686649323,1.33841812610626,1.31992435455322,1.33985936641693,1.4551237821579,1.3220591545105,0.241053938865662,1.32238268852234,0.271491289138794,1.37344098091125,2.3429741859436,1.37395226955414,2.37068223953247,2.5523099899292,0.875102519989014,2.55225610733032,0.975017309188843,2.5518696308136,1.97832763195038,2.55230951309204,2.00469493865967,2.55183625221252,0.71877110004425,2.55230951309204,0.818687319755554,-1.46341705322266,-0.938618898391724,-1.46724438667297,-0.942090392112732,-1.36876797676086,-0.9389888048172,-1.37376022338867,-0.932450294494629,-1.37518787384033,-0.914063096046448,-1.37084031105042,-0.9071044921875,-1.4677734375,-0.913100242614746,-1.46320462226868,-0.918496131896973,-0.785859644412994,-0.246727466583252,-0.787024796009064,-0.354354918003082,-0.256964027881622,-0.356774568557739,-0.256231248378754,-0.248408257961273,-0.792656362056732,-0.429057478904724,-0.791480600833893,-0.536683082580566,-0.261837959289551,-0.534938335418701,-0.262582421302795,-0.426577806472778,0.246413126587868,-0.166258096694946,0.246368154883385,-0.186266481876373,0.745891928672791,-0.18744158744812,0.745937705039978,-0.167433500289917,0.746754348278046,-0.278778076171875,0.746708512306213,-0.258765578269959,0.247486591339111,-0.259922027587891,0.247532904148102,-0.279934525489807,-0.945914566516876,-0.491696059703827,-0.840058982372284,-0.490311563014984,-0.842054665088654,-0.485828638076782,-0.943894803524017,-0.486751437187195,-0.840055167675018,-0.462151706218719,-0.945906579494476,-0.460760533809662,-0.943890631198883,-0.4657022356987,-0.842052161693573,-0.466627895832062,0.187691926956177,-0.528310894966125,0.186364412307739,-0.420207917690277,1.31815409660339,-0.19517594575882,
  537. 1.3197762966156,-0.162330567836761,0.191940516233444,-0.359245538711548,0.193255484104156,-0.251139521598816,1.3197762966156,-0.283856213092804,1.31909942626953,-0.251060962677002,-0.793014705181122,0.679511189460754,-0.797849714756012,0.675728976726532,-0.663978755474091,0.680740416049957,-0.669942080974579,0.687978744506836,-0.671400368213654,0.708075106143951,-0.666231453418732,0.71587473154068,-0.798817217350006,0.707009732723236,-0.793222010135651,0.701130270957947,1.38702952861786,1.16350495815277,1.38601064682007,1.0410144329071,2.24100637435913,1.03711128234863,2.2415874004364,1.1527396440506,1.38725829124451,1.34769856929779,1.38862824440002,1.22226357460022,2.24537539482117,1.23610353469849,2.24495649337769,1.35029494762421,0.253109842538834,2.45424222946167,0.253045052289963,2.43318128585815,0.970323324203491,2.43149447441101,0.970373332500458,2.45118570327759,2.14387822151184,2.40617299079895,2.14383244514465,2.42591190338135,1.42528796195984,2.42489242553711,1.42533659934998,2.40386390686035,-0.77792090177536,0.953505635261536,-0.635149538516998,0.954521417617798,-0.637153446674347,0.959114909172058,-0.775790631771088,0.958414733409882,-0.635144054889679,0.98295259475708,-0.777913391590118,0.983975410461426,-0.775784194469452,0.979071378707886,-0.637147724628448,0.978363275527954,2.5523099899292,1.22726202011108,2.55021643638611,1.35142314434052,1.37735199928284,2.4265673160553,1.37788915634155,2.45550155639648,2.55011177062988,1.03867983818054,2.55230951309204,1.16440105438232,2.55135321617126,2.40260934829712,2.55230951309204,2.43142080307007,-1.45917797088623,-1.2827832698822,-1.46474313735962,-1.27868580818176,-1.46209001541138,-1.31193149089813,-1.45690107345581,-1.30666387081146,-1.36846232414246,-1.30769824981689,-1.3746132850647,-1.30253052711487,-1.3749098777771,-1.27919054031372,-1.34245538711548,-0.667802095413208,-1.33863306045532,-0.671252727508545,-1.33869123458862,-0.638009309768677,-1.34252691268921,-0.641555428504944,-1.43271708488464,-0.666209936141968,-1.43776774406433,-0.67050838470459,
  538. -1.43781876564026,-0.638562798500061,-1.4327495098114,-0.642969369888306,-0.796683967113495,0.303569793701172,-0.801289856433868,0.29983726143837,-0.675611555576324,0.305814206600189,-0.681761562824249,0.31186917424202,-0.720401108264923,0.310207605361938,-0.76876825094223,0.311801195144653,-0.681815087795258,0.329993695020676,-0.718283712863922,0.331265777349472,-0.675629675388336,0.335985720157623,-0.801507532596588,0.340047657489777,-0.796450555324554,0.333959519863129,-0.774040877819061,0.331823527812958,0.251471191644669,1.25337648391724,0.251430153846741,1.23259663581848,0.735711872577667,1.23142981529236,0.735714912414551,1.25274610519409,0.271097987890244,1.78817343711853,0.27485066652298,1.68430852890015,0.921024560928345,1.68015658855438,0.920353651046753,1.7864305973053,0.272557288408279,1.61500692367554,0.269625574350357,1.51100885868073,0.918821692466736,1.51798129081726,0.919100046157837,1.62427163124084,0.262022495269775,2.19926595687866,0.262044072151184,2.17765545845032,0.87800133228302,2.17754626274109,0.876778364181519,2.20123171806335,1.37378168106079,0.320327877998352,1.36978149414063,0.228937774896622,2.1597752571106,0.226661682128906,2.1619815826416,0.318596005439758,-1.36932325363159,-1.27412784099579,0.236790150403976,-0.47527027130127,0.235090747475624,-0.604024529457092,0.776905298233032,-0.606498003005981,0.779060006141663,-0.478407919406891,-0.246504187583923,-0.981398701667786,-0.245040774345398,-1.11538183689117,0.293791025876999,-1.10978066921234,0.291358411312103,-0.982418179512024,0.244953230023384,-0.0782182812690735,0.244903415441513,-0.0987237691879272,0.653770923614502,-0.0996857285499573,0.653822064399719,-0.0792160034179688,0.734397411346436,0.79463529586792,0.734442174434662,0.815947353839874,0.251225411891937,0.816800117492676,0.251182913780212,0.795968115329742,-0.900671541690826,-0.0170685648918152,-0.901175916194916,-0.0481981635093689,-0.897976458072662,-0.0436000227928162,-0.897119224071503,-0.0235447883605957,-0.792336881160736,-0.0529645681381226,-0.795200049877167,
  539. -0.0481864213943481,-0.790794312953949,-0.0237352252006531,-0.794160306453705,-0.028229832649231,2.16305828094482,0.0518687069416046,2.16086673736572,0.143571615219116,1.3685929775238,0.141310006380081,1.37263870239258,0.0496322214603424,0.875970244407654,1.92990827560425,0.876649379730225,1.95260727405548,0.266824156045914,1.95159721374512,0.26681262254715,1.9319030046463,-0.834704697132111,-0.223218679428101,-0.83442348241806,-0.196066856384277,-0.839016139507294,-0.200467526912689,-0.839036166667938,-0.220107674598694,-0.943469941616058,-0.222736120223999,-0.938814580440521,-0.218375861644745,-0.938566625118256,-0.19847708940506,-0.943104207515717,-0.193977057933807,0.652241289615631,0.158113718032837,0.65219384431839,0.178615063428879,0.242126077413559,0.177485316991806,0.242172837257385,0.157343506813049,-0.79698520898819,0.588797807693481,-0.663986623287201,0.590213239192963,-0.666004717350006,0.594730973243713,-0.795100867748261,0.593823134899139,-0.663981258869171,0.618417620658875,-0.79697722196579,0.619843900203705,-0.795096457004547,0.614822268486023,-0.665999472141266,0.613903701305389,1.33519339561462,0.788352370262146,1.33374500274658,0.819463729858398,1.36525750160217,1.68887889385223,1.3664448261261,1.78836047649384,1.33879899978638,1.22738718986511,1.33985936641693,1.25856757164001,1.36487984657288,1.51616990566254,1.36332333087921,1.61567223072052,2.54940366744995,0.0631572306156158,2.55230951309204,0.154864013195038,1.37344515323639,2.17659568786621,1.3728746175766,2.20375347137451,2.55230951309204,0.211640685796738,2.54938006401062,0.303592294454575,1.36761665344238,1.92722451686859,1.36708092689514,1.95441961288452,0.813415288925171,-1.11158740520477,0.81076991558075,-0.984920859336853,1.32098627090454,-0.10644543170929,1.32052361965179,-0.0760099291801453,1.29904627799988,-0.603956937789917,1.30141448974609,-0.47656661272049,1.32109761238098,0.154659777879715,1.32119417190552,0.185169041156769,-1.43340802192688,-0.847747445106506,-1.43723511695862,-0.851219177246094,-1.33875775337219,-0.848117709159851,
  540. -1.34375047683716,-0.841578722000122,-1.34517788887024,-0.823191404342651,-1.34083008766174,-0.816233038902283,-1.43776416778564,-0.822228908538818,-1.43319511413574,-0.827624678611755,-1.29005694389343,-0.599049687385559,-1.29123425483704,-0.707746148109436,-0.755907952785492,-0.710189819335938,-0.755167782306671,-0.600746989250183,-1.29135918617249,-0.780867576599121,-1.29017186164856,-0.889561176300049,-0.755275189876556,-0.88779878616333,-0.756027281284332,-0.778363347053528,0.250096082687378,0.993217468261719,0.250050723552704,0.972976803779602,0.755370140075684,0.971787869930267,0.755416393280029,0.99202835559845,0.756002187728882,0.880318641662598,0.755955576896667,0.90055525302887,0.251143991947174,0.899385690689087,0.251190721988678,0.879149079322815,-0.902576148509979,0.0388166308403015,-0.790800988674164,0.0413058400154114,-0.792730867862701,0.0457116365432739,-0.900635898113251,0.0440523326396942,-0.790794312953949,0.0689201653003693,-0.902567803859711,0.0714313685894012,-0.900629222393036,0.0661995708942413,-0.792726457118988,0.0645183622837067,-0.299854397773743,-0.891558408737183,-0.300004899501801,-0.77435564994812,1.33528923988342,0.964106678962708,1.33492755889893,0.996969044208527,-0.299995541572571,-0.714120864868164,-0.299854397773743,-0.596915245056152,1.33492922782898,0.875348806381226,1.33528923988342,0.908221185207367,-0.77842766046524,0.775601983070374,-0.783338963985443,0.771759808063507,-0.647347867488861,0.77685022354126,-0.653405964374542,0.784203767776489,-0.654887735843658,0.804618179798126,-0.649636566638947,0.812541007995605,-0.784322082996368,0.803535163402557,-0.778638303279877,0.797563254833221,1.36821699142456,-0.199137151241302,1.36717522144318,-0.324395537376404,2.24148988723755,-0.328386902809143,2.24208450317383,-0.210145533084869,1.36838531494141,-0.0149735808372498,1.36978626251221,-0.143234848976135,2.24583435058594,-0.129082322120667,2.24540591239929,-0.01231849193573,1.42123413085938,2.26052951812744,1.42116928100586,2.23935794830322,2.14221477508545,2.23766231536865,
  541. 2.14226460456848,2.25745677947998,2.14186382293701,2.06654977798462,2.1418182849884,2.08636140823364,1.42064118385315,2.08533763885498,1.42069005966187,2.06423234939575,-0.677089869976044,1.12624931335449,-0.530787527561188,1.12716794013977,-0.532782733440399,1.13177490234375,-0.674964606761932,1.13114213943481,-0.530779302120209,1.15565967559814,-0.677082359790802,1.15658462047577,-0.67495983839035,1.15169668197632,-0.532776892185211,1.15105652809143,2.55230951309204,-0.138113915920258,2.55168056488037,-0.01244056224823,2.55230951309204,2.23288631439209,2.55102753639221,2.26152610778809,2.55154395103455,-0.327187299728394,2.5523099899292,-0.199928104877472,2.55033397674561,2.06316304206848,2.55230951309204,2.09174919128418,-1.46054816246033,-1.00673258304596,-1.46617841720581,-1.0025874376297,-1.46349453926086,-1.03622305393219,-1.45824432373047,-1.03089380264282,-1.36876797676086,-1.0319402217865,-1.37499141693115,-1.02671182155609,-1.37529110908508,-1.00309789180756,-1.52405905723572,-1.4522659778595,-1.52047514915466,-1.45550143718719,-1.52052998542786,-1.42433297634125,-1.52412605285645,-1.4276579618454,-1.60868573188782,-1.45077323913574,-1.61342144012451,-1.45480334758759,-1.61346912384033,-1.42485237121582,-1.60871648788452,-1.42898344993591,0.253044605255127,1.16621172428131,0.253004223108292,1.14548015594482,0.73616361618042,1.14431619644165,0.736166596412659,1.16558289527893,-1.3160092830658,-1.11003160476685,-1.31266641616821,-1.20255267620087,-0.737066805362701,-1.2062509059906,-0.737664520740509,-1.11158430576324,-1.3187575340271,-0.960920095443726,-1.32136869430542,-1.05356657505035,-0.743030846118927,-1.04735553264618,-0.742782413959503,-0.952666044235229,0.25940266251564,2.28244590759277,0.259424269199371,2.26077914237976,0.876994132995605,2.26066970825195,0.875767946243286,2.28441762924194,1.35289406776428,-0.559542059898376,1.34881341457367,-0.652773857116699,2.15472650527954,-0.655096173286438,2.15697693824768,-0.561308741569519,-1.36963963508606,-0.997975587844849,0.729490637779236,0.707538843154907,
  542. 0.729535341262817,0.728828847408295,0.24682953953743,0.72968053817749,0.246786773204803,0.708870649337769,-1.43737745285034,-0.72713828086853,-1.43786668777466,-0.75669264793396,-1.4347870349884,-0.752264857292175,-1.43418526649475,-0.732958555221558,-1.34000563621521,-0.760347843170166,-1.34285426139832,-0.755775690078735,-1.33875775337219,-0.732136249542236,-1.34201335906982,-0.736472725868225,2.16088652610779,-0.495845079421997,2.15866732597351,-0.402984321117401,1.35639095306396,-0.405274629592896,1.36048746109009,-0.498109877109528,0.879485666751862,2.09608030319214,0.880167841911316,2.11888241767883,0.267559945583344,2.1178674697876,0.267548352479935,2.09808325767517,-0.791083753108978,0.127316504716873,-0.790794312953949,0.15521028637886,-0.795512735843658,0.150689244270325,-0.795533716678619,0.130512654781342,-0.902825534343719,0.127812772989273,-0.898042976856232,0.132292360067368,-0.897788107395172,0.152735084295273,-0.902449786663055,0.157358229160309,1.32914710044861,0.70116800069809,1.32869672775269,0.732467293739319,-0.29408472776413,-1.20786023139954,-0.293902993202209,-1.11531889438629,1.3386116027832,1.14012002944946,1.33813691139221,1.17150211334229,-0.299555659294128,-1.04620242118835,-0.300101041793823,-0.953631281852722,2.5523099899292,-0.480235457420349,2.55188083648682,-0.387324154376984,1.37311053276062,2.25963878631592,1.3737701177597,2.28708934783936,2.55184268951416,-0.667832732200623,2.55230951309204,-0.573981165885925,1.37297201156616,2.09340333938599,1.37324213981628,2.12071084976196,-0.616582453250885,0.548516988754272,-0.616582453250885,0.458510160446167,0.198457956314087,0.458510160446167,0.198457956314087,0.548516988754272,-0.616579949855804,0.695095539093018,-0.616579949855804,0.60508918762207,0.198457956314087,0.60508918762207,0.198457956314087,0.695095539093018,-0.435013294219971,1.83551609516144,-0.435013294219971,1.75457644462585,0.223148986697197,1.75457644462585,0.223148807883263,1.83551609516144,-0.438878417015076,1.97438013553619,-0.438878417015076,1.89344048500061,0.219283878803253,
  543. 1.89344048500061,0.219283878803253,1.97438013553619,-1.51627802848816,-0.891558408737183,-1.51517224311829,-0.833595514297485,-1.57999897003174,-0.833233237266541,-1.58109903335571,-0.891208171844482,-1.48649525642395,-0.717136263847351,-1.54999279975891,-0.718223214149475,-1.54875779151917,-0.775838375091553,-1.48526573181152,-0.774750947952271,0.240654587745667,-0.339741230010986,0.240654587745667,-0.419385015964508,1.30899167060852,-0.419385015964508,1.30899167060852,-0.339741230010986,-1.32106328010559,-1.27253389358521,-1.32106328010559,-1.35000395774841,-0.282246708869934,-1.35443913936615,-0.282218754291534,-1.26809644699097,-0.591704070568085,0.828493714332581,-0.599949181079865,0.784505784511566,-0.599949181079865,0.751668095588684,0.191143482923508,0.751668095588684,0.191143482923508,0.784205675125122,0.199388265609741,0.828596234321594,-0.587745368480682,0.970037400722504,-0.587745368480682,0.937559008598328,-0.579778969287872,0.894017338752747,0.202651560306549,0.89053213596344,0.194687247276306,0.934471845626831,0.194687247276306,0.970037400722504,-1.55992150306702,-1.1375732421875,-1.51482272148132,-1.13842821121216,-1.51357746124268,-1.07275009155273,-1.55867624282837,-1.0718948841095,-1.59539914131165,-1.07169044017792,-1.59664535522461,-1.13737440109253,-1.51655387878418,-0.948331594467163,-1.56121325492859,-0.949279427528381,-1.59709739685059,-0.949892640113831,-1.59570217132568,-1.01499319076538,-1.55983185768127,-1.01437890529633,-1.51517224311829,-1.01343083381653,-0.628212511539459,0.395135879516602,-0.628212511539459,0.30421656370163,0.195092082023621,0.30421656370163,0.195092082023621,0.395135879516602,-0.628577530384064,0.240842700004578,-0.628577530384064,0.149923235177994,0.19472748041153,0.149923235177994,0.19472748041153,0.240842700004578,-0.414736330509186,2.11027526855469,-0.414736330509186,2.07129001617432,-0.414736330509186,2.03230428695679,0.219283878803253,2.03230428695679,0.219283878803253,2.07093381881714,0.219283878803253,2.11027526855469,-0.422015249729156,2.24913930892944,-0.422015249729156,
  544. 2.21015405654907,-0.422015249729156,2.1711688041687,0.212004065513611,2.1711688041687,0.212004065513611,2.20644855499268,0.212004065513611,2.24913930892944,-1.52172088623047,-0.659948110580444,-1.49019503593445,-0.660118103027344,-1.4891197681427,-0.603732466697693,-1.52065134048462,-0.603555560112,-1.5521821975708,-0.603379964828491,-1.55325269699097,-0.659777402877808,-1.49031496047974,-0.487334549427032,-1.52116870880127,-0.48786324262619,-1.55204033851624,-0.488391160964966,-1.55084013938904,-0.544398069381714,-1.51997995376587,-0.543869256973267,-1.48912000656128,-0.543340921401978,0.653457999229431,-1.35818111896515,0.653457999229431,-1.39570808410645,0.813369750976563,-1.39575302600861,0.813369750976563,-1.35818111896515,0.653491020202637,-1.26476895809174,0.653491020202637,-1.30229592323303,0.813402771949768,-1.30229592323303,0.813402771949768,-1.26472401618958,2.29426050186157,-0.727768540382385,2.29424643516541,-0.798574090003967,2.55229353904724,-0.798500776290894,2.55230951309204,-0.727464556694031,2.29425549507141,-1.12132143974304,2.29425501823425,-1.19212675094604,2.5523099899292,-1.19243085384369,2.5523099899292,-1.12139475345612,-0.991582453250885,-0.22809624671936,-0.990868628025055,-0.190531313419342,-1.0348813533783,-0.189694941043854,-1.03559517860413,-0.227259695529938,-0.95061331987381,0.0104957222938538,-0.993692219257355,0.00975778698921204,-0.993053734302521,-0.0275145173072815,-0.949975192546844,-0.0267766118049622,0.497396290302277,-1.26481282711029,0.497396290302277,-1.30229592323303,2.04237103462219,-0.728065013885498,2.04235935211182,-0.798645734786987,0.497363656759262,-1.35818111896515,0.497363656759262,-1.39566421508789,2.04236102104187,-1.12125015258789,2.04236030578613,-1.19182991981506,0.149814158678055,-1.26491010189056,0.149814158678055,-1.30229592323303,0.34620589017868,-1.30229592323303,0.34620589017868,-1.26485514640808,1.4814784526825,-0.728725790977478,1.4814727306366,-0.798805594444275,1.79838609695435,-0.798715353012085,1.79839515686035,-0.728352308273315,0.149781763553619,
  545. -1.35818111896515,0.149781763553619,-1.39556670188904,0.346172958612442,-1.3956218957901,0.346172958612442,-1.35818111896515,1.48145723342896,-1.12109124660492,1.48145723342896,-1.1911689043045,1.79838013648987,-1.19154238700867,1.79838037490845,-1.12118113040924,-0.167532086372375,-1.26499938964844,-0.167532086372375,-1.30229592323303,0.0375711917877197,-1.30229592323303,0.0375711917877197,-1.26494169235229,0.969377279281616,-0.729328751564026,0.9693763256073,-0.798951506614685,1.30034804344177,-0.79885733127594,1.3003523349762,-0.728938937187195,-0.167565047740936,-1.35818111896515,-0.167565047740936,-1.39547789096832,0.0375382900238037,-1.3955352306366,0.0375382900238037,-1.35818111896515,0.969345331192017,-1.12094593048096,0.969345331192017,-1.19056558609009,1.30032682418823,-1.19095551967621,1.30032682418823,-1.12103998661041,-0.234787106513977,-1.2650181055069,-0.234787106513977,-1.30229592323303,0.860847949981689,-0.729456424713135,0.860847949981689,-0.798982501029968,-0.234819948673248,-1.35818111896515,-0.234819948673248,-1.39545881748199,0.860813856124878,-1.12091529369354,0.860813856124878,-1.19043755531311,2.37838697433472,1.54857063293457,2.37838697433472,1.50775527954102,2.55230951309204,1.5077064037323,2.55230951309204,1.54857063293457,2.37838649749756,1.44823098182678,2.37838649749756,1.40741586685181,2.55230951309204,1.40741586685181,2.55230951309204,1.44828009605408,2.29425287246704,-1.25236439704895,2.29423952102661,-1.32317209243774,2.55229353904724,-1.32309877872467,2.5523099899292,-1.25206065177917,2.29424858093262,-1.38438987731934,2.29424858093262,-1.45519721508026,2.5523099899292,-1.45550143718719,2.5523099899292,-1.38446342945099,-0.995859086513519,-0.428677797317505,-0.995082437992096,-0.387821912765503,-1.04295134544373,-0.386912167072296,-1.0437273979187,-0.427768290042877,-0.995776951313019,-0.287046372890472,-1.04263043403625,-0.287848651409149,-1.04193592071533,-0.328386902809143,-0.995082437992096,-0.327584385871887,2.20861506462097,1.44818329811096,2.20861506462097,1.40741586685181,
  546. 2.04235696792603,-1.25266134738922,2.04234576225281,-1.32324397563934,2.20861530303955,1.54857063293457,2.20861530303955,1.50780308246613,2.04234743118286,-1.38431870937347,2.04234719276428,-1.45490038394928,1.83057761192322,1.44807744026184,1.83057761192322,1.40741586685181,2.04417705535889,1.40741586685181,2.04417705535889,1.44813716411591,1.48144912719727,-1.25332188606262,1.48144340515137,-1.32340359687805,1.79836559295654,-1.32331335544586,1.79837441444397,-1.25294864177704,1.83057856559753,1.54857063293457,1.83057856559753,1.50790894031525,2.04417753219604,1.50784909725189,2.04417753219604,1.54857063293457,1.48142862319946,-1.38415944576263,1.48142838478088,-1.45423913002014,1.79836010932922,-1.45461297035217,1.79836010932922,-1.38424932956696,1.48542523384094,1.44798028469086,1.48542523384094,1.40741586685181,1.70850014686584,1.40741586685181,1.70850014686584,1.44804334640503,0.969333827495575,-1.25392496585846,0.969332814216614,-1.32354974746704,1.30031359195709,-1.32345533370972,1.30031776428223,-1.25353527069092,1.48542666435242,1.54857063293457,1.48542666435242,1.50800585746765,1.70850086212158,1.5079437494278,1.70850086212158,1.54857063293457,0.96930342912674,-1.38401448726654,0.96930319070816,-1.45363569259644,1.30029332637787,-1.45402574539185,1.30029332637787,-1.38410830497742,1.41227757930756,1.44795978069305,1.41227757930756,1.40741586685181,0.86080139875412,-1.25405287742615,0.860801696777344,-1.32358038425446,1.41227865219116,1.54857063293457,1.41227865219116,1.50802659988403,0.860768854618073,-1.38398373126984,0.860768854618073,-1.45350801944733,-0.689432442188263,1.5431694984436,-0.637765228748322,1.72930371761322,-0.632549345493317,2.0049262046814,-0.689432442188263,1.4715518951416,-0.663973271846771,1.28720831871033,-0.605902016162872,1.90143716335297,-0.611118614673615,1.83278572559357,-0.663973271846771,1.21478080749512,-0.52206027507782,1.5408935546875,-0.49154007434845,1.74113082885742,-0.486277282238007,1.99309539794922,-0.522060036659241,1.47841191291809,-0.529360413551331,1.28027141094208,
  547. -0.489331483840942,1.89879274368286,-0.494596064090729,1.8354287147522,-0.529360413551331,1.21708285808563,-0.663451611995697,2.33307194709778,-0.739723742008209,1.34309327602386,-0.743310272693634,1.6734185218811,-0.686793982982636,2.23128843307495,-0.686779797077179,2.1754035949707,-0.743310272693634,1.60326099395752,-0.739723742008209,1.41373145580292,-0.6634481549263,2.07361483573914,-0.472958445549011,2.34277510643005,-0.528303682804108,1.35014820098877,-0.503242552280426,1.66641318798065,-0.469414412975311,2.24904346466064,-0.469413995742798,2.15762853622437,-0.503242969512939,1.6074914932251,-0.528303682804108,1.40946984291077,-0.472970068454742,2.06389236450195,-1.51214361190796,-1.24643385410309,-1.51214361190796,-1.19533717632294,-1.60194635391235,-1.19533717632294,-1.60194611549377,-1.24643385410309,-1.52047514915466,-1.30955386161804,-1.61111569404602,-1.30955386161804,-1.61111569404602,-1.36215388774872,-1.52047514915466,-1.36215388774872,-0.442130744457245,-1.41792953014374,-0.442130744457245,-1.45545661449432,-0.282218754291534,-1.45550143718719,-0.282218754291534,-1.41792953014374,0.653490662574768,-1.17131185531616,0.653490662574768,-1.20883893966675,0.813402771949768,-1.20883905887604,0.813402771949768,-1.17126703262329,2.29426050186157,-0.858917951583862,2.29424643516541,-0.929723501205444,2.55229353904724,-0.92965030670166,2.55230951309204,-0.858614087104797,2.29425549507141,-0.990171909332275,2.29425501823425,-1.06097733974457,2.5523099899292,-1.0612815618515,2.5523099899292,-0.990245223045349,-0.949288666248322,-0.127805233001709,-0.948574602603912,-0.0902405381202698,-0.992587268352509,-0.0894042253494263,-0.993301212787628,-0.126969039440155,-0.950862944126129,0.110786467790604,-0.993941485881805,0.110048621892929,-0.993303239345551,0.0727761685848236,-0.950224459171295,0.0735141932964325,0.497396171092987,-1.17135572433472,0.497396171092987,-1.20883893966675,2.04237079620361,-0.859214663505554,2.04235935211182,-0.929795145988464,-0.598225295543671,-1.41792953014374,-0.598225295543671,-1.45541286468506,
  548. 2.04236102104187,-0.990100383758545,2.04236030578613,-1.06068027019501,0.149813920259476,-1.17145335674286,0.149813920259476,-1.20883893966675,0.346205651760101,-1.20883893966675,0.346205651760101,-1.1713981628418,1.4814784526825,-0.859875321388245,1.4814727306366,-0.929955005645752,1.79838585853577,-0.929864764213562,1.79839515686035,-0.859501719474792,-0.945807158946991,-1.41792953014374,-0.945807158946991,-1.45531523227692,-0.749415457248688,-1.45537030696869,-0.749415457248688,-1.41792953014374,1.48145723342896,-0.989941477775574,1.48145723342896,-1.06001925468445,1.79838013648987,-1.06039297580719,1.79838037490845,-0.990031361579895,-0.167532622814178,-1.17154228687286,-0.167532622814178,-1.20883893966675,0.0375707149505615,-1.20883893966675,0.0375707149505615,-1.17148458957672,0.969377040863037,-0.860478162765503,0.969375967979431,-0.930100917816162,1.30034780502319,-0.930006742477417,1.30035209655762,-0.860088586807251,-1.26315379142761,-1.41792953014374,-1.26315379142761,-1.4552264213562,-1.05805039405823,-1.45528376102448,-1.05805039405823,-1.41792953014374,0.969345331192017,-0.98979640007019,0.969345331192017,-1.05941557884216,1.30032682418823,-1.05980587005615,1.30032682418823,-0.989890217781067,-0.234787583351135,-1.17156112194061,-0.234787583351135,-1.20883893966675,0.86084771156311,-0.860606074333191,0.860847949981689,-0.930131793022156,-1.33040857315063,-1.41792953014374,-1.33040857315063,-1.45520722866058,0.860813856124878,-0.989765644073486,0.860813856124878,-1.05928802490234,-0.546529471874237,1.28506243228912,-0.504318356513977,1.89505362510681,-0.509538590908051,1.83916831016541,-0.546529710292816,1.21246957778931,-0.540378272533417,1.54545474052429,-0.507320642471313,1.73616909980774,-0.502098381519318,1.99805784225464,-0.540378272533417,1.47367429733276,-0.544354379177094,1.41566681861877,-0.488137722015381,2.06081104278564,-0.488152027130127,2.3458571434021,-0.544354379177094,1.34387469291687,-0.520076632499695,1.67264175415039,-0.485015094280243,2.24446892738342,-0.484992027282715,2.16220235824585,
  549. -0.520075976848602,1.60133981704712
  550. }
  551. UVIndex: *1726 {
  552. a: 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,17,16,34,35,29,28,36,37,21,20,38,39,25,24,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,49,48,58,59,41,40,60,61,53,52,62,63,45,44,64,65,66,67,68,69,70,71,71,70,65,64,68,71,64,67,72,73,74,75,76,77,78,79,80,81,82,83,66,69,68,67,84,85,86,87,88,89,90,91,92,93,94,95,89,92,95,90,91,94,93,88,91,90,95,94,79,78,96,97,83,82,98,99,75,74,100,101,102,103,85,84,104,105,106,107,108,109,110,111,111,110,105,104,108,111,104,107,112,113,114,115,116,117,118,119,120,121,122,123,106,109,108,107,124,125,126,127,128,129,130,131,132,133,134,135,129,132,135,130,131,134,133,128,131,130,135,134,119,118,136,137,123,122,138,139,115,114,140,141,142,143,125,124,144,145,146,147,148,149,150,151,151,150,145,144,148,151,144,147,152,153,154,155,156,157,158,159,160,161,162,163,146,149,148,147,164,165,166,167,168,169,170,171,172,173,174,175,169,172,175,170,171,174,173,168,171,170,175,174,176,177,178,179,179,178,180,181,181,182,176,179,183,184,185,186,187,188,184,183,186,185,189,190,187,183,186,190,191,192,193,194,195,196,195,194,197,198,197,199,200,201,202,198,201,200,192,191,196,202,201,191,198,202,196,195,203,204,205,206,207,208,209,210,211,212,213,214,189,188,187,189,187,190,215,216,217,218,219,220,221,222,223,177,176,182,180,223,182,181,224,225,226,227,228,229,230,231,232,233,234,235,193,199,197,194,236,237,238,239,240,241,242,243,241,244,245,242,246,240,243,247,247,245,244,246,248,249,250,251,252,253,254,255,256,257,258,259,260,256,259,261,262,258,257,263,261,262,263,260,264,265,266,267,268,269,270,271,272,273,274,275,269,272,275,270,271,274,273,268,271,270,275,274,262,261,259,258,247,243,242,245,276,277,237,236,210,209,278,279,206,205,280,281,214,213,282,283,284,285,249,248,218,217,286,287,222,221,288,289,290,291,253,252,231,230,292,293,235,234,294,295,227,226,296,297,298,299,265,264,163,162,300,301,155,154,302,303,304,305,165,164,159,158,306,307,308,309,310,311,312,313,314,315,315,314,309,308,312,315,308,311,316,317,318,319,320,321,322,323,324,325,326,327,310,313,
  553. 312,311,328,329,330,331,332,333,334,335,336,337,338,339,333,336,339,334,335,338,337,332,335,334,339,338,323,322,340,341,327,326,342,343,319,318,344,345,346,347,329,328,348,349,350,351,352,353,354,355,355,354,349,348,352,355,348,351,356,357,358,359,360,361,362,363,364,365,366,367,350,353,352,351,368,369,370,371,372,373,374,375,376,377,378,379,373,376,379,374,375,378,377,372,375,374,379,378,363,362,380,381,367,366,382,383,359,358,384,385,386,387,369,368,388,389,390,391,391,390,392,393,393,394,388,391,395,396,397,398,399,400,396,395,398,397,401,402,399,395,398,402,403,404,405,406,407,408,407,406,409,410,409,411,412,413,414,410,413,412,404,403,408,414,413,403,410,414,408,407,415,416,417,418,419,420,421,422,423,424,425,426,401,400,399,401,399,402,427,428,429,430,431,432,433,434,435,389,388,394,392,435,394,393,436,437,438,439,440,441,442,443,444,445,446,447,405,411,409,406,448,449,450,451,452,453,454,455,453,456,457,454,458,452,455,459,459,457,456,458,460,461,462,463,464,465,466,467,468,469,470,471,472,468,471,473,474,470,469,475,473,474,475,472,476,477,478,479,480,481,482,483,484,485,486,487,481,484,487,482,483,486,485,480,483,482,487,486,474,473,471,470,459,455,454,457,488,489,449,448,422,421,490,491,418,417,492,493,426,425,494,495,496,497,461,460,430,429,498,499,434,433,500,501,502,503,465,464,443,442,504,505,447,446,506,507,439,438,508,509,510,511,477,476,512,513,514,515,516,517,518,519,519,518,513,512,516,519,512,515,520,521,522,523,524,525,526,527,528,529,530,531,514,517,516,515,532,533,534,535,536,537,538,539,540,541,542,543,537,540,543,538,539,542,541,536,539,538,543,542,527,526,544,545,531,530,546,547,523,522,548,549,550,551,533,532,552,553,554,555,556,557,558,559,559,558,553,552,556,559,552,555,560,561,562,563,564,565,566,567,568,569,570,571,554,557,556,555,572,573,574,575,576,577,578,579,580,581,582,583,577,580,583,578,579,582,581,576,579,578,583,582,567,566,584,585,571,570,586,587,563,562,588,589,590,591,573,572,592,593,594,595,595,594,596,597,597,598,592,595,599,600,601,602,603,604,600,599,602,601,605,606,603,
  554. 599,602,606,607,608,609,610,611,612,613,614,615,616,617,618,605,604,603,605,603,606,619,620,621,622,623,624,625,626,627,593,592,598,596,627,598,597,628,629,630,631,632,633,634,635,633,636,637,634,638,632,635,639,639,637,636,638,640,641,642,643,644,645,646,647,648,649,650,651,652,648,651,653,654,650,649,655,653,654,655,652,654,653,651,650,639,635,634,637,656,657,629,628,614,613,658,659,610,609,660,661,618,617,662,663,664,665,641,640,622,621,666,667,626,625,668,669,670,671,645,644,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,765,764,786,787,769,768,788,789,761,760,790,791,773,772,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,809,808,826,827,813,812,828,829,817,816,830,831,821,820,795,794,785,784,799,798,787,786,803,802,789,788,807,806,791,790,811,810,793,792,815,814,797,796,819,818,801,800,823,822,805,804,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,837,836,858,859,841,840,860,861,833,832,862,863,845,844,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,881,880,898,899,885,884,900,901,889,888,902,903,893,892,867,866,857,856,871,870,859,858,875,874,861,860,879,878,863,862,883,882,865,864,887,886,869,868,891,890,873,872,895,894,877,876,10,11,907,904,12,13,909,906,8,9,911,908,14,15,905,910,1020,1023,915,912,1022,1017,917,914,1016,1019,919,916,1018,1021,913,918,6,7,923,920,2,3,925,922,4,5,927,924,0,1,921,926,1026,1029,931,928,1028,1031,933,930,1030,1025,935,932,1024,1027,929,934,936,937,
  555. 938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,949,948,970,971,953,952,972,973,945,944,974,975,957,956,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,993,992,1010,1011,997,996,1012,1013,1001,1000,1014,1015,1005,1004,979,978,969,968,983,982,971,970,987,986,973,972,991,990,975,974,995,994,977,976,999,998,981,980,1003,1002,985,984,1007,1006,989,988,908,911,1019,1016,910,905,1021,1018,904,907,1023,1020,906,909,1017,1022,926,921,1027,1024,920,923,1029,1026,922,925,1031,1028,924,927,1025,1030
  556. }
  557. }
  558. LayerElementSmoothing: 0 {
  559. Version: 102
  560. Name: ""
  561. MappingInformationType: "ByEdge"
  562. ReferenceInformationType: "Direct"
  563. Smoothing: *875 {
  564. a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,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,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1
  565. }
  566. }
  567. LayerElementMaterial: 0 {
  568. Version: 101
  569. Name: ""
  570. MappingInformationType: "AllSame"
  571. ReferenceInformationType: "IndexToDirect"
  572. Materials: *1 {
  573. a: 0
  574. }
  575. }
  576. Layer: 0 {
  577. Version: 100
  578. LayerElement: {
  579. Type: "LayerElementNormal"
  580. TypedIndex: 0
  581. }
  582. LayerElement: {
  583. Type: "LayerElementBinormal"
  584. TypedIndex: 0
  585. }
  586. LayerElement: {
  587. Type: "LayerElementTangent"
  588. TypedIndex: 0
  589. }
  590. LayerElement: {
  591. Type: "LayerElementMaterial"
  592. TypedIndex: 0
  593. }
  594. LayerElement: {
  595. Type: "LayerElementSmoothing"
  596. TypedIndex: 0
  597. }
  598. LayerElement: {
  599. Type: "LayerElementUV"
  600. TypedIndex: 0
  601. }
  602. }
  603. }
  604. Geometry: 2267733776544, "Geometry::", "Mesh" {
  605. Vertices: *816 {
  606. a: 197.28076171875,1.25,172.036926269531,197.898239135742,-1.04717636108398,19.2659397125244,197.998046875,14.4256286621094,149.646514892578,197.400588989258,12.0970134735107,19.0440349578857,185.847900390625,1.92828369140625,172.024948120117,186.296951293945,-1.6911563873291,19.345588684082,186.5654296875,15.1039123535156,149.634796142578,185.809371948242,11.6593551635742,19.1442222595215,-185.526824951172,17.0317535400391,142.371215820313,-197.0439453125,13.5959777832031,18.5198669433594,-197.147018432617,16.4241180419922,142.567306518555,-185.321044921875,13.5959777832031,18.5198669433594,-178.759033203125,5.98178100585938,201.191497802734,-199.906311035156,5.85263061523438,201.510406494141,-178.715270996094,0.978256225585938,199.005111694336,-199.920806884766,0.8746337890625,199.239074707031,-201.590301513672,93.168701171875,-13.7499237060547,-178.797912597656,98.2373809814453,-11.5027389526367,-178.788101196289,93.2241439819336,-13.7050170898438,-201.554046630859,98.1997299194336,-11.5165100097656,-148.358154296875,0.9466552734375,199.040283203125,-177.469207763672,2.49478149414063,200.184173583984,-148.621856689453,-4.07713317871094,196.847671508789,-177.773941040039,-2.45712280273438,197.875595092773,-178.291137695313,93.1203308105469,-16.1980361938477,-149.265197753906,100.227928161621,-13.1164855957031,-148.914184570313,95.1532821655273,-15.3164978027344,-178.618301391602,98.1332244873047,-13.9958267211914,-41.16455078125,0.9427490234375,198.978378295898,-65.9743041992188,0.801177978515625,199.324234008789,-41.1332588195801,-4.10646057128906,196.767440795898,-65.9520797729492,-4.16615295410156,197.027252197266,-65.7658233642578,92.5357284545898,-16.7436370849609,-42.1344451904297,101.127830505371,-12.8931198120117,-41.2673988342285,96.1881484985352,-15.0625152587891,-66.6164779663086,97.5049667358398,-14.5462417602539,-123.778442382813,-1.48504638671875,193.772644042969,-100.5498046875,-2.18853759765625,192.652450561523,-100.190757751465,2.77120971679688,194.920883178711,-123.444107055664,3.97361755371094,196.170700073242,
  607. -146.523498535156,-5.29641723632813,199.008865356445,-124.809814453125,-5.412353515625,199.455917358398,-124.778633117676,-0.34759521484375,201.52522277832,-146.538330078125,-0.2357177734375,201.107162475586,-98.8842620849609,-4.3707275390625,198.556991577148,-67.2180862426758,2.04438781738281,201.231506347656,-99.0710906982422,0.674453735351563,200.812149047852,-67.1093826293945,-3.27828979492188,198.792022705078,-98.9247817993164,97.6278076171875,-9.89398193359375,-67.421142578125,97.8306579589844,-10.3596801757813,-67.340087890625,92.7203979492188,-12.3701019287109,-98.9134826660156,92.6307525634766,-12.1183547973633,-124.282104492188,94.11181640625,-15.6292724609375,-100.986396789551,99.0434799194336,-13.0351257324219,-100.98600769043,93.9898300170898,-15.2268676757813,-124.276802062988,99.1232299804688,-13.4101867675781,-127.591949462891,92.0523986816406,-14.7685775756836,-149.644317626953,94.7310562133789,-13.3390960693359,-148.390029907227,99.7356719970703,-11.137336730957,-126.812805175781,97.0186996459961,-12.4899215698242,-15.956298828125,1.58859252929688,197.356781005859,-38.8776512145996,1.44783020019531,197.6669921875,-15.9473533630371,-3.4202880859375,195.148696899414,-38.8736724853516,-3.52964782714844,195.399597167969,-39.5951499938965,93.3614120483398,-13.6795883178711,-16.7444076538086,98.4657897949219,-11.4730529785156,-16.7417163848877,93.4069671630859,-13.6689453125,-39.5941772460938,98.3688049316406,-11.4724731445313,15.656005859375,3.41940307617188,198.855621337891,-14.9224634170532,4.13296508789063,199.523834228516,15.5443468093872,-1.71046447753906,196.717926025391,-15.0967035293579,-0.808975219726563,197.225341796875,14.654673576355,101.44605255127,-12.8341293334961,-15.3791007995605,92.1964569091797,-16.4008255004883,-16.1683368682861,97.1791839599609,-14.21826171875,15.4451770782471,96.4741973876953,-15.023193359375,40.3360939025879,-3.39413452148438,195.070953369141,63.49951171875,-1.21310424804688,195.231903076172,63.1150588989258,3.75057983398438,197.486968994141,39.8590469360352,2.05966186523438,197.453414916992,
  608. 16.5847930908203,-4.50631713867188,199.317596435547,39.411376953125,-4.62771606445313,199.757476806641,39.423713684082,0.451736450195313,201.832901000977,16.57958984375,0.54766845703125,201.408386230469,64.3436660766602,-4.92898559570313,198.463226318359,93.8309326171875,0.400527954101563,200.606536865234,64.2224807739258,0.38427734375,200.814376831055,93.7612609863281,-4.5662841796875,198.312057495117,38.919921875,93.6850891113281,-14.1138916015625,15.4879989624023,93.4619903564453,-13.7254409790039,39.0171318054199,98.7910766601563,-11.998779296875,15.4911499023438,98.4663162231445,-11.5049743652344,64.5995483398438,97.8098297119141,-9.85489654541016,93.61474609375,98.0105590820313,-10.3200073242188,93.6981964111328,92.9032974243164,-12.3257827758789,64.6062316894531,92.8113098144531,-12.0771408081055,62.7392044067383,92.2678070068359,-15.6241455078125,40.7034873962402,101.222953796387,-12.9423828125,63.6488418579102,97.1886215209961,-13.4233703613281,39.791259765625,96.2798767089844,-15.1436233520508,118.621337890625,0.48455810546875,201.198837280273,95.7163848876953,0.342758178710938,201.495574951172,118.673568725586,-4.57162475585938,199.029754638672,95.7114944458008,-4.62109375,199.237609863281,93.9368362426758,93.2573318481445,-13.604850769043,93.911994934082,98.2948608398438,-11.5381164550781,118.592597961426,98.6188888549805,-11.4394149780273,118.595703125,93.5595626831055,-13.6394577026367,152.1455078125,1.138427734375,199.112731933594,120.606391906738,2.689208984375,200.255249023438,151.854858398438,-3.90382385253906,196.943649291992,120.277717590332,-2.2554931640625,197.930969238281,119.717819213867,93.456657409668,-16.1247024536133,151.159805297852,100.564140319824,-13.0416412353516,151.539321899414,95.4891204833984,-15.244255065918,119.360954284668,98.4699859619141,-13.9226684570313,176.183792114258,-3.04156494140625,198.010116577148,199.9169921875,-1.05062866210938,197.921524047852,199.150421142578,3.8870849609375,200.244323730469,175.777557373047,2.38502502441406,200.453872680664,154.623245239258,-5.14347839355469,199.084045410156,
  609. 174.581298828125,-5.25888061523438,199.527923583984,174.614303588867,-0.191650390625,201.588943481445,154.611572265625,-0.08221435546875,201.179183959961,154.065277099609,100.060752868652,-11.0515365600586,173.861083984375,97.2898559570313,-12.2982177734375,173.215209960938,92.3675079345703,-14.7146911621094,153.365768432617,95.1303176879883,-13.2891082763672,199.925277709961,94.7959976196289,-14.9102249145508,175.336395263672,99.4780731201172,-13.341667175293,199.878448486328,99.8237991333008,-12.684455871582,175.343933105469,94.4646682739258,-15.5616683959961,-183.299560546875,1.88943481445313,195.838272094727,-199.07080078125,95.45849609375,-14.2222290039063,-199.176513671875,1.88943481445313,195.838272094727,-183.299560546875,95.45849609375,-14.2222290039063,-199.176513671875,-9.43081665039063,192.721405029297,-199.07080078125,84.3519592285156,-17.2437744140625,-183.299560546875,-9.43081665039063,192.721405029297,-183.299560546875,84.3519592285156,-17.2437744140625,8.95682621002197,3.85580444335938,187.834762573242,-10.0075922012329,95.6069793701172,-13.9721374511719,-10.1514320373535,3.85548400878906,187.830764770508,8.96002388000488,95.6049194335938,-13.9710388183594,-10.15576171875,-9.69329833984375,184.474182128906,-10.005859375,82.26806640625,-17.2437744140625,8.95751953125,-9.69329833984375,184.474182128906,8.95751953125,82.26806640625,-17.2437744140625,199.145553588867,1.03756713867188,195.717071533203,183.052001953125,94.6109619140625,-14.352783203125,182.946807861328,1.03758239746094,195.716735839844,199.145751953125,94.6109619140625,-14.352783203125,182.9462890625,-9.4307861328125,192.721374511719,183.052001953125,84.3519287109375,-17.2438354492188,199.145751953125,-9.4307861328125,192.721374511719,199.145751953125,84.3519287109375,-17.2438354492188,190.730224609375,50.0088195800781,81.3461608886719,190.730224609375,43.9088745117188,95.94287109375,190.730224609375,45.2239379882813,79.3465576171875,190.730224609375,39.1240234375,93.9432983398438,-185.901000976563,38.9933776855469,93.8050689697266,-185.876693725586,49.593879699707,81.4972457885742,
  610. -185.932037353516,44.8605117797852,79.4492034912109,-185.907684326172,43.6893692016602,95.8049163818359,-191.928466796875,79.9285888671875,16.7384643554688,-191.928466796875,86.028564453125,2.1417236328125,-191.928466796875,74.2684936523438,14.3731079101563,-191.928466796875,80.3684692382813,-0.2236328125,184.767440795898,80.4163284301758,-0.59857177734375,184.595993041992,79.5277862548828,16.1947631835938,184.754547119141,73.8449554443359,14.0382385253906,184.755035400391,86.0426635742188,1.7718505859375,185.270126342773,-34.9561729431152,-1.54461669921875,198.534423828125,78.7276916503906,-1.83761596679688,198.669586181641,-35.1261215209961,-1.53103637695313,185.1376953125,78.7276916503906,-1.83761596679688,198.534423828125,69.6153259277344,20.0041809082031,198.599487304688,-35.0591201782227,20.3279685974121,185.1376953125,69.6153259277344,20.0041809082031,185.324127197266,-34.9286270141602,20.2912750244141,-198.276123046875,79.0201721191406,-2.27285766601563,-198.054992675781,-39.3998222351074,-1.5620002746582,-198.276123046875,71.2047729492188,19.1365356445313,-197.906585693359,-39.2758255004883,19.8416061401367,-184.499420166016,-39.3993148803711,-1.57223510742188,-184.725830078125,79.0201721191406,-2.27285766601563,-184.725830078125,71.2047729492188,19.1365356445313,-184.624206542969,-39.3635940551758,19.9500007629395,190.730224609375,13.67138671875,163.5234375,190.730224609375,7.57144165039063,178.120208740234,190.730224609375,8.88650512695313,161.523895263672,190.730224609375,2.78659057617188,176.120635986328,-185.900756835938,2.65594482421875,175.982315063477,-185.876693725586,13.2564086914063,163.674560546875,-185.932052612305,8.5230712890625,161.62646484375,-185.907516479492,7.35202026367188,177.982131958008,93.595458984375,43.0909729003906,99.5247344970703,86.88623046875,84.40478515625,1.8980712890625,46.548828125,85.5635375976563,2.14678955078125,-123.193061828613,78.5750274658203,16.0286865234375,-129.071426391602,84.630241394043,1.46824645996094,-185.19140625,3.287353515625,107.798629760742,-185.321044921875,0.1890869140625,18.5198364257813,
  611. -185.2109375,2.85128784179688,170.065811157227,-196.7919921875,2.9173583984375,107.798645019531,-197.0439453125,0.1890869140625,18.5198364257813,-196.746826171875,2.48336791992188,170.065826416016,-178.683349609375,58.8741149902344,56.9620056152344,-151.393798828125,58.9396057128906,56.8954162597656,-178.685302734375,63.4796447753906,58.9864196777344,-151.39697265625,63.5448913574219,58.9203796386719,-65.1513671875,44.2817077636719,92.0987091064453,-65.152587890625,49.2483825683594,94.2827301025391,-40.39404296875,44.1971740722656,92.3601837158203,-40.396240234375,49.163818359375,94.5435791015625,-126.450927734375,48.77001953125,84.2086029052734,-123.348876953125,53.9276123046875,78.9010467529297,-100.330810546875,50.9908142089844,77.6102447509766,-98.8955078125,38.9511108398438,98.8960418701172,-148.685302734375,53.8532104492188,86.3849334716797,-122.550048828125,59.0375366210938,81.1743774414063,-99.562255859375,55.8979187011719,79.7934875488281,-67.8896484375,46.9329833984375,101.59977722168,-40.015625,54.1610412597656,78.1636657714844,-17.324462890625,51.6181030273438,77.2698211669922,-39.372802734375,59.0846862792969,80.3505554199219,-16.6826171875,56.5418395996094,79.4566955566406,12.678466796875,65.5631713867188,59.6524658203125,-15.893798828125,65.4990234375,59.7186889648438,-15.89111328125,60.8934936523438,57.6943359375,12.681640625,60.9578552246094,57.6275939941406,41.29638671875,52.2078247070313,78.018310546875,41.2822265625,57.3793334960938,80.2927856445313,93.324951171875,48.03271484375,101.747543334961,64.524169921875,57.3363037109375,80.1756591796875,117.66552734375,51.3377075195313,76.8896484375,117.663330078125,56.2945556640625,79.0957641601563,119.289794921875,58.8991088867188,57.0325317382813,148.856689453125,58.964599609375,56.9659423828125,119.28759765625,63.504638671875,59.0569458007813,148.853515625,63.5698852539063,58.9909057617188,176.19287109375,55.5593566894531,78.9898376464844,199.777099609375,52.6256713867188,77.6996459960938,152.653564453125,48.6029357910156,84.1952056884766,152.63916015625,53.6771240234375,86.4531707763672,
  612. 176.927001953125,60.6692810058594,81.2631530761719,200.033935546875,57.5327758789063,79.8828735351563,86.88623046875,78.7774658203125,-0.45355224609375,46.548828125,79.9315185546875,-0.20684814453125,-121.170486450195,72.9052047729492,13.6766204833984,-128.89225769043,78.9992141723633,-0.88543701171875,-199.999755859375,51.9781799316406,76.9387359619141,-179.63623046875,52.0557250976563,76.8276824951172,-200.0009765625,56.9350280761719,79.1448669433594,-179.638427734375,57.0125427246094,79.0338439941406,-126.454833984375,53.84423828125,86.4660491943359,-99.4013671875,43.886474609375,101.092330932617,39.417724609375,51.5630187988281,86.1210632324219,39.76708984375,46.5033874511719,83.8578186035156,14.78466796875,45.1738891601563,83.3741455078125,14.423095703125,50.2327880859375,85.6376953125,64.53662109375,52.3699035644531,77.9912872314453,173.073486328125,48.5939025878906,84.2768859863281,173.06982421875,53.6681518554688,86.5342864990234,117.85131072998,42.5961380004883,95.4227447509766,120.137817382813,37.7944717407227,93.4970321655273,125.750671386719,48.9686584472656,80.9764862060547,125.892074584961,44.152099609375,79.0898895263672,117.9384765625,6.25877380371094,177.600250244141,120.213905334473,1.45707702636719,175.674545288086,125.750396728516,12.6312255859375,163.153762817383,125.892402648926,7.81466674804688,161.267227172852
  613. }
  614. PolygonVertexIndex: *1296 {
  615. a: 0,1,-3,2,1,-4,4,5,-1,0,5,-2,5,6,-8,6,5,-5,2,3,-7,6,3,-8,8,9,-11,9,8,-12,12,13,-15,14,13,-16,16,17,-19,17,16,-20,20,21,-23,22,21,-24,24,25,-27,25,24,-28,28,29,-31,30,29,-32,32,33,-35,33,32,-36,36,37,-39,38,39,-37,40,41,-43,42,43,-41,44,45,-47,45,44,-48,48,49,-51,50,51,-49,52,53,-55,53,52,-56,56,57,-59,56,58,-60,60,61,-63,62,61,-64,64,65,-67,65,64,-68,68,69,-71,70,69,-72,72,73,-75,73,72,-76,76,77,-79,76,78,-80,80,81,-83,82,83,-81,84,85,-87,85,84,-88,88,89,-91,90,89,-92,92,93,-95,94,95,-93,96,97,-99,97,96,-100,86,95,-85,95,86,-93,100,101,-103,102,101,-104,101,104,-104,104,101,-106,104,106,-108,106,104,-106,108,109,-111,110,109,-112,112,113,-115,113,112,-116,116,117,-119,116,118,-120,120,121,-123,122,123,-121,124,125,-127,126,127,-125,128,129,-131,129,128,-132,132,133,-135,133,132,-136,136,137,-139,138,137,-140,135,132,-140,138,139,-133,134,137,-137,137,134,-134,132,134,-137,132,136,-139,139,137,-136,137,133,-136,140,141,-143,141,140,-144,144,145,-147,146,145,-148,140,147,-144,146,147,-141,141,145,-143,145,144,-143,140,142,-147,142,144,-147,145,141,-148,147,141,-144,148,149,-151,149,148,-152,152,153,-155,154,153,-156,155,148,-155,151,148,-156,150,149,-154,153,152,-151,150,152,-155,150,154,-149,149,151,-156,155,153,-150,156,157,-159,159,158,-158,160,161,-163,161,160,-164,164,165,-167,167,166,-166,168,169,-171,169,168,-172,172,173,-175,173,172,-176,174,176,-178,176,174,-174,178,179,-177,176,179,-178,175,172,-179,179,178,-173,180,181,-183,183,182,-182,181,180,-185,184,180,-186,184,186,-188,186,184,-186,183,186,-183,186,183,-188,183,181,-188,187,181,-185,179,174,-178,174,179,-173,188,189,-191,191,190,-190,192,193,-195,193,192,-196,87,84,-197,95,196,-85,196,95,-95,171,197,-170,197,198,-170,198,199,-170,199,198,-201,200,165,-200,164,199,-166,11,201,-203,201,11,-9,203,201,-9,204,9,-206,10,9,-205,204,206,-11,202,204,-206,204,202,-202,201,206,-205,206,201,-204,23,207,-23,22,207,-209,207,24,-209,208,24,-27,20,209,-22,209,20,-211,210,27,-210,27,210,-26,22,208,-21,210,20,-209,208,26,-211,25,210,-27,29,211,-32,211,
  616. 29,-213,212,32,-212,32,212,-36,30,213,-29,214,28,-214,213,34,-215,33,214,-35,40,215,-42,215,40,-58,215,57,-57,36,216,-38,37,216,-218,216,52,-218,217,52,-55,47,44,-219,51,47,-219,47,51,-51,43,57,-41,57,43,-220,57,219,-59,38,220,-40,220,38,-222,221,55,-221,55,221,-54,37,217,-39,221,38,-218,217,54,-222,53,221,-55,222,45,-48,47,50,-223,49,222,-51,63,223,-63,62,223,-225,223,64,-225,224,64,-67,60,225,-62,225,60,-227,226,67,-226,67,226,-66,62,224,-61,226,60,-225,224,66,-227,65,226,-67,227,69,-69,69,227,-229,72,228,-228,228,72,-75,69,228,-72,229,71,-229,228,74,-230,73,229,-75,70,230,-69,227,68,-231,230,75,-228,72,227,-76,79,231,-77,231,79,-233,232,99,-232,99,232,-98,233,86,-86,233,92,-87,92,233,-94,78,232,-80,232,78,-235,234,97,-233,97,234,-99,87,196,-86,233,85,-197,196,94,-234,93,233,-95,103,235,-103,235,103,-105,235,104,-108,236,101,-101,101,236,-106,105,236,-107,102,235,-101,236,100,-236,235,107,-237,106,236,-108,111,237,-111,110,237,-239,237,112,-239,238,112,-115,108,239,-110,239,108,-241,240,115,-240,115,240,-114,110,238,-109,240,108,-239,238,114,-241,113,240,-115,116,241,-118,117,241,-243,241,131,-243,242,131,-129,123,243,-121,243,123,-245,244,127,-244,127,244,-125,118,245,-120,245,118,-247,246,129,-246,129,246,-131,170,247,-169,170,248,-248,249,248,-171,248,249,-251,249,167,-251,167,249,-167,15,251,-15,14,251,-253,251,18,-253,18,251,-17,12,253,-14,253,12,-255,17,253,-255,253,17,-20,13,253,-16,251,15,-254,253,16,-252,16,253,-20,14,254,-13,254,14,-253,252,18,-255,17,254,-19,21,209,-24,207,23,-210,209,24,-208,24,209,-28,31,211,-31,30,211,-214,211,34,-214,34,211,-33,28,212,-30,212,28,-215,214,33,-213,212,33,-36,215,42,-42,42,215,-256,215,59,-256,59,215,-57,42,255,-44,43,255,-220,255,58,-220,58,255,-60,39,216,-37,216,39,-221,220,55,-217,52,216,-56,45,222,-47,46,222,-257,222,48,-257,48,222,-50,46,256,-45,218,44,-257,256,51,-219,51,256,-49,61,223,-64,223,61,-226,225,67,-224,64,223,-68,71,230,-71,230,71,-230,229,73,-231,230,73,-76,81,257,-83,257,81,-259,88,257,-259,257,88,-91,80,258,-82,258,80,-260,89,258,-260,258,89,-89,82,
  617. 257,-84,83,257,-261,257,91,-261,91,257,-91,231,77,-77,77,231,-262,231,96,-262,96,231,-100,83,260,-81,80,260,-260,260,89,-260,89,260,-92,77,261,-79,234,78,-262,261,98,-235,98,261,-97,109,239,-112,237,111,-240,239,112,-238,112,239,-116,262,122,-122,122,262,-264,262,125,-264,125,262,-127,120,262,-122,262,120,-244,127,262,-244,262,127,-127,122,263,-124,123,263,-245,263,124,-245,124,263,-126,119,241,-117,241,119,-246,245,129,-242,131,241,-130,117,246,-119,246,117,-243,242,128,-247,130,246,-129,157,264,-160,265,159,-265,264,160,-266,160,264,-164,158,266,-157,266,158,-268,267,162,-267,161,266,-163,156,264,-158,264,156,-267,161,264,-267,264,161,-164,159,265,-159,267,158,-266,265,162,-268,162,265,-161,200,167,-166,167,200,-251,200,248,-251,248,200,-199,197,248,-199,248,197,-248,197,168,-248,168,197,-172,166,199,-165,199,166,-250,170,199,-250,199,170,-170,189,268,-192,269,191,-269,268,192,-270,192,268,-196,190,270,-189,270,190,-272,271,194,-271,193,270,-195,188,268,-190,268,188,-271,193,268,-271,268,193,-196,191,269,-191,271,190,-270,269,194,-272,194,269,-193
  618. }
  619. Edges: *660 {
  620. a: 0,1,2,4,5,6,7,8,10,12,13,14,17,19,20,22,24,25,26,28,29,30,31,32,34,35,36,37,38,40,41,42,43,44,46,47,48,49,50,52,53,54,55,56,58,59,60,61,62,64,65,66,67,68,69,70,72,73,74,75,76,78,79,80,82,83,84,85,86,87,88,90,91,92,94,95,96,97,98,100,101,102,103,104,106,107,108,109,110,112,113,114,115,116,118,119,120,121,122,124,125,126,127,128,130,131,132,133,134,135,136,138,139,140,142,143,144,145,146,148,149,150,151,152,153,154,156,157,158,160,161,162,163,166,168,169,170,172,173,174,175,178,179,180,181,182,185,186,187,188,190,191,192,193,194,196,197,198,199,200,202,203,204,205,206,207,208,210,211,212,213,214,216,217,218,220,221,222,223,224,226,227,228,229,230,232,233,235,236,239,240,242,245,248,253,258,259,260,262,263,264,265,266,268,269,270,271,275,276,277,280,283,289,294,295,296,298,299,300,301,302,304,305,306,307,311,313,314,316,320,326,330,331,332,333,335,336,337,338,340,341,342,343,344,345,347,348,349,350,352,353,354,355,356,358,359,360,361,362,365,366,367,368,370,373,374,377,378,379,380,381,383,385,386,388,389,390,391,392,395,396,397,400,403,408,414,415,416,417,419,420,421,422,424,425,427,428,429,434,435,436,438,439,441,442,445,446,447,448,450,453,454,455,458,459,461,462,463,464,467,468,469,471,473,476,477,482,483,484,487,488,489,490,494,495,496,499,500,501,502,505,508,512,514,519,520,523,524,525,526,529,531,532,534,536,537,538,540,543,544,547,548,551,552,553,556,557,558,559,563,565,566,567,569,572,573,577,578,580,582,583,586,587,588,589,592,595,599,601,606,608,610,612,615,616,619,620,621,622,626,627,628,631,632,633,634,637,640,644,646,651,653,655,656,657,659,662,664,666,668,670,672,675,676,680,681,682,687,688,691,692,693,694,697,699,701,702,706,708,712,713,714,718,721,725,727,732,733,737,740,741,743,745,748,751,755,757,762,763,766,767,768,769,773,774,775,778,779,780,781,784,787,791,793,798,799,802,803,804,805,809,810,811,814,815,816,817,820,822,823,826,827,828,829,832,834,835,837,838,840,842,844,845,846,847,850,852,853,856,857,858,859,862,864,865,868,869,870,872,875,877,881,882,888,893,895,901,905,906,913,
  621. 916,918,924,929,931,936,940,941,942,943,949,952,954,960,965,967,973,976,977,978,979,985,989,990,996,1001,1003,1008,1013,1015,1020,1021,1024,1025,1026,1028,1031,1032,1036,1037,1038,1040,1045,1048,1049,1050,1051,1056,1060,1061,1062,1063,1069,1072,1074,1081,1085,1086,1093,1097,1098,1104,1106,1108,1109,1110,1111,1114,1116,1121,1122,1129,1132,1134,1140,1145,1147,1152,1157,1159,1164,1165,1167,1169,1170,1171,1174,1176,1177,1180,1181,1182,1183,1185,1188,1193,1194,1201,1205,1206,1212,1216,1218,1223,1224,1228,1230,1236,1241,1242,1248,1249,1251,1253,1254,1255,1258,1260,1261,1264,1265,1266,1267,1269,1272,1277,1278,1285,1289,1290
  622. }
  623. GeometryVersion: 124
  624. LayerElementNormal: 0 {
  625. Version: 102
  626. Name: ""
  627. MappingInformationType: "ByPolygonVertex"
  628. ReferenceInformationType: "Direct"
  629. Normals: *3888 {
  630. a: 0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.00787157565355301,-0.999690115451813,0.023614726960659,0.0078735277056694,-0.999938011169434,0.0078735277056694,-0.00787157565355301,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.999690115451813,0.023614726960659,0.0078735277056694,-0.999938011169434,0.0078735277056694,0.0157455932348967,-0.999845147132874,0.00787279661744833,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,0.00787157565355301,0.999690115451813,-0.023614726960659,-0.0157455932348967,0.999845147132874,-0.00787279661744833,0.00787157565355301,0.999690115451813,-0.023614726960659,0.00787157565355301,0.999690115451813,-0.023614726960659,-0.0157455932348967,0.999845147132874,-0.00787279661744833,-0.0157455932348967,0.999845147132874,-0.00787279661744833,-0.023614726960659,0.999690115451813,-0.00787157565355301,-0.0157382767647505,0.999380588531494,-0.031476553529501,-0.023615462705493,0.999721229076386,2.21982705345433e-016,-0.0157382767647505,0.999380588531494,-0.031476553529501,-0.023614726960659,0.999690115451813,-0.00787157565355301,-0.0157382767647505,0.999380588531494,-0.031476553529501,0.236161917448044,0.425091445446014,0.873799085617065,-0.0628500655293465,0.0235687755048275,0.997744739055634,0.0947824716567993,-0.781955361366272,0.616086065769196,0.0947824716567993,-0.781955361366272,0.616086065769196,-0.0628500655293465,0.0235687755048275,0.997744739055634,
  631. -0.0630312263965607,-0.732737958431244,0.677585601806641,-0.0706888660788536,2.21489163069869e-016,-0.997498512268066,0.0708375945687294,0.739859402179718,-0.669021785259247,0.0786499977111816,-0.165164992213249,-0.983124971389771,0.0708375945687294,0.739859402179718,-0.669021785259247,-0.0706888660788536,2.21489163069869e-016,-0.997498512268066,-0.10224499553442,0.833689987659454,-0.542684972286224,0.268049120903015,0.575517237186432,0.772612154483795,-0.0157837904989719,0.205189272761345,0.978595018386841,0.0708200484514236,-0.865578413009644,0.495740383863449,0.0708200484514236,-0.865578413009644,0.495740383863449,-0.0157837904989719,0.205189272761345,0.978595018386841,-0.10224499553442,-0.833689987659454,0.542684972286224,-0.0236125327646732,-0.0157416891306639,-0.999597251415253,0.0235274229198694,0.7450350522995,-0.666610300540924,0.117811143398285,-0.149227440357208,-0.981759488582611,0.0235274229198694,0.7450350522995,-0.666610300540924,-0.0236125327646732,-0.0157416891306639,-0.999597251415253,-0.118033424019814,0.826233983039856,-0.550822615623474,0.251353710889816,0.565545797348022,0.785480260848999,-0.0629141628742218,0.212335288524628,0.975169479846954,0.141662031412125,-0.865712463855743,0.480076909065247,0.141662031412125,-0.865712463855743,0.480076909065247,-0.0629141628742218,0.212335288524628,0.975169479846954,-0.0862725228071213,-0.831353366374969,0.549006938934326,0,-0.00787377171218395,-0.999969005584717,0,0.749147057533264,-0.662403702735901,0.180543541908264,-0.141294941306114,-0.973365187644959,0,0.749147057533264,-0.662403702735901,0,-0.00787377171218395,-0.999969005584717,-0.181615442037582,0.813321232795715,-0.552742600440979,-0.0789583101868629,-0.757999837398529,0.647458136081696,0.229250803589821,-0.909098029136658,0.347828835248947,0.141382083296776,0.0235636811703444,0.989674627780914,0.141382083296776,0.0235636811703444,0.989674627780914,-0.0393383838236332,0.00786767713725567,0.999194979667664,-0.0789583101868629,-0.757999837398529,0.647458136081696,-0.0869273319840431,-0.74283355474472,0.663808703422546,
  632. 0.290645658969879,-0.95048987865448,0.109974034130573,0.0628655776381493,-0.00785819720476866,0.99799108505249,0.0628655776381493,-0.00785819720476866,0.99799108505249,-0.220417782664299,0.653381288051605,0.724229872226715,-0.0869273319840431,-0.74283355474472,0.663808703422546,-0.0471856221556664,-0.92798388004303,0.369620710611343,0.0627513751387596,0.39219605922699,0.917738795280457,-0.126187846064568,0.481091171503067,0.867541432380676,0.0627513751387596,0.39219605922699,0.917738795280457,-0.0471856221556664,-0.92798388004303,0.369620710611343,0.149434998631477,-0.967394948005676,0.204489976167679,-0.0707937553524971,0.747267425060272,-0.660741746425629,0.0945938304066658,0.985352337360382,-0.141890734434128,0.0314716808497906,-0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.0236037615686655,-0.999225914478302,-0.0710846334695816,-0.142169266939163,-0.987286627292633,-0.0707937553524971,0.747267425060272,-0.660741746425629,-0.0628675222396851,2.21605378637211e-016,-0.998021900653839,0.0943129435181618,0.730925261974335,-0.675909340381622,0.102008640766144,-0.109855458140373,-0.98869913816452,0.0943129435181618,0.730925261974335,-0.675909340381622,-0.0628675222396851,2.21605378637211e-016,-0.998021900653839,-0.118198230862617,0.803747892379761,-0.583111226558685,0.0235971882939339,-0.0393286496400833,-0.99894767999649,-0.228502362966537,-0.196984797716141,-0.953406453132629,-0.0315656140446663,0.781248986721039,-0.623420894145966,0.0235971882939339,-0.0393286496400833,-0.99894767999649,-0.0315656140446663,0.781248986721039,-0.623420894145966,0.213048011064529,0.836410701274872,-0.505002677440643,0.229473173618317,0.419382035732269,0.878328382968903,-0.0550277717411518,0.0157222207635641,0.998361051082611,0.0947824716567993,-0.781955361366272,0.616086065769196,0.0947824716567993,-0.781955361366272,0.616086065769196,-0.0550277717411518,0.0157222207635641,0.998361051082611,-0.0630312263965607,-0.732737958431244,0.677585601806641,-0.0706866830587387,-0.00785407610237598,-0.997467637062073,0.0708375945687294,0.739859402179718,-0.669021785259247,
  633. 0.0786499977111816,-0.165164992213249,-0.983124971389771,0.0708375945687294,0.739859402179718,-0.669021785259247,-0.0706866830587387,-0.00785407610237598,-0.997467637062073,-0.10224499553442,0.833689987659454,-0.542684972286224,0.235869765281677,0.581812083721161,0.778370201587677,-0.0392522253096104,0.188410669565201,0.981305599212646,0.0868027433753014,-0.844353914260864,0.528707563877106,0.0868027433753014,-0.844353914260864,0.528707563877106,-0.0392522253096104,0.188410669565201,0.981305599212646,-0.0942314863204956,-0.840230762958527,0.533978402614594,-0.0235274229198694,0.7450350522995,-0.666610300540924,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.165210992097855,0.818187773227692,-0.550703287124634,-0.0078735277056694,-0.0078735277056694,-0.999938011169434,-0.0235274229198694,0.7450350522995,-0.666610300540924,0.142031997442245,-0.149922668933868,-0.978442668914795,-0.0157441273331642,-0.763590157032013,0.645509243011475,0.322944790124893,-0.874313950538635,0.362328290939331,0.0790544673800468,0.0395272336900234,0.996086359024048,-0.0157441273331642,-0.763590157032013,0.645509243011475,0.0790544673800468,0.0395272336900234,0.996086359024048,-0.0948090925812721,-2.21044404598112e-016,0.995495498180389,-0.0790767148137093,-0.743321120738983,0.66424435377121,0.283887326717377,-0.954176902770996,0.0946291163563728,0.0628655776381493,-0.00785819720476866,0.99799108505249,0.0628655776381493,-0.00785819720476866,0.99799108505249,-0.213014855980873,0.662712872028351,0.717938959598541,-0.0790767148137093,-0.743321120738983,0.66424435377121,-0.0785746946930885,-0.935038864612579,0.345728695392609,0.102690622210503,0.387064665555954,0.916316330432892,-0.102308310568333,0.503671705722809,0.857815861701965,0.102690622210503,0.387064665555954,0.916316330432892,-0.0785746946930885,-0.935038864612579,0.345728695392609,0.134037047624588,-0.954028487205505,0.268074095249176,0.180962175130844,-0.590094029903412,-0.786792039871216,-0.102008640766144,-0.109855458140373,-0.98869913816452,0.0552123263478279,0.883397221565247,-0.465361028909683,
  634. 0.0552123263478279,0.883397221565247,-0.465361028909683,-0.102008640766144,-0.109855458140373,-0.98869913816452,-0.102473445236683,0.827670156955719,-0.551780104637146,-0.0707937553524971,0.747267425060272,-0.660741746425629,0.102397121489048,0.984587788581848,-0.141780629754066,0.0314716808497906,-0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.0236037615686655,-0.999225914478302,-0.0789361596107483,-0.142085090279579,-0.986702024936676,-0.0707937553524971,0.747267425060272,-0.660741746425629,0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.0315626673400402,0.733832061290741,-0.678597331047058,0.212427273392677,0.778900027275085,-0.590075790882111,0.0315626673400402,0.733832061290741,-0.678597331047058,0.0550328753888607,-0.00786183960735798,-0.998453617095947,-0.165057823061943,-0.0864588618278503,-0.98248702287674,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,-0.999690115451813,-0.023614726960659,-0.00787157565355301,-0.999597251415253,-0.0236125327646732,-0.0157416891306639,0.229473173618317,0.419382035732269,0.878328382968903,-0.0550277717411518,0.0157222207635641,0.998361051082611,0.0864108353853226,-0.785552978515625,0.612731337547302,0.0864108353853226,-0.785552978515625,0.612731337547302,-0.0550277717411518,0.0157222207635641,0.998361051082611,-0.0630312263965607,-0.732737958431244,0.677585601806641,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.0627977550029755,-0.0470983162522316,-0.996914327144623,0.0629999414086342,0.740249276161194,-0.669374346733093,0.0708266273140907,-0.165262132883072,-0.983703196048737,
  635. 0.0629999414086342,0.740249276161194,-0.669374346733093,-0.0627977550029755,-0.0470983162522316,-0.996914327144623,-0.0946261584758759,0.812207877635956,-0.57564252614975,0.260708719491959,0.576719343662262,0.774225890636444,-0.0157110616564751,0.188532739877701,0.981941342353821,0.070636585354805,-0.847639143466949,0.525850176811218,0.070636585354805,-0.847639143466949,0.525850176811218,-0.0157110616564751,0.188532739877701,0.981941342353821,-0.109760887920856,-0.838886797428131,0.533124268054962,-0.0236125327646732,-0.0157416891306639,-0.999597251415253,0.0235274229198694,0.7450350522995,-0.666610300540924,0.110055543482304,-0.149361103773117,-0.982638835906982,0.0235274229198694,0.7450350522995,-0.666610300540924,-0.0236125327646732,-0.0157416891306639,-0.999597251415253,-0.110263586044312,0.826976895332336,-0.551317870616913,-0.0157285407185555,-0.770698487758636,0.637005865573883,0.299537777900696,-0.92226105928421,0.244359776377678,0.0627726167440414,0.0549260377883911,0.996515274047852,-0.0157285407185555,-0.770698487758636,0.637005865573883,0.0627726167440414,0.0549260377883911,0.996515274047852,-0.0947617813944817,0.0315872617065907,0.994998693466187,-0.0947617813944817,-0.742300629615784,0.663332462310791,0.298289328813553,-0.949816048145294,0.0941966250538826,0.0706866830587387,-0.00785407610237598,0.997467637062073,0.0706866830587387,-0.00785407610237598,0.997467637062073,-0.2280003875494,0.66041487455368,0.715449512004852,-0.0947617813944817,-0.742300629615784,0.663332462310791,-0.0236477199941874,0.811905026435852,-0.583310425281525,0.338059097528458,0.9355588555336,-0.102203913033009,-0.00789263378828764,-0.205208465456963,-0.978686571121216,-0.00789263378828764,-0.205208465456963,-0.978686571121216,-0.235209137201309,-0.172486692667007,-0.956517100334167,-0.0236477199941874,0.811905026435852,-0.583310425281525,0.102626599371433,0.00789435394108295,-0.994688630104065,-0.0712113529443741,0.743763089179993,-0.664639294147491,0.0866975411772728,0.796041071414948,-0.599001169204712,-0.0712113529443741,0.743763089179993,-0.664639294147491,
  636. 0.102626599371433,0.00789435394108295,-0.994688630104065,-0.047385323792696,-0.0868730992078781,-0.995091795921326,0,0.912509322166443,0.409055888652802,0,0.912509322166443,0.409055888652802,0,0.912509322166443,0.409055888652802,0,0.912509322166443,0.409055888652802,0,0.912509322166443,0.409055888652802,0,0.912509322166443,0.409055888652802,0,-0.912509322166443,-0.409055888652802,0,-0.912509322166443,-0.409055888652802,0,-0.912509322166443,-0.409055888652802,0,-0.912509322166443,-0.409055888652802,0,-0.912509322166443,-0.409055888652802,0,-0.912509322166443,-0.409055888652802,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.268458217382431,0.963291347026825,0,-0.268458217382431,0.963291347026825,0,-0.268458217382431,0.963291347026825,0,-0.268458217382431,0.963291347026825,0,-0.268458217382431,0.963291347026825,0,-0.268458217382431,0.963291347026825,0,0.259128570556641,-0.965842843055725,0,0.259128570556641,-0.965842843055725,0,0.259128570556641,-0.965842843055725,0,0.259128570556641,-0.965842843055725,0,0.259128570556641,-0.965842843055725,0,0.259128570556641,-0.965842843055725,0,0.909559190273285,0.415574461221695,0,0.909559190273285,0.415574461221695,0,0.909559190273285,0.415574461221695,0,0.909559190273285,0.415574461221695,0,0.909559190273285,0.415574461221695,0,0.909559190273285,0.415574461221695,0,-0.909559190273285,-0.415574461221695,0,-0.909559190273285,-0.415574461221695,0,-0.909559190273285,-0.415574461221695,0,-0.909559190273285,-0.415574461221695,0,-0.909559190273285,-0.415574461221695,0,-0.909559190273285,-0.415574461221695,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.244390159845352,0.969677090644836,0,-0.244390159845352,0.969677090644836,0,-0.244390159845352,0.969677090644836,0,-0.244390159845352,0.969677090644836,0,-0.244390159845352,0.969677090644836,0,-0.244390159845352,0.969677090644836,0,0.244390159845352,-0.969677090644836,0,0.244390159845352,-0.969677090644836,0,0.244390159845352,-0.969677090644836,0,0.244390159845352,-0.969677090644836,
  637. 0,0.244390159845352,-0.969677090644836,0,0.244390159845352,-0.969677090644836,0,0.912509322166443,0.409055888652802,0,0.912509322166443,0.409055888652802,0,0.912509322166443,0.409055888652802,0,0.912509322166443,0.409055888652802,0,0.912509322166443,0.409055888652802,0,0.912509322166443,0.409055888652802,0,-0.912509322166443,-0.409055888652802,0,-0.912509322166443,-0.409055888652802,0,-0.912509322166443,-0.409055888652802,0,-0.912509322166443,-0.409055888652802,0,-0.912509322166443,-0.409055888652802,0,-0.912509322166443,-0.409055888652802,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.275761604309082,0.961226165294647,0,-0.275761604309082,0.961226165294647,0,-0.275761604309082,0.961226165294647,0,-0.275761604309082,0.961226165294647,0,-0.275761604309082,0.961226165294647,0,-0.275761604309082,0.961226165294647,0,0.268458217382431,-0.963291347026825,0,0.268458217382431,-0.963291347026825,0,0.268458217382431,-0.963291347026825,0,0.268458217382431,-0.963291347026825,0,0.268458217382431,-0.963291347026825,0,0.268458217382431,-0.963291347026825,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.0314804539084435,-0.999504387378693,0,2.22044604925031e-016,-1,0,-0.047191459685564,-0.998885869979858,0,2.22044604925031e-016,-1,0,-0.0314804539084435,-0.999504387378693,0,2.22044604925031e-016,-1,0.999721229076386,-0.023615462705493,-5.243686086563e-018,1,0,0,0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,1,0,0,0.999721229076386,-0.023615462705493,-5.243686086563e-018,1,0,0,0,-2.22044604925031e-016,1,0,-0.00787377171218395,0.999969005584717,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-0.00787377171218395,0.999969005584717,0,-0.0157460793852806,0.999876022338867,-1,0,0,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,-1,0,0,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-1,0,0,-0.999969005584717,-0.00787377171218395,-1.74832852910177e-018,
  638. -1,0,0,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-1,0,0,-0.998484432697296,-0.0550345741212368,-1.22201302679674e-017,-1,0,0,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0,-0.047191459685564,-0.998885869979858,0,2.22044604925031e-016,-1,0,-0.0393396019935608,-0.999225914478302,0,-0.0393396019935608,-0.999225914478302,0,2.22044604925031e-016,-1,0,2.22044604925031e-016,-1,0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,1,0,0,0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,1,0,0,0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,1,0,0,0,0.00787377171218395,0.999969005584717,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,-2.22044604925031e-016,1,0,0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.0236066840589046,-0.904922902584076,-0.424920320510864,0.0236066840589046,-0.904922902584076,-0.424920320510864,0.0236852765083313,-0.907935619354248,-0.418439894914627,0.0235928110778332,-0.912255346775055,-0.408942043781281,0.0236852765083313,-0.907935619354248,-0.418439894914627,0.0236066840589046,-0.904922902584076,-0.424920320510864,0.0236852765083313,-0.907935619354248,-0.418439894914627,0.0235928110778332,-0.912255346775055,-0.408942043781281,0.0235928110778332,-0.912255346775055,-0.408942043781281,-0.0236440468579531,0.922117829322815,0.386186093091965,0,0.922375679016113,0.386294096708298,-0.00788330752402544,0.922347009181976,0.386282086372375,0,0.922375679016113,0.386294096708298,0,0.922375679016113,0.386294096708298,-0.00788330752402544,0.922347009181976,0.386282086372375,0,0.922375679016113,0.386294096708298,
  639. 0,0.922375679016113,0.386294096708298,-0.00788330752402544,0.922347009181976,0.386282086372375,0,0.922375679016113,0.386294096708298,0,0.922375679016113,0.386294096708298,0,0.922375679016113,0.386294096708298,0,0.922375679016113,0.386294096708298,0.0236440468579531,0.922117829322815,0.386186093091965,0,0.922375679016113,0.386294096708298,0.0236440468579531,0.922117829322815,0.386186093091965,0,0.922375679016113,0.386294096708298,0.0236440468579531,0.922117829322815,0.386186093091965,0.999876022338867,0.0157460793852806,3.49633197622281e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999876022338867,0.0157460793852806,3.49633197622281e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999876022338867,0.0157460793852806,3.49633197622281e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999504387378693,0.0314804539084435,6.99006495096098e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,0.999721229076386,0.023615462705493,5.243686086563e-018,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.0157382767647505,-0.999380588531494,0.031476553529501,0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0157382767647505,-0.999380588531494,0.031476553529501,0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0157382767647505,-0.999380588531494,0.031476553529501,0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0314794778823853,-0.999473392963409,-0.00786986947059631,0.0236125327646732,-0.999597251415253,0.0157416891306639,
  640. 0.0314794778823853,-0.999473392963409,-0.00786986947059631,0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0314794778823853,-0.999473392963409,-0.00786986947059631,-0.0315508879721165,-0.914975702762604,-0.402273803949356,-0.0078407870605588,-0.90953129529953,-0.415561735630035,-0.0315508879721165,-0.914975702762604,-0.402273803949356,-0.0315508879721165,-0.914975702762604,-0.402273803949356,-0.0078407870605588,-0.90953129529953,-0.415561735630035,-0.0078407870605588,-0.90953129529953,-0.415561735630035,-0.0078407870605588,-0.90953129529953,-0.415561735630035,0.0394717715680599,-0.899956345558167,-0.43418949842453,-0.0078407870605588,-0.90953129529953,-0.415561735630035,-0.0078407870605588,-0.90953129529953,-0.415561735630035,0.0394717715680599,-0.899956345558167,-0.43418949842453,0.0394717715680599,-0.899956345558167,-0.43418949842453,0.0315508879721165,0.914975702762604,0.402273803949356,0.0078407870605588,0.90953129529953,0.415561735630035,0.0315508879721165,0.914975702762604,0.402273803949356,0.0078407870605588,0.90953129529953,0.415561735630035,0.0315508879721165,0.914975702762604,0.402273803949356,0.0078407870605588,0.90953129529953,0.415561735630035,0.0078407870605588,0.90953129529953,0.415561735630035,-0.0393359512090683,0.896859645843506,0.440562635660172,0.0078407870605588,0.90953129529953,0.415561735630035,-0.0393359512090683,0.896859645843506,0.440562635660172,0.0078407870605588,0.90953129529953,0.415561735630035,-0.0393359512090683,0.896859645843506,0.440562635660172,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999102234840393,0.0157338920980692,0.0393347330391407,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999102234840393,0.0157338920980692,0.0393347330391407,
  641. 0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999102234840393,0.0157338920980692,0.0393347330391407,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999969005584717,1.74832852910177e-018,-0.00787377171218395,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.996638000011444,-0.0784754380583763,-0.0235426295548677,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.996638000011444,-0.0784754380583763,-0.0235426295548677,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.996638000011444,-0.0784754380583763,-0.0235426295548677,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.996638000011444,0.0784754380583763,0.0235426295548677,0.999102234840393,0.0393347330391407,0.0157338920980692,0.996638000011444,0.0784754380583763,0.0235426295548677,0.999102234840393,0.0393347330391407,0.0157338920980692,0.996638000011444,0.0784754380583763,0.0235426295548677,0,-0.905175149440765,-0.425038784742355,-0.0315734818577766,-0.907737612724304,-0.418348640203476,0,-0.905175149440765,-0.425038784742355,-0.0315734818577766,-0.907737612724304,-0.418348640203476,0,-0.905175149440765,-0.425038784742355,-0.0632593929767609,-0.909353792667389,-0.411186039447784,-0.0315734818577766,-0.907737612724304,-0.418348640203476,-0.0632593929767609,-0.909353792667389,-0.411186039447784,-0.0711290240287781,-0.908870875835419,-0.41096767783165,-0.0947027429938316,-0.899676084518433,-0.426162362098694,-0.0787279531359673,-0.905371487140656,-0.41725817322731,
  642. -0.0947027429938316,-0.899676084518433,-0.426162362098694,-0.0947027429938316,-0.899676084518433,-0.426162362098694,-0.0787279531359673,-0.905371487140656,-0.41725817322731,-0.0787279531359673,-0.905371487140656,-0.41725817322731,-0.0787279531359673,-0.905371487140656,-0.41725817322731,-0.0708463788032532,-0.91313111782074,-0.40146279335022,-0.0787279531359673,-0.905371487140656,-0.41725817322731,-0.0787279531359673,-0.905371487140656,-0.41725817322731,-0.0708463788032532,-0.91313111782074,-0.40146279335022,-0.0708463788032532,-0.91313111782074,-0.40146279335022,0.0708463788032532,-0.91313111782074,-0.40146279335022,0.0708463788032532,-0.91313111782074,-0.40146279335022,0.0551968775689602,-0.906805813312531,-0.417919218540192,0.0471739508211613,-0.904167413711548,-0.424565583467484,0.0708463788032532,-0.91313111782074,-0.40146279335022,0.0551968775689602,-0.906805813312531,-0.417919218540192,0.0708463788032532,-0.91313111782074,-0.40146279335022,0.0471739508211613,-0.904167413711548,-0.424565583467484,0.0471739508211613,-0.904167413711548,-0.424565583467484,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.999442577362061,0.0236088801175356,0.0236088801175356,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.999442577362061,0.0236088801175356,0.0236088801175356,-0.997529208660126,0.0628364831209183,0.0314182415604591,0.110308058559895,0.898222744464874,0.425473928451538,0.0943449884653091,0.904139459133148,0.41669037938118,0.110308058559895,0.898222744464874,0.425473928451538,0.0943449884653091,0.904139459133148,0.41669037938118,0.110308058559895,0.898222744464874,0.425473928451538,0.0943449884653091,0.904139459133148,0.41669037938118,0.0943449884653091,0.904139459133148,0.41669037938118,0.0708463788032532,0.91313111782074,0.40146279335022,0.0943449884653091,0.904139459133148,0.41669037938118,
  643. 0.0708463788032532,0.91313111782074,0.40146279335022,0.0943449884653091,0.904139459133148,0.41669037938118,0.0708463788032532,0.91313111782074,0.40146279335022,0.994719624519348,-0.0947351977229118,-0.0394730009138584,0.996147394180298,-0.0784367993474007,-0.0392183996737003,0.994719624519348,-0.0947351977229118,-0.0394730009138584,0.996147394180298,-0.0784367993474007,-0.0392183996737003,0.994719624519348,-0.0947351977229118,-0.0394730009138584,0.996147394180298,-0.0784367993474007,-0.0392183996737003,0.996147394180298,-0.0784367993474007,-0.0392183996737003,0.997252345085144,-0.0628190487623215,-0.0392619036138058,0.996147394180298,-0.0784367993474007,-0.0392183996737003,0.997252345085144,-0.0628190487623215,-0.0392619036138058,0.996147394180298,-0.0784367993474007,-0.0392183996737003,0.997252345085144,-0.0628190487623215,-0.0392619036138058,0.998206853866577,0.055019274353981,0.0235796887427568,0.997744739055634,0.0628500655293465,0.0235687755048275,0.997744739055634,0.0628500655293465,0.0235687755048275,0.997744739055634,0.0628500655293465,0.0235687755048275,0.99894767999649,0.0393286496400833,0.0235971882939339,0.998206853866577,0.055019274353981,0.0235796887427568,0.99894767999649,0.0393286496400833,0.0235971882939339,0.998206853866577,0.055019274353981,0.0235796887427568,0.99894767999649,0.0393286496400833,0.0235971882939339,-0.0552192069590092,-0.899284183979034,-0.433865189552307,-0.0551968775689602,-0.906805813312531,-0.417919218540192,-0.0552192069590092,-0.899284183979034,-0.433865189552307,-0.0552192069590092,-0.899284183979034,-0.433865189552307,-0.0551968775689602,-0.906805813312531,-0.417919218540192,-0.0551968775689602,-0.906805813312531,-0.417919218540192,-0.0551968775689602,-0.906805813312531,-0.417919218540192,-0.0551574602723122,-0.914037883281708,-0.401861488819122,-0.0551968775689602,-0.906805813312531,-0.417919218540192,-0.0551968775689602,-0.906805813312531,-0.417919218540192,-0.0551574602723122,-0.914037883281708,-0.401861488819122,-0.0551574602723122,-0.914037883281708,-0.401861488819122,
  644. 0.0552192069590092,0.899284183979034,0.433865189552307,0.0551968775689602,0.906805813312531,0.417919218540192,0.0552192069590092,0.899284183979034,0.433865189552307,0.0551968775689602,0.906805813312531,0.417919218540192,0.0552192069590092,0.899284183979034,0.433865189552307,0.0551968775689602,0.906805813312531,0.417919218540192,0.0551968775689602,0.906805813312531,0.417919218540192,0.0551574602723122,0.914037883281708,0.401861488819122,0.0551968775689602,0.906805813312531,0.417919218540192,0.0551574602723122,0.914037883281708,0.401861488819122,0.0551968775689602,0.906805813312531,0.417919218540192,0.0551574602723122,0.914037883281708,0.401861488819122,0.99839198589325,-0.0471681281924248,-0.0314454175531864,0.99799108505249,-0.0550073832273483,-0.0314327888190746,0.99839198589325,-0.0471681281924248,-0.0314454175531864,0.99799108505249,-0.0550073832273483,-0.0314327888190746,0.99839198589325,-0.0471681281924248,-0.0314454175531864,0.99799108505249,-0.0550073832273483,-0.0314327888190746,0.99799108505249,-0.0550073832273483,-0.0314327888190746,0.998206853866577,-0.055019274353981,-0.0235796887427568,0.99799108505249,-0.0550073832273483,-0.0314327888190746,0.998206853866577,-0.055019274353981,-0.0235796887427568,0.99799108505249,-0.0550073832273483,-0.0314327888190746,0.998206853866577,-0.055019274353981,-0.0235796887427568,-0.0157309733331203,0.912396430969238,0.409005284309387,0.0157813336700201,0.915317356586456,0.40242400765419,0.0157813336700201,0.915317356586456,0.40242400765419,0.0157813336700201,0.915317356586456,0.40242400765419,-0.0157309733331203,0.912396430969238,0.409005284309387,-0.0157309733331203,0.912396430969238,0.409005284309387,-0.0787279531359673,0.905371487140656,0.41725817322731,-0.0157309733331203,0.912396430969238,0.409005284309387,-0.0157309733331203,0.912396430969238,0.409005284309387,-0.0157309733331203,0.912396430969238,0.409005284309387,-0.0787279531359673,0.905371487140656,0.41725817322731,-0.0787279531359673,0.905371487140656,0.41725817322731,-0.999752104282379,0.0157441273331642,0.0157441273331642,
  645. -0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999752104282379,0.0157441273331642,0.0157441273331642,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999752104282379,0.0157441273331642,0.0157441273331642,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.997006475925446,-0.07065399736166,-0.0314017795026302,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.997006475925446,-0.07065399736166,-0.0314017795026302,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.997006475925446,-0.07065399736166,-0.0314017795026302,0.999690115451813,-0.00787157565355301,-0.023614726960659,0.999845147132874,0.0157455932348967,0.00787279661744833,0.999690115451813,-0.00787157565355301,-0.023614726960659,0.999845147132874,0.0157455932348967,0.00787279661744833,0.999690115451813,-0.00787157565355301,-0.023614726960659,0.999845147132874,0.0157455932348967,0.00787279661744833,0.999845147132874,0.0157455932348967,0.00787279661744833,0.996515274047852,0.0549260377883911,0.0627726167440414,0.999845147132874,0.0157455932348967,0.00787279661744833,0.996515274047852,0.0549260377883911,0.0627726167440414,0.999845147132874,0.0157455932348967,0.00787279661744833,0.996515274047852,0.0549260377883911,0.0627726167440414,-0.999225914478302,-0.0314716808497906,-0.0236037615686655,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999225914478302,-0.0314716808497906,-0.0236037615686655,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.999225914478302,-0.0314716808497906,-0.0236037615686655,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.996392607688904,0.0706104934215546,0.0470736660063267,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.996392607688904,0.0706104934215546,0.0470736660063267,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.996392607688904,0.0706104934215546,0.0470736660063267,-0.0236852765083313,0.907935619354248,0.418439894914627,
  646. -0.0236066840589046,0.904922902584076,0.424920320510864,-0.0236066840589046,0.904922902584076,0.424920320510864,-0.0236852765083313,0.907935619354248,0.418439894914627,-0.0235928110778332,0.912255346775055,0.408942043781281,-0.0236066840589046,0.904922902584076,0.424920320510864,-0.0235928110778332,0.912255346775055,0.408942043781281,-0.0236852765083313,0.907935619354248,0.418439894914627,-0.0235928110778332,0.912255346775055,0.408942043781281,-0.0315734818577766,0.907737612724304,0.418348640203476,0.0235165804624558,0.909307718276978,0.415459603071213,-0.0315734818577766,0.907737612724304,0.418348640203476,0.0235165804624558,0.909307718276978,0.415459603071213,-0.0315734818577766,0.907737612724304,0.418348640203476,0.0235165804624558,0.909307718276978,0.415459603071213,0.0235165804624558,0.909307718276978,0.415459603071213,0.0862089172005653,0.909112155437469,0.407533019781113,0.0235165804624558,0.909307718276978,0.415459603071213,0.0862089172005653,0.909112155437469,0.407533019781113,0.0235165804624558,0.909307718276978,0.415459603071213,0.0862089172005653,0.909112155437469,0.407533019781113,0.999690115451813,0.023614726960659,0.00787157565355301,0.999690115451813,0.023614726960659,0.00787157565355301,0.999690115451813,0.023614726960659,0.00787157565355301,0.999690115451813,0.023614726960659,0.00787157565355301,0.999690115451813,0.023614726960659,0.00787157565355301,0.999690115451813,0.023614726960659,0.00787157565355301,0.999690115451813,0.023614726960659,0.00787157565355301,0.999690115451813,0.023614726960659,0.00787157565355301,0.999690115451813,0.023614726960659,0.00787157565355301,0.999690115451813,0.023614726960659,0.00787157565355301,0.999690115451813,0.023614726960659,0.00787157565355301,0.999690115451813,0.023614726960659,0.00787157565355301,0,-0.909559190273285,-0.415574461221695,0,-0.908190488815308,-0.418557375669479,0,-0.909559190273285,-0.415574461221695,0,-0.908190488815308,-0.418557375669479,0,-0.909559190273285,-0.415574461221695,0,-0.905175149440765,-0.425038784742355,0,-0.908190488815308,-0.418557375669479,
  647. 0,-0.905175149440765,-0.425038784742355,0,-0.905175149440765,-0.425038784742355,0,0.908190488815308,0.418557375669479,0,0.909559190273285,0.415574461221695,0,0.909559190273285,0.415574461221695,0,0.909559190273285,0.415574461221695,0,0.908190488815308,0.418557375669479,0,0.905175149440765,0.425038784742355,0,0.905175149440765,0.425038784742355,0,0.908190488815308,0.418557375669479,0,0.905175149440765,0.425038784742355,0.999969005584717,1.74832852910177e-018,-0.00787377171218395,1,0,0,0.999969005584717,1.74832852910177e-018,-0.00787377171218395,1,0,0,0.999969005584717,1.74832852910177e-018,-0.00787377171218395,1,0,0,1,0,0,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,1,0,0,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,1,0,0,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.0315508879721165,-0.914975702762604,-0.402273803949356,-0.0078407870605588,-0.90953129529953,-0.415561735630035,-0.0315508879721165,-0.914975702762604,-0.402273803949356,-0.0315508879721165,-0.914975702762604,-0.402273803949356,-0.0078407870605588,-0.90953129529953,-0.415561735630035,-0.00789706129580736,-0.90816205739975,-0.418544262647629,-0.0078407870605588,-0.90953129529953,-0.415561735630035,0.0393359512090683,-0.896859645843506,-0.440562635660172,-0.00789706129580736,-0.90816205739975,-0.418544262647629,-0.00789706129580736,-0.90816205739975,-0.418544262647629,0.0393359512090683,-0.896859645843506,-0.440562635660172,0.0393359512090683,-0.896859645843506,-0.440562635660172,0.0315508879721165,0.914975702762604,0.402273803949356,0.00789706129580736,0.90816205739975,0.418544262647629,0.0315508879721165,0.914975702762604,0.402273803949356,0.00789706129580736,0.90816205739975,0.418544262647629,0.0315508879721165,0.914975702762604,0.402273803949356,0.00789706129580736,0.90816205739975,0.418544262647629,0.00789706129580736,0.90816205739975,0.418544262647629,-0.0393359512090683,0.896859645843506,0.440562635660172,0.00789706129580736,0.90816205739975,0.418544262647629,-0.0393359512090683,0.896859645843506,0.440562635660172,
  648. 0.00789706129580736,0.90816205739975,0.418544262647629,-0.0393359512090683,0.896859645843506,0.440562635660172,0.999225914478302,-0.0236037615686655,-0.0314716808497906,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999225914478302,-0.0236037615686655,-0.0314716808497906,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999225914478302,-0.0236037615686655,-0.0314716808497906,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.998607933521271,0.023589164018631,0.047178328037262,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.998607933521271,0.023589164018631,0.047178328037262,0.999938011169434,-0.0078735277056694,-0.0078735277056694,0.998607933521271,0.023589164018631,0.047178328037262,-0.0314687602221966,-0.90472686290741,-0.424828261137009,-0.039301909506321,-0.91180431842804,-0.408739864826202,-0.0314687602221966,-0.90472686290741,-0.424828261137009,-0.0314687602221966,-0.90472686290741,-0.424828261137009,-0.039301909506321,-0.91180431842804,-0.408739864826202,-0.039301909506321,-0.91180431842804,-0.408739864826202,-0.039301909506321,-0.91180431842804,-0.408739864826202,-0.055331215262413,-0.916917264461517,-0.395222961902618,-0.039301909506321,-0.91180431842804,-0.408739864826202,-0.039301909506321,-0.91180431842804,-0.408739864826202,-0.055331215262413,-0.916917264461517,-0.395222961902618,-0.055331215262413,-0.916917264461517,-0.395222961902618,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.997898638248444,0.0628597587347031,0.0157149396836758,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.997898638248444,0.0628597587347031,0.0157149396836758,
  649. -0.999597251415253,0.0236125327646732,0.0157416891306639,-0.997898638248444,0.0628597587347031,0.0157149396836758,0.0471739508211613,0.904167413711548,0.424565583467484,0.0549819320440292,0.911129117012024,0.408437192440033,0.0471739508211613,0.904167413711548,0.424565583467484,0.0549819320440292,0.911129117012024,0.408437192440033,0.0471739508211613,0.904167413711548,0.424565583467484,0.0549819320440292,0.911129117012024,0.408437192440033,0.0549819320440292,0.911129117012024,0.408437192440033,0.0632060691714287,0.916487991809845,0.395037949085236,0.0549819320440292,0.911129117012024,0.408437192440033,0.0632060691714287,0.916487991809845,0.395037949085236,0.0549819320440292,0.911129117012024,0.408437192440033,0.0632060691714287,0.916487991809845,0.395037949085236,0.0157651454210281,-0.92226105928421,-0.386246085166931,0,-0.922375679016113,-0.386294096708298,0.0236440468579531,-0.922117829322815,-0.386186093091965,0.0157651454210281,-0.92226105928421,-0.386246085166931,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,0.0157651454210281,-0.92226105928421,-0.386246085166931,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,-0.0236440468579531,-0.922117829322815,-0.386186093091965,0,-0.922375679016113,-0.386294096708298,-0.0236440468579531,-0.922117829322815,-0.386186093091965,0,-0.922375679016113,-0.386294096708298,-0.0236440468579531,-0.922117829322815,-0.386186093091965,0,-0.922375679016113,-0.386294096708298,0,-0.916695952415466,-0.399585425853729,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,0,-0.916695952415466,-0.399585425853729,0,-0.916695952415466,-0.399585425853729,0,-0.916695952415466,-0.399585425853729,0,-0.909559190273285,-0.415574461221695,0,-0.916695952415466,-0.399585425853729,0,-0.909559190273285,-0.415574461221695,0,-0.916695952415466,-0.399585425853729,
  650. 0,-0.909559190273285,-0.415574461221695,0,0.922375679016113,0.386294096708298,0,0.916695952415466,0.399585425853729,0,0.922375679016113,0.386294096708298,0,0.916695952415466,0.399585425853729,0,0.922375679016113,0.386294096708298,0,0.916695952415466,0.399585425853729,0,0.909559190273285,0.415574461221695,0,0.916695952415466,0.399585425853729,0,0.916695952415466,0.399585425853729,0,0.916695952415466,0.399585425853729,0,0.909559190273285,0.415574461221695,0,0.909559190273285,0.415574461221695,-1,0,0,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-1,0,0,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-1,0,0,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999845147132874,-0.00787279661744833,0.0157455932348967,-0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999845147132874,-0.00787279661744833,0.0157455932348967,0.999969005584717,1.74832852910177e-018,-0.00787377171218395,1,0,0,0.999969005584717,1.74832852910177e-018,-0.00787377171218395,1,0,0,0.999969005584717,1.74832852910177e-018,-0.00787377171218395,1,0,0,1,0,0,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,1,0,0,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,1,0,0,0.999969005584717,-1.74832852910177e-018,0.00787377171218395,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999380588531494,-0.031476553529501,-0.0157382767647505,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999380588531494,-0.031476553529501,-0.0157382767647505,-0.999938011169434,0.0078735277056694,0.0078735277056694,
  651. -0.999380588531494,-0.031476553529501,-0.0157382767647505,0,-0.908190488815308,-0.418557375669479,0.0394557937979698,-0.907483279705048,-0.418231457471848,0,-0.908190488815308,-0.418557375669479,0,-0.908190488815308,-0.418557375669479,0.0394557937979698,-0.907483279705048,-0.418231457471848,0.0394557937979698,-0.907483279705048,-0.418231457471848,0.0394557937979698,-0.907483279705048,-0.418231457471848,0.0787279531359673,-0.905371487140656,-0.41725817322731,0.0394557937979698,-0.907483279705048,-0.418231457471848,0.0787279531359673,-0.905371487140656,-0.41725817322731,0.0394557937979698,-0.907483279705048,-0.418231457471848,0.0787279531359673,-0.905371487140656,-0.41725817322731,0,0.908190488815308,0.418557375669479,-0.0394557937979698,0.907483279705048,0.418231457471848,0,0.908190488815308,0.418557375669479,-0.0394557937979698,0.907483279705048,0.418231457471848,0,0.908190488815308,0.418557375669479,-0.0394557937979698,0.907483279705048,0.418231457471848,-0.0394557937979698,0.907483279705048,0.418231457471848,-0.0787279531359673,0.905371487140656,0.41725817322731,-0.0394557937979698,0.907483279705048,0.418231457471848,-0.0394557937979698,0.907483279705048,0.418231457471848,-0.0787279531359673,0.905371487140656,0.41725817322731,-0.0787279531359673,0.905371487140656,0.41725817322731,0.999442577362061,-0.0236088801175356,-0.0236088801175356,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999442577362061,-0.0236088801175356,-0.0236088801175356,0.999442577362061,-0.0236088801175356,-0.0236088801175356,0.999442577362061,-0.0236088801175356,-0.0236088801175356,0.997529208660126,-0.0628364831209183,-0.0314182415604591,0.999442577362061,-0.0236088801175356,-0.0236088801175356,0.997529208660126,-0.0628364831209183,-0.0314182415604591,0.999442577362061,-0.0236088801175356,-0.0236088801175356,0.997529208660126,-0.0628364831209183,-0.0314182415604591,0,0.905175149440765,0.425038784742355,0.0315734818577766,0.907737612724304,0.418348640203476,
  652. 0,0.905175149440765,0.425038784742355,0,0.905175149440765,0.425038784742355,0.0315734818577766,0.907737612724304,0.418348640203476,0.0315734818577766,0.907737612724304,0.418348640203476,0.0315734818577766,0.907737612724304,0.418348640203476,0.0711290240287781,0.908870875835419,0.41096767783165,0.0315734818577766,0.907737612724304,0.418348640203476,0.0711290240287781,0.908870875835419,0.41096767783165,0.0315734818577766,0.907737612724304,0.418348640203476,0.0711290240287781,0.908870875835419,0.41096767783165,-0.995433330535889,0.086902916431427,0.0395013242959976,-0.996147394180298,0.0784367993474007,0.0392183996737003,-0.995433330535889,0.086902916431427,0.0395013242959976,-0.996147394180298,0.0784367993474007,0.0392183996737003,-0.995433330535889,0.086902916431427,0.0395013242959976,-0.996147394180298,0.0784367993474007,0.0392183996737003,-0.996147394180298,0.0784367993474007,0.0392183996737003,-0.997252345085144,0.0628190487623215,0.0392619036138058,-0.996147394180298,0.0784367993474007,0.0392183996737003,-0.997252345085144,0.0628190487623215,0.0392619036138058,-0.996147394180298,0.0784367993474007,0.0392183996737003,-0.997252345085144,0.0628190487623215,0.0392619036138058,-0.0708463788032532,0.91313111782074,0.40146279335022,-0.0551968775689602,0.906805813312531,0.417919218540192,-0.0708463788032532,0.91313111782074,0.40146279335022,-0.0708463788032532,0.91313111782074,0.40146279335022,-0.0551968775689602,0.906805813312531,0.417919218540192,-0.0551968775689602,0.906805813312531,0.417919218540192,-0.0551968775689602,0.906805813312531,0.417919218540192,-0.0471739508211613,0.904167413711548,0.424565583467484,-0.0551968775689602,0.906805813312531,0.417919218540192,-0.0471739508211613,0.904167413711548,0.424565583467484,-0.0551968775689602,0.906805813312531,0.417919218540192,-0.0471739508211613,0.904167413711548,0.424565583467484,-0.997744739055634,-0.0628500655293465,-0.0235687755048275,-0.998206853866577,-0.055019274353981,-0.0235796887427568,-0.997744739055634,-0.0628500655293465,-0.0235687755048275,-0.998206853866577,-0.055019274353981,-0.0235796887427568,
  653. -0.997744739055634,-0.0628500655293465,-0.0235687755048275,-0.998206853866577,-0.055019274353981,-0.0235796887427568,-0.998206853866577,-0.055019274353981,-0.0235796887427568,-0.99894767999649,-0.0393286496400833,-0.0235971882939339,-0.998206853866577,-0.055019274353981,-0.0235796887427568,-0.99894767999649,-0.0393286496400833,-0.0235971882939339,-0.998206853866577,-0.055019274353981,-0.0235796887427568,-0.99894767999649,-0.0393286496400833,-0.0235971882939339,-0.99839198589325,0.0471681281924248,0.0314454175531864,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.99839198589325,0.0471681281924248,0.0314454175531864,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.99839198589325,0.0471681281924248,0.0314454175531864,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.998206853866577,0.055019274353981,0.0235796887427568,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.998206853866577,0.055019274353981,0.0235796887427568,-0.99799108505249,0.0550073832273483,0.0314327888190746,-0.998206853866577,0.055019274353981,0.0235796887427568,-0.0157309733331203,-0.912396430969238,-0.409005284309387,0.0157309733331203,-0.912396430969238,-0.409005284309387,-0.0157309733331203,-0.912396430969238,-0.409005284309387,0.0157309733331203,-0.912396430969238,-0.409005284309387,-0.0157309733331203,-0.912396430969238,-0.409005284309387,0.0157309733331203,-0.912396430969238,-0.409005284309387,0.0157309733331203,-0.912396430969238,-0.409005284309387,0.0789853930473328,-0.908332049846649,-0.41072404384613,0.0157309733331203,-0.912396430969238,-0.409005284309387,0.0157309733331203,-0.912396430969238,-0.409005284309387,0.0789853930473328,-0.908332049846649,-0.41072404384613,0.0789853930473328,-0.908332049846649,-0.41072404384613,0.999380588531494,0.031476553529501,0.0157382767647505,0.999473392963409,0.0314794778823853,0.00786986947059631,0.999380588531494,0.031476553529501,0.0157382767647505,0.999473392963409,0.0314794778823853,0.00786986947059631,0.999380588531494,0.031476553529501,0.0157382767647505,
  654. 0.999473392963409,0.0314794778823853,0.00786986947059631,0.999473392963409,0.0314794778823853,0.00786986947059631,0.999473392963409,0.0314794778823853,0.00786986947059631,0.999473392963409,0.0314794778823853,0.00786986947059631,0.999473392963409,0.0314794778823853,0.00786986947059631,0.999473392963409,0.0314794778823853,0.00786986947059631,0.999473392963409,0.0314794778823853,0.00786986947059631,0.0315508879721165,-0.914975702762604,-0.402273803949356,0.0315734818577766,-0.907737612724304,-0.418348640203476,0.0315508879721165,-0.914975702762604,-0.402273803949356,0.0315734818577766,-0.907737612724304,-0.418348640203476,0.0315508879721165,-0.914975702762604,-0.402273803949356,0.0315734818577766,-0.907737612724304,-0.418348640203476,0.0314775295555592,-0.897109568119049,-0.440685391426086,0.0315734818577766,-0.907737612724304,-0.418348640203476,0.0315734818577766,-0.907737612724304,-0.418348640203476,0.0315734818577766,-0.907737612724304,-0.418348640203476,0.0314775295555592,-0.897109568119049,-0.440685391426086,0.0314775295555592,-0.897109568119049,-0.440685391426086,-0.0315508879721165,0.914975702762604,0.402273803949356,-0.0315734818577766,0.907737612724304,0.418348640203476,-0.0315508879721165,0.914975702762604,0.402273803949356,-0.0315508879721165,0.914975702762604,0.402273803949356,-0.0315734818577766,0.907737612724304,0.418348640203476,-0.0315734818577766,0.907737612724304,0.418348640203476,-0.0315734818577766,0.907737612724304,0.418348640203476,-0.0314775295555592,0.897109568119049,0.440685391426086,-0.0315734818577766,0.907737612724304,0.418348640203476,-0.0314775295555592,0.897109568119049,0.440685391426086,-0.0315734818577766,0.907737612724304,0.418348640203476,-0.0314775295555592,0.897109568119049,0.440685391426086,-0.00789706129580736,-0.90816205739975,-0.418544262647629,0.0471739508211613,-0.904167413711548,-0.424565583467484,0.0471739508211613,-0.904167413711548,-0.424565583467484,0.0471739508211613,-0.904167413711548,-0.424565583467484,-0.00789706129580736,-0.90816205739975,-0.418544262647629,-0.00789706129580736,-0.90816205739975,-0.418544262647629,
  655. -0.00789706129580736,-0.90816205739975,-0.418544262647629,-0.0784223303198814,-0.909699022769928,-0.407796084880829,-0.00789706129580736,-0.90816205739975,-0.418544262647629,-0.0784223303198814,-0.909699022769928,-0.407796084880829,-0.00789706129580736,-0.90816205739975,-0.418544262647629,-0.0784223303198814,-0.909699022769928,-0.407796084880829,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.999442577362061,-0.0236088801175356,-0.0236088801175356,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.999442577362061,-0.0236088801175356,-0.0236088801175356,-0.999473392963409,-0.0314794778823853,-0.00786986947059631,-0.999442577362061,-0.0236088801175356,-0.0236088801175356,0.999225914478302,0.0314716808497906,0.0236037615686655,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999225914478302,0.0314716808497906,0.0236037615686655,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999225914478302,0.0314716808497906,0.0236037615686655,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.996392607688904,-0.0706104934215546,-0.0470736660063267,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.996392607688904,-0.0706104934215546,-0.0470736660063267,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.996392607688904,-0.0706104934215546,-0.0470736660063267,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999597251415253,0.0236125327646732,0.0157416891306639,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999597251415253,0.0236125327646732,0.0157416891306639,
  656. -0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999380588531494,-0.031476553529501,-0.0157382767647505,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999380588531494,-0.031476553529501,-0.0157382767647505,-0.999938011169434,0.0078735277056694,0.0078735277056694,-0.999380588531494,-0.031476553529501,-0.0157382767647505,0.999597251415253,-0.0236125327646732,-0.0157416891306639,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999597251415253,-0.0236125327646732,-0.0157416891306639,0.999597251415253,-0.0236125327646732,-0.0157416891306639,0.999597251415253,-0.0236125327646732,-0.0157416891306639,0.997744739055634,-0.0628500655293465,-0.0235687755048275,0.999597251415253,-0.0236125327646732,-0.0157416891306639,0.997744739055634,-0.0628500655293465,-0.0235687755048275,0.999597251415253,-0.0236125327646732,-0.0157416891306639,0.997744739055634,-0.0628500655293465,-0.0235687755048275,0,-0.905175149440765,-0.425038784742355,-0.0315734818577766,-0.907737612724304,-0.418348640203476,0,-0.905175149440765,-0.425038784742355,-0.0315734818577766,-0.907737612724304,-0.418348640203476,0,-0.905175149440765,-0.425038784742355,-0.0315734818577766,-0.907737612724304,-0.418348640203476,-0.0708969160914421,-0.905905067920685,-0.417504072189331,-0.0315734818577766,-0.907737612724304,-0.418348640203476,-0.0315734818577766,-0.907737612724304,-0.418348640203476,-0.0315734818577766,-0.907737612724304,-0.418348640203476,-0.0708969160914421,-0.905905067920685,-0.417504072189331,-0.0708969160914421,-0.905905067920685,-0.417504072189331,0,0.905175149440765,0.425038784742355,0.0315734818577766,0.907737612724304,0.418348640203476,0,0.905175149440765,0.425038784742355,0,0.905175149440765,0.425038784742355,0.0315734818577766,0.907737612724304,0.418348640203476,0.0315734818577766,0.907737612724304,0.418348640203476,0.0315734818577766,0.907737612724304,0.418348640203476,
  657. 0.0708969160914421,0.905905067920685,0.417504072189331,0.0315734818577766,0.907737612724304,0.418348640203476,0.0708969160914421,0.905905067920685,0.417504072189331,0.0315734818577766,0.907737612724304,0.418348640203476,0.0708969160914421,0.905905067920685,0.417504072189331,-0.999473392963409,0.0314794778823853,0.00786986947059631,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.999473392963409,0.0314794778823853,0.00786986947059631,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.999473392963409,0.0314794778823853,0.00786986947059631,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.99771386384964,0.054992102086544,0.0392800718545914,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.99771386384964,0.054992102086544,0.0392800718545914,-0.99894767999649,0.0393286496400833,0.0235971882939339,-0.99771386384964,0.054992102086544,0.0392800718545914,0.998607933521271,0.047178328037262,0.023589164018631,0.999845147132874,0.0157455932348967,0.00787279661744833,0.998607933521271,0.047178328037262,0.023589164018631,0.999845147132874,0.0157455932348967,0.00787279661744833,0.998607933521271,0.047178328037262,0.023589164018631,0.999845147132874,0.0157455932348967,0.00787279661744833,0.999845147132874,0.0157455932348967,0.00787279661744833,0.999690115451813,-0.023614726960659,-0.00787157565355301,0.999845147132874,0.0157455932348967,0.00787279661744833,0.999690115451813,-0.023614726960659,-0.00787157565355301,0.999845147132874,0.0157455932348967,0.00787279661744833,0.999690115451813,-0.023614726960659,-0.00787157565355301,0.00788330752402544,-0.386282086372375,0.922347009181976,0,-0.386294096708298,0.922375679016113,0.00788330752402544,-0.386282086372375,0.922347009181976,0,-0.386294096708298,0.922375679016113,0.00788330752402544,-0.386282086372375,0.922347009181976,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,
  658. 0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,-0.00788330752402544,0.386282086372375,-0.922347009181976,0,0.386294096708298,-0.922375679016113,-0.00788330752402544,0.386282086372375,-0.922347009181976,0,0.386294096708298,-0.922375679016113,-0.00788330752402544,0.386282086372375,-0.922347009181976,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,-0.0236440468579531,0.922117829322815,0.386186093091965,0,0.922375679016113,0.386294096708298,-0.0236440468579531,0.922117829322815,0.386186093091965,0,0.922375679016113,0.386294096708298,-0.0236440468579531,0.922117829322815,0.386186093091965,0,0.922375679016113,0.386294096708298,0.00788330752402544,0.922347009181976,0.386282086372375,0,0.922375679016113,0.386294096708298,0,0.922375679016113,0.386294096708298,0,0.922375679016113,0.386294096708298,0.00788330752402544,0.922347009181976,0.386282086372375,0.00788330752402544,0.922347009181976,0.386282086372375,0.0236440468579531,-0.922117829322815,-0.386186093091965,0,-0.922375679016113,-0.386294096708298,0.0236440468579531,-0.922117829322815,-0.386186093091965,0,-0.922375679016113,-0.386294096708298,0.0236440468579531,-0.922117829322815,-0.386186093091965,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,-0.00788330752402544,-0.922347009181976,-0.386282086372375,0,-0.922375679016113,-0.386294096708298,-0.00788330752402544,-0.922347009181976,-0.386282086372375,0,-0.922375679016113,-0.386294096708298,-0.00788330752402544,-0.922347009181976,-0.386282086372375,0,0.386294096708298,-0.922375679016113,-0.00788330752402544,0.386282086372375,-0.922347009181976,-0.00788330752402544,0.386282086372375,-0.922347009181976,-0.00788330752402544,0.386282086372375,-0.922347009181976,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,
  659. 0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,-0.00788330752402544,0.386282086372375,-0.922347009181976,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,-0.00788330752402544,0.386282086372375,-0.922347009181976,-0.00788330752402544,0.386282086372375,-0.922347009181976,-0.00788330752402544,0.386282086372375,-0.922347009181976,0,0.386294096708298,-0.922375679016113,-0.00788330752402544,0.386282086372375,-0.922347009181976,0,0.386294096708298,-0.922375679016113,-0.00788330752402544,0.386282086372375,-0.922347009181976,0,0.386294096708298,-0.922375679016113,0.00788330752402544,-0.386282086372375,0.922347009181976,0,-0.386294096708298,0.922375679016113,0.00788330752402544,-0.386282086372375,0.922347009181976,0,-0.386294096708298,0.922375679016113,0.00788330752402544,-0.386282086372375,0.922347009181976,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0.00788330752402544,-0.386282086372375,0.922347009181976,0,-0.386294096708298,0.922375679016113,0.00788330752402544,-0.386282086372375,0.922347009181976,0,-0.386294096708298,0.922375679016113,0.00788330752402544,-0.386282086372375,0.922347009181976,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,0,-0.386294096708298,0.922375679016113,-0.00788330752402544,0.386282086372375,-0.922347009181976,0,0.386294096708298,-0.922375679016113,-0.00788330752402544,0.386282086372375,-0.922347009181976,0,0.386294096708298,-0.922375679016113,-0.00788330752402544,0.386282086372375,-0.922347009181976,
  660. 0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,0,0.386294096708298,-0.922375679016113,-0.0236440468579531,0.922117829322815,0.386186093091965,0,0.922375679016113,0.386294096708298,-0.0236440468579531,0.922117829322815,0.386186093091965,0,0.922375679016113,0.386294096708298,-0.0236440468579531,0.922117829322815,0.386186093091965,0,0.922375679016113,0.386294096708298,0.00788330752402544,0.922347009181976,0.386282086372375,0,0.922375679016113,0.386294096708298,0,0.922375679016113,0.386294096708298,0,0.922375679016113,0.386294096708298,0.00788330752402544,0.922347009181976,0.386282086372375,0.00788330752402544,0.922347009181976,0.386282086372375,0.0236440468579531,-0.922117829322815,-0.386186093091965,0,-0.922375679016113,-0.386294096708298,0.0236440468579531,-0.922117829322815,-0.386186093091965,0,-0.922375679016113,-0.386294096708298,0.0236440468579531,-0.922117829322815,-0.386186093091965,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,-0.00788330752402544,-0.922347009181976,-0.386282086372375,0,-0.922375679016113,-0.386294096708298,-0.00788330752402544,-0.922347009181976,-0.386282086372375,0,-0.922375679016113,-0.386294096708298,-0.00788330752402544,-0.922347009181976,-0.386282086372375
  661. }
  662. NormalsW: *1296 {
  663. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  664. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  665. }
  666. }
  667. LayerElementBinormal: 0 {
  668. Version: 102
  669. Name: "UVmap_0"
  670. MappingInformationType: "ByPolygonVertex"
  671. ReferenceInformationType: "Direct"
  672. Binormals: *3888 {
  673. a: 0.00787260383367538,0.999820709228516,-0.0172208491712809,-0.00787259545177221,0.99981963634491,-0.0172828510403633,0.00787260383367538,0.999820709228516,-0.0172208491712809,0.00787268579006195,0.999831080436707,-0.0166095662862062,-0.0078726951032877,0.999832272529602,-0.0165368095040321,-0.015743937343359,0.99974000453949,-0.016498900949955,0.999966621398926,-0.00781691819429398,0.00240602134726942,0.99996680021286,0.00788977276533842,0.00203434797003865,0.999966621398926,-0.00781691819429398,0.00240602134726942,0.999969005584717,-0.0078585147857666,0.000645851250737906,0.999968945980072,0.00787696894258261,0.000406164326705039,0.999876022338867,0.0157483331859112,0.000286216876702383,0.00787141919136047,-0.999670207500458,0.0244435109198093,-0.00787140242755413,-0.999668061733246,0.0245357621461153,0.0157413929700851,-0.999578475952148,0.0243951175361872,-0.00787097029387951,-0.999613165855408,0.0266749989241362,0.00787096098065376,-0.999611973762512,0.0267190188169479,-0.00787097029387951,-0.999613165855408,0.0266749989241362,-0.999968290328979,0.00789893232285976,0.00106535258237273,-0.999875068664551,-0.0157343205064535,0.00149133813101798,-0.999968290328979,0.00789893232285976,0.00106535258237273,-0.999968826770782,0.00788698066025972,0.000559220905415714,-0.999875545501709,-0.0157367940992117,0.0011782341171056,-0.999875545501709,-0.0157367940992117,0.0011782341171056,-0.99971878528595,-0.0236313752830029,-0.00202824105508626,-0.999872505664825,-0.015815507620573,-0.00220611412078142,-0.999719142913818,-0.0236154124140739,-0.002028604503721,-0.999874770641327,-0.0157845932990313,-0.00122341781388968,-0.999720513820648,-0.0236233659088612,-0.00100570521317422,-0.999874770641327,-0.0157845932990313,-0.00122341781388968,0.0351607874035835,0.89490795135498,-0.444863528013229,0.0604516714811325,0.997975468635559,-0.0197662468999624,0.0730092227458954,0.622665822505951,0.779074370861053,0.0585842840373516,0.622180998325348,0.780678331851959,0.0484916046261787,0.998612523078918,-0.0205346867442131,
  674. 0.059568677097559,0.674962997436523,0.73544317483902,-0.0251898020505905,0.999681055545807,0.00178510381374508,-0.0257687848061323,0.671840190887451,0.740247786045074,-0.0228121150285006,0.985623478889465,-0.167409718036652,0.0168557520955801,0.669723033905029,0.742419719696045,0.0167600251734257,0.999858856201172,-0.0011877182405442,0.0155116431415081,0.546813905239105,0.83711051940918,0.0501989275217056,0.792526841163635,-0.607767581939697,0.0975458696484566,0.974364340305328,-0.202728867530823,0.113455429673195,0.500752925872803,0.858122587203979,0.102376230061054,0.500671088695526,0.859562397003174,0.0902092531323433,0.975017786026001,-0.202984213829041,0.10463310778141,0.533504545688629,0.839300215244293,-0.0750308707356453,0.997083961963654,-0.0139297274872661,-0.0747983232140541,0.666237771511078,0.741978764533997,-0.0693842321634293,0.984991252422333,-0.158044770359993,-0.0668549239635468,0.666474759578705,0.742523968219757,-0.0678214877843857,0.997597694396973,-0.0141081176698208,-0.061358604580164,0.547571837902069,0.834506034851074,0.0177798047661781,0.808699548244476,-0.587953209877014,0.0405967347323895,0.976841032505035,-0.210080116987228,0.0576854199171066,0.491362988948822,0.8690425157547,0.0436562448740005,0.489959537982941,0.870651423931122,0.0306471474468708,0.977055430412292,-0.210768699645996,0.0448010042309761,0.547266721725464,0.835758328437805,-0.157614707946777,0.987470149993896,-0.00777535559609532,-0.159125030040741,0.653963685035706,0.739601790904999,-0.143852815032005,0.975192666053772,-0.168242603540421,-0.143143400549889,0.655582249164581,0.741432309150696,-0.142004951834679,0.989835381507874,-0.0077939797192812,-0.132084235548973,0.536821007728577,0.833292841911316,0.082802027463913,0.642254710197449,0.762005805969238,0.0772838667035103,0.373218029737473,0.924519062042236,0.0550555177032948,0.997982382774353,-0.0316265597939491,0.0634414106607437,0.997446060180664,-0.0328117720782757,0.0651161596179008,0.99786365032196,-0.00529356626793742,0.0876906290650368,0.641686856746674,0.761937201023102,
  675. -0.0419358611106873,0.66846889257431,0.742556869983673,-0.0357668288052082,0.104062892496586,0.993927419185638,-0.0260627605021,0.999615132808685,0.00951273366808891,-0.0116948811337352,0.999894559383392,0.00860987044870853,0.00891216844320297,0.743809103965759,-0.668332755565643,-0.0270757582038641,0.667846500873566,0.743806421756744,-0.0377824604511261,0.371426194906235,0.927693426609039,-0.0435224287211895,0.919751763343811,-0.39008042216301,-0.0390146784484386,0.871448636054993,-0.488932728767395,-0.0346495322883129,0.919852912425995,-0.390730351209641,-0.0259804595261812,0.371047854423523,0.928250253200531,-0.0194579530507326,0.203894957900047,0.978799343109131,0.0223296228796244,0.663425028324127,0.747909545898438,0.0223259478807449,0.140394240617752,0.989843964576721,0.00930065102875233,0.999684751033783,-0.0233216676861048,-0.00302751269191504,0.999714255332947,-0.0237106513231993,-0.00394459348171949,0.989822864532471,-0.142250463366508,0.004090316593647,0.662615656852722,0.748948454856873,0.0213142707943916,0.999771952629089,-0.00134263117797673,0.00688449293375015,0.678440570831299,0.7346231341362,0.0222892891615629,0.993886709213257,-0.108132168650627,0.00649197027087212,0.678469657897949,0.734599828720093,0.019370449706912,0.999811708927155,-0.00122018589172512,0.00405849469825625,0.587613701820374,0.809131383895874,0.158552333712578,0.986726403236389,-0.0351021662354469,0.138197094202042,0.962835550308228,-0.232054561376572,0.165431529283524,0.619212567806244,0.767598986625671,0.162883728742599,0.986025333404541,-0.0349722467362881,0.167048707604408,0.619082272052765,0.76735383272171,0.151875972747803,0.482235908508301,0.862775862216949,0.0347833931446075,0.898299276828766,-0.438005208969116,0.0587724968791008,0.998193383216858,-0.0124801518395543,0.0700564980506897,0.622577250003815,0.77941620349884,0.0527586117386818,0.621948182582855,0.78127908706665,0.042990431189537,0.998986124992371,-0.0133625129237771,0.053576398640871,0.675472259521484,0.735436499118805,-0.0172095410525799,0.999829769134521,-0.00665310211479664,
  676. -0.0168439745903015,0.671498358249664,0.740814685821533,-0.0158317778259516,0.985848605632782,-0.166889101266861,0.00558042479678988,0.67040228843689,0.741976916790009,0.00415344210341573,0.999958038330078,-0.00816802401095629,0.00541821075603366,0.546002686023712,0.83776593208313,0.0380659811198711,0.794823467731476,-0.605645656585693,0.073343850672245,0.97995662689209,-0.185217916965485,0.0843409150838852,0.535033881664276,0.840610206127167,0.0744857788085938,0.534725904464722,0.841736316680908,0.0690180882811546,0.980228245258331,-0.185443088412285,0.0741796270012856,0.528948128223419,0.845405995845795,-0.121316745877266,0.659739375114441,0.741637527942657,-0.133551314473152,0.991018891334534,-0.00675171334296465,-0.109157219529152,0.539776682853699,0.834701180458069,-0.145033925771713,0.989404380321503,-0.00664858613163233,-0.13249759376049,0.658588886260986,0.740746319293976,-0.135257169604301,0.976252973079681,-0.169221237301826,-0.0394291467964649,0.645561218261719,0.76268994808197,-0.0204735826700926,0.376298248767853,0.926272332668304,-0.0672194957733154,0.997150778770447,-0.034234594553709,-0.0344979092478752,0.645619750022888,0.762879431247711,-0.0588649399578571,0.997655093669891,-0.034917663782835,-0.0587660744786263,0.998256087303162,-0.0055967690423131,-0.0445369258522987,0.668299973011017,0.742557525634766,-0.0359151177108288,0.0880387499928474,0.995469391345978,-0.0297602619975805,0.999509632587433,0.00974481645971537,-0.0112711144611239,0.999899685382843,0.00858321692794561,0.00871093571186066,0.736062407493591,-0.676857650279999,-0.025906240567565,0.667638301849365,0.744035005569458,-0.00812100432813168,0.347389787435532,0.937685668468475,-0.0175135061144829,0.921747088432312,-0.387395977973938,-0.0161622297018766,0.861385226249695,-0.507695078849792,-0.00664681568741798,0.921432793140411,-0.388481020927429,0.00760434940457344,0.346228718757629,0.938119411468506,0.0080757848918438,0.271557718515396,0.962388277053833,-0.00557781010866165,0.799371361732483,-0.600811421871185,0.00934478174895048,0.993734121322632,-0.111379042267799,
  677. 0.0283739864826202,0.464495599269867,0.885120809078217,0.0526238605380058,0.462849676609039,0.884873390197754,0.0284833181649446,0.993153750896454,-0.113289169967175,0.0534290000796318,0.558479070663452,0.827796161174774,0.0261066555976868,0.663564920425415,0.747663080692291,0.025230398401618,0.139913335442543,0.989842355251312,0.0120806451886892,0.999657034873962,-0.0232334546744823,-0.00669691478833556,0.999693751335144,-0.0238257385790348,-0.00746519956737757,0.989847004413605,-0.141940757632256,0.000953961163759232,0.662454128265381,0.749101877212524,0.196715325117111,0.980455696582794,0.00312245357781649,0.156869456171989,0.666884481906891,0.728462159633636,0.140587687492371,0.573214530944824,0.807254791259766,0.148943439126015,0.667901754379272,0.729193568229675,0.188618928194046,0.982046782970428,0.00266366684809327,0.1840550750494,0.975951015949249,-0.11680494248867,0.0247271228581667,-0.905754566192627,-0.423080801963806,0.0280559826642275,-0.905676424503326,-0.423040300607681,0.0247271228581667,-0.905754566192627,-0.423080801963806,0.0280096847563982,-0.910065770149231,-0.413516372442245,0.0247557666152716,-0.910141825675964,-0.413556784391403,0.0280096847563982,-0.910065770149231,-0.413516372442245,0.0357691124081612,0.898166000843048,-0.438199102878571,0.0593670606613159,0.998158633708954,-0.0124468319118023,0.0694538205862045,0.618285417556763,0.782878875732422,0.0525961443781853,0.61777126789093,0.784596979618073,0.0454267635941505,0.99888014793396,-0.0132265584543347,0.0537239760160446,0.675460040569305,0.735436975955963,-0.0032945869024843,-0.908251166343689,-0.418412536382675,-0.0032945869024843,-0.908251166343689,-0.418412536382675,-0.0032945869024843,-0.908251166343689,-0.418412536382675,-0.00324990903027356,-0.910843789577484,-0.412738442420959,-0.00324990903027356,-0.910843789577484,-0.412738442420959,-0.00324990903027356,-0.910843789577484,-0.412738442420959,-0.0225162133574486,0.998698472976685,-0.0457642637193203,-0.0175552945584059,0.671424865722656,0.7408646941185,-0.0218406096100807,0.985686600208282,-0.167167857289314,
  678. 0.00773665495216846,0.670324385166168,0.742027997970581,0.00667273625731468,0.998843789100647,-0.0476098023355007,0.00741590186953545,0.578796207904816,0.815438508987427,0.0476339235901833,0.793298602104187,-0.606966555118561,0.0930396467447281,0.978077232837677,-0.186302199959755,0.107963733375072,0.53056675195694,0.84073942899704,0.0988202095031738,0.530520141124725,0.84189248085022,0.0883162915706635,0.978485822677612,-0.186456233263016,0.0984244048595428,0.524555683135986,0.845667779445648,-0.0697344467043877,0.997466564178467,-0.0140608651563525,-0.0694995820522308,0.666400551795959,0.742347717285156,-0.0645346641540527,0.985484421253204,-0.157021522521973,-0.0614877119660378,0.666610896587372,0.742865562438965,-0.0623355023562908,0.997953653335571,-0.0142433140426874,-0.0564803630113602,0.548590242862701,0.834181487560272,-0.0375014059245586,0.637091159820557,0.769875705242157,-0.00842843949794769,0.253551781177521,0.96728515625,-0.0709694102406502,0.996202528476715,-0.0504382848739624,-0.0197398718446493,0.637199819087982,0.770445764064789,-0.0503723546862602,0.99738621711731,-0.0518009811639786,-0.0501691065728664,0.998075008392334,-0.0364629328250885,-0.0618559047579765,0.669433951377869,0.740291893482208,-0.0464653745293617,0.0841220915317535,0.995371520519257,-0.0454077757894993,0.998907148838043,0.0110832843929529,-0.0142448786646128,0.999859094619751,0.00888238567858934,0.00901351869106293,0.736203610897064,-0.676700055599213,-0.0305684618651867,0.668186545372009,0.74336564540863,0.190248757600784,0.576465725898743,0.794665098190308,0.106501594185829,0.0698700994253159,0.991854608058929,0.175230279564857,0.963289022445679,-0.2033931016922,0.154157683253288,0.966767191886902,-0.203952446579933,0.15318937599659,0.965247809886932,-0.211730614304543,0.174545586109161,0.577864825725555,0.797249138355255,0.000650518224574625,0.999967813491821,0.00800336897373199,-0.0145195685327053,0.665487408638,0.746267855167389,-0.0156175922602415,0.602277219295502,0.798134207725525,-0.0174641367048025,0.665299117565155,0.746372640132904,
  679. -0.00231351633556187,0.999967694282532,0.00769755523651838,-0.000271887052804232,0.99621194601059,-0.0869579464197159,0.99999988079071,-0.000188045800314285,0.000419486808823422,0.99999988079071,-0.000188045800314285,0.000419486808823422,0.99999988079071,-0.000188045800314285,0.000419486808823422,1,-0,0,1,-0,0,1,-0,0,-0.99999988079071,0.000188045451068319,-0.000419486023019999,-0.99999988079071,0.000188045451068319,-0.000419486023019999,-0.99999988079071,0.000188045451068319,-0.000419486023019999,-1,-0,0,-1,-0,0,-1,-0,0,0,-0.913474202156067,-0.406896680593491,0,-0.913474202156067,-0.406896680593491,0,-0.913474202156067,-0.406896680593491,0,-0.913059651851654,-0.407826036214828,0,-0.913059651851654,-0.407826036214828,0,-0.913059651851654,-0.407826036214828,0,0.913059651851654,0.407826036214828,0,0.913059651851654,0.407826036214828,0,0.913059651851654,0.407826036214828,0,0.913474202156067,0.406896680593491,0,0.913474202156067,0.406896680593491,0,0.913474202156067,0.406896680593491,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,-0.99973052740097,-0.0224244985729456,-0.00601632939651608,-0.99973052740097,-0.0224244985729456,-0.00601632939651608,-0.99973052740097,-0.0224244985729456,-0.00601632939651608,-0.99973052740097,-0.0224244985729456,-0.00601632939651608,-0.99973052740097,-0.0224244985729456,-0.00601632939651608,-0.99973052740097,-0.0224244985729456,-0.00601632939651608,0.99999988079071,-0.000269649113761261,0.000590175448451191,0.99999988079071,-0.000269649113761261,0.000590175448451191,0.99999988079071,-0.000269649113761261,0.000590175448451191,1,-5.99446320848074e-006,1.3119956747687e-005,1,-5.99446320848074e-006,1.3119956747687e-005,1,-5.99446320848074e-006,1.3119956747687e-005,-0.99999475479126,-0.00134758581407368,0.00294943293556571,-0.99999475479126,-0.00134758581407368,0.00294943293556571,-0.99999475479126,-0.00134758581407368,0.00294943293556571,-0.999990940093994,0.00177738745696843,-0.00389013113453984,-0.999990940093994,0.00177738745696843,-0.00389013113453984,-0.999990940093994,0.00177738745696843,-0.00389013113453984,
  680. 0,-0.914768397808075,-0.403978645801544,0,-0.914768397808075,-0.403978645801544,0,-0.914768397808075,-0.403978645801544,0,-0.909904778003693,-0.414817214012146,0,-0.909904778003693,-0.414817214012146,0,-0.909904778003693,-0.414817214012146,0,0.915255427360535,0.402874052524567,0,0.915255427360535,0.402874052524567,0,0.915255427360535,0.402874052524567,0,0.911286294460297,0.411773353815079,0,0.911286294460297,0.411773353815079,0,0.911286294460297,0.411773353815079,0.999188542366028,0.039055485278368,0.00984325166791677,0.999188542366028,0.039055485278368,0.00984325166791677,0.999188542366028,0.039055485278368,0.00984325166791677,1,-0.000300781946862116,-7.58068345021456e-005,1,-0.000300781946862116,-7.58068345021456e-005,1,-0.000300781946862116,-7.58068345021456e-005,-0.999771773815155,-0.0207159724086523,-0.00522109912708402,-0.999771773815155,-0.0207159724086523,-0.00522109912708402,-0.999771773815155,-0.0207159724086523,-0.00522109912708402,-0.999132752418518,-0.0403746664524078,-0.0101757282391191,-0.999132752418518,-0.0403746664524078,-0.0101757282391191,-0.999132752418518,-0.0403746664524078,-0.0101757282391191,0.99999988079071,-0.00018711481243372,0.00041740998858586,0.99999988079071,-0.00018711481243372,0.00041740998858586,0.99999988079071,-0.00018711481243372,0.00041740998858586,1,-3.52841539097426e-007,7.87108035638084e-007,1,-3.52841539097426e-007,7.87108035638084e-007,1,-3.52841539097426e-007,7.87108035638084e-007,-0.99999988079071,0.000188045451068319,-0.000419486023019999,-0.99999988079071,0.000188045451068319,-0.000419486023019999,-0.99999988079071,0.000188045451068319,-0.000419486023019999,-1,-0,0,-1,-0,0,-1,-0,0,0,-0.913059771060944,-0.407825767993927,0,-0.913059771060944,-0.407825767993927,0,-0.913059771060944,-0.407825767993927,0,-0.913473904132843,-0.406897306442261,0,-0.913473904132843,-0.406897306442261,0,-0.913473904132843,-0.406897306442261,0,0.913473725318909,0.406897783279419,0,0.913473725318909,0.406897783279419,0,0.913473725318909,0.406897783279419,0,0.913059771060944,0.407825767993927,0,0.913059771060944,0.407825767993927,
  681. 0,0.913059771060944,0.407825767993927,1,-4.57991591247264e-005,-1.31391034301487e-005,1,-4.57991591247264e-005,-1.31391034301487e-005,1,-4.57991591247264e-005,-1.31391034301487e-005,0.999670803546906,0.0246646068990231,0.00707591231912375,0.999670803546906,0.0246646068990231,0.00707591231912375,0.999670803546906,0.0246646068990231,0.00707591231912375,-0.999649345874786,-0.0255087409168482,-0.00710899289697409,-0.999649345874786,-0.0255087409168482,-0.00710899289697409,-0.999649345874786,-0.0255087409168482,-0.00710899289697409,-0.999649345874786,-0.0255087409168482,-0.00710899289697409,-0.999649345874786,-0.0255087409168482,-0.00710899289697409,-0.999649345874786,-0.0255087409168482,-0.00710899289697409,-0,0.919312417507172,0.393528491258621,-0,0.919312417507172,0.393528491258621,-0,0.919312417507172,0.393528491258621,-0,0.919313430786133,0.393526077270508,-0,0.919313430786133,0.393526077270508,-0,0.919313430786133,0.393526077270508,-0,-0.92069685459137,-0.390278518199921,-0,-0.92069685459137,-0.390278518199921,-0,-0.92069685459137,-0.390278518199921,-0,-0.921034276485443,-0.389481574296951,-0,-0.921034276485443,-0.389481574296951,-0,-0.921034276485443,-0.389481574296951,0,0.926277756690979,0.376841485500336,0,0.926277756690979,0.376841485500336,0,0.926277756690979,0.376841485500336,0,0.92267245054245,0.385584682226181,0,0.92267245054245,0.385584682226181,0,0.92267245054245,0.385584682226181,0,-0.923273146152496,-0.384144067764282,0,-0.923273146152496,-0.384144067764282,0,-0.923273146152496,-0.384144067764282,0,-0.925847887992859,-0.377896338701248,0,-0.925847887992859,-0.377896338701248,0,-0.925847887992859,-0.377896338701248,-0.999996185302734,-0.00279354257509112,8.798559429124e-005,-0.99999612569809,-0.00279377913102508,-6.2034358339626e-019,-0.999996185302734,-0.00279342383146286,0.000131972788949497,-0.99999612569809,-0.00277365930378437,-6.15876084305438e-019,-0.99999612569809,-0.00277343415655196,8.7352265836671e-005,-0.99999612569809,-0.00277365930378437,-6.15876084305438e-019,6.78714422974736e-005,0.00287322420626879,-0.999995946884155,
  682. 0,0.00287318043410778,-0.999995887279511,0.000113120193418581,0.0028732530772686,-0.999995946884155,0,0.00279479566961527,-0.999996066093445,6.60206496831961e-005,0.00279487436637282,-0.999996066093445,0,0.00279479566961527,-0.999996066093445,0.999995887279511,0.00286375149153173,6.35880568540632e-019,0.999995887279511,0.00286381342448294,2.25497115025064e-005,0.999995887279511,0.00286375149153173,6.35880568540632e-019,0.999994814395905,0.00321858399547637,7.14669211693578e-019,0.999994814395905,0.00321866269223392,2.53437992796535e-005,0.999994814395905,0.00321874138899148,5.0688842748059e-005,0,-0.00197922368533909,0.999998033046722,1.55842953972751e-005,-0.00197920552454889,0.999998033046722,0,-0.00197922368533909,0.999998033046722,4.98437038913835e-005,-0.00316507508978248,0.999994993209839,0,-0.00316516333259642,0.999994993209839,2.49221993726678e-005,-0.00316511932760477,0.999994993209839,0,-0.00631217518821359,0.999980092048645,0.0001987969444599,-0.00631180265918374,0.999980032444,0,-0.00631217518821359,0.999980092048645,0.000469497783342376,-0.00851803086698055,0.999963700771332,0,-0.00851955357939005,0.999963700771332,0.000268304982455447,-0.00851868279278278,0.999963700771332,-0.999999940395355,0.000533983518835157,-2.52275676757563e-005,-0.99999988079071,0.000534134916961193,1.18601776613313e-019,-0.999999940395355,0.000534008780959994,-2.10239668376744e-005,-0.999999940395355,-0.000322603154927492,1.27009116113186e-005,-0.999999940395355,-0.000322678271913901,-7.1648969405014e-020,-0.999999940395355,-0.000322678271913901,-7.1648969405014e-020,0.000144399251439609,0.00916935224086046,-0.999957978725433,0,0.00916920602321625,-0.999957978725433,0.00036100676516071,0.00916957203298807,-0.999957919120789,0,0.00628007482737303,-0.999980270862579,9.89018080872484e-005,0.00628026481717825,-0.999980270862579,0,0.00628007482737303,-0.999980270862579,1,-5.0298262067372e-005,3.96049330220194e-007,1,-5.03007904626429e-005,-1.11690191456943e-020,1,-5.03007904626429e-005,-1.11690191456943e-020,1,7.01391836628318e-005,1.55740273261777e-020,
  683. 1,7.01351236784831e-005,-5.52245069229684e-007,1,7.01432363712229e-005,5.52308961232484e-007,0.999975979328156,1.53956189437107e-018,-0.00693357037380338,0.999975979328156,1.53956189437107e-018,-0.00693357037380338,0.999975979328156,1.53956189437107e-018,-0.00693357037380338,0.999983191490173,-1.28739764239308e-018,0.00579792354255915,0.999983191490173,-1.28739764239308e-018,0.00579792354255915,0.999983191490173,-1.28739764239308e-018,0.00579792354255915,0.999854922294617,3.78222627543645e-018,-0.0170336328446865,0.999854922294617,3.78222627543645e-018,-0.0170336328446865,0.999854922294617,3.78222627543645e-018,-0.0170336328446865,0.999996960163116,5.49121678294219e-019,-0.00247302418574691,0.999996960163116,5.49121678294219e-019,-0.00247302418574691,0.999996960163116,5.49121678294219e-019,-0.00247302418574691,-0,0.919313013553619,0.393527030944824,-0,0.919313013553619,0.393527030944824,-0,0.919313013553619,0.393527030944824,-0,0.92267382144928,0.385581374168396,-0,0.92267382144928,0.385581374168396,-0,0.92267382144928,0.385581374168396,-0,-0.9206303358078,-0.390435397624969,-0,-0.9206303358078,-0.390435397624969,-0,-0.9206303358078,-0.390435397624969,-0,-0.919337332248688,-0.393470287322998,-0,-0.919337332248688,-0.393470287322998,-0,-0.919337332248688,-0.393470287322998,0.999710083007813,0.0193530935794115,0.0143245290964842,0.999710083007813,0.0193530935794115,0.0143245290964842,0.999707460403442,0.0194549430161715,0.0143736582249403,0.999721586704254,0.0217289794236422,0.00920390617102385,0.999719262123108,0.0218186508864164,0.00924552418291569,0.999720931053162,0.0217526778578758,0.00921490509063005,0.999714732170105,0.0228052008897066,0.00710464036092162,0.999717712402344,0.0226924456655979,0.00705441553145647,0.999717712402344,0.0226924456655979,0.00705441553145647,0.00765145756304264,-0.386115789413452,0.922418534755707,0.00765416212379932,-0.386282801628113,0.92234867811203,0.00765326153486967,-0.38622710108757,0.922371983528137,-0.00540947960689664,-0.386288464069366,0.922362208366394,-0.00540947960689664,-0.386288464069366,0.922362208366394,
  684. -0.00541071128100157,-0.386327773332596,0.922345638275146,-0.000712053966708481,-0.386294007301331,0.922375440597534,-0.000712053966708481,-0.386294007301331,0.922375440597534,-0.000712037028279155,-0.386299133300781,0.922373235225677,-0.00151089928112924,-0.386293649673462,0.922374606132507,-0.00151089928112924,-0.386293649673462,0.922374606132507,-0.00151089928112924,-0.386293649673462,0.922374606132507,0.00128919456619769,-0.386293768882751,0.922374904155731,0.00128844380378723,-0.386321872472763,0.92236316204071,0.00128919456619769,-0.386293768882751,0.922374904155731,0.00191662274301052,-0.38633519411087,0.922356486320496,0.0019176258938387,-0.38629338145256,0.922373950481415,0.00191662274301052,-0.38633519411087,0.922356486320496,-0.0157369505614042,0.999296367168427,-0.0340484641492367,-0.0236017797142267,0.999142050743103,-0.0340317822992802,-0.0157369505614042,0.999296367168427,-0.0340484641492367,-0.0236071571707726,0.999369621276855,-0.0265150628983974,-0.0157405473291874,0.999524712562561,-0.0265063121914864,-0.0236071571707726,0.999369621276855,-0.0265150628983974,-0.0314789675176144,0.999457180500031,0.00971447676420212,-0.0236143432557583,0.999673902988434,0.00971855502575636,-0.0236143432557583,0.999673902988434,0.00971855502575636,0.0236053504049778,-0.999293148517609,0.0292606055736542,0.0157393254339695,-0.999447107315063,0.0292873214930296,0.0157393254339695,-0.999447107315063,0.0292873214930296,0.0236088577657938,-0.999441623687744,0.023643970489502,0.015741677954793,-0.99959659576416,0.0236409306526184,0.0236088577657938,-0.999441623687744,0.023643970489502,0.0236145444214344,-0.999682366847992,-0.00880356039851904,0.0314792320132256,-0.999465584754944,-0.00880775414407253,0.0236145444214344,-0.999682366847992,-0.00880356039851904,0.999872207641602,0.0156420897692442,-0.00329973921179771,0.999716281890869,0.0235595777630806,-0.003541249781847,0.999872207641602,0.0156420897692442,-0.00329973921179771,0.999716460704803,0.023560831323266,-0.003461929038167,0.999872505664825,0.0156456343829632,-0.00318735744804144,
  685. 0.999716460704803,0.023560831323266,-0.003461929038167,0.99972003698349,0.0236335378140211,0.00114958116319031,0.999503910541534,0.0314709544181824,0.00120442116167396,0.99972003698349,0.0236335378140211,0.00114958116319031,0.999504446983337,0.0314762517809868,0.000533945567440242,0.999720931053162,0.0236229971051216,0.000479016074677929,0.999504446983337,0.0314762517809868,0.000533945567440242,0.999502062797546,-0.0287162978202105,-0.0130768194794655,0.999969184398651,-0.00696655968204141,-0.00361977843567729,0.999502062797546,-0.0287162978202105,-0.0130768194794655,0.999501049518585,-0.0282872244715691,-0.0140526741743088,0.999968588352203,-0.00665094936266541,-0.00431053666397929,0.999968588352203,-0.00665094936266541,-0.00431053666397929,0.999967575073242,-0.0079090828076005,-0.00155686773359776,0.999219596385956,0.0349077433347702,0.0184839107096195,0.999967575073242,-0.0079090828076005,-0.00155686773359776,0.999969244003296,-0.00713303918018937,-0.00325540965422988,0.999220490455627,0.0352099053561687,0.0178577024489641,0.999220490455627,0.0352099053561687,0.0178577024489641,-0.99949449300766,0.0272982623428106,0.0163015630096197,-0.999961316585541,0.00547497952356935,0.00688422005623579,-0.99949449300766,0.0272982623428106,0.0163015630096197,-0.999967336654663,0.00796523876488209,0.00143395469058305,-0.999500691890717,0.0295874420553446,0.0110952891409397,-0.999967336654663,0.00796523876488209,0.00143395469058305,-0.999969005584717,0.00742832804098725,0.00260911253280938,-0.999225974082947,-0.0351714752614498,-0.0176175311207771,-0.999969005584717,0.00742832804098725,0.00260911253280938,-0.999225974082947,-0.0351317897439003,-0.017698323354125,-0.999969244003296,0.00696234544739127,0.00362900365144014,-0.999225974082947,-0.0351317897439003,-0.017698323354125,0.0271610449999571,0.913681447505951,0.405522465705872,0.0103919329121709,0.913844764232636,0.405930757522583,0.0271610449999571,0.913681447505951,0.405522465705872,0.0103930532932281,0.913731038570404,0.406186699867249,0.0271667446941137,0.913578033447266,0.405755132436752,
  686. 0.0103930532932281,0.913731038570404,0.406186699867249,0.0106115927919745,0.888052344322205,0.45961993932724,-0.0320294164121151,0.888246893882751,0.458248466253281,0.0106115927919745,0.888052344322205,0.45961993932724,-0.0314738042652607,0.897167563438416,0.440567672252655,0.0105420975014567,0.897056758403778,0.441789656877518,-0.0314738042652607,0.897167563438416,0.440567672252655,0.00328444596379995,-0.908843338489532,-0.417124629020691,0.0423129983246326,-0.908147275447845,-0.416507184505463,0.00328444596379995,-0.908843338489532,-0.417124629020691,0.0423179566860199,-0.909156680107117,-0.414298743009567,0.00326709216460586,-0.909851729869843,-0.414920687675476,0.0423179566860199,-0.909156680107117,-0.414298743009567,0.0423289947211742,-0.911592245101929,-0.408910632133484,0.0812397003173828,-0.909311652183533,-0.408108323812485,0.0423289947211742,-0.911592245101929,-0.408910632133484,0.0813424661755562,-0.913378715515137,-0.398902118206024,0.0423447266221046,-0.915770292282104,-0.399464309215546,0.0813424661755562,-0.913378715515137,-0.398902118206024,-0.00327487196773291,0.909400463104248,0.415908724069595,-0.0423157215118408,0.90869551897049,0.415309369564056,-0.00327487196773291,0.909400463104248,0.415908724069595,-0.0423129349946976,0.908134996891022,0.416533946990967,-0.00328458519652486,0.908835351467133,0.417142301797867,-0.0423129349946976,0.908134996891022,0.416533946990967,-0.0422496870160103,0.897762656211853,0.4384486079216,-0.0808501318097115,0.895499050617218,0.437658309936523,-0.0422496870160103,0.897762656211853,0.4384486079216,-0.0809760689735413,0.899743914604187,0.428840190172195,-0.0422789230942726,0.902126431465149,0.429395377635956,-0.0809760689735413,0.899743914604187,0.428840190172195,0.999937653541565,0.00474521890282631,-0.0101055586710572,0.999436497688293,-0.0239014402031899,-0.0235675536096096,0.999937653541565,0.00474521890282631,-0.0101055586710572,0.999468982219696,-0.0252994131296873,-0.0205366685986519,0.999969601631165,0.00331592350266874,-0.00706168869510293,0.997958719730377,-0.0540245771408081,-0.0340546816587448,
  687. 0.999499917030334,-0.0279459226876497,-0.0147965746000409,0.997996032238007,-0.0570079497992992,-0.0274625867605209,0.997466146945953,-0.064223013818264,-0.0306066982448101,0.99548077583313,-0.0886134207248688,-0.0341451726853848,0.996875882148743,-0.0741644576191902,-0.0271669197827578,0.99548077583313,-0.0886134207248688,-0.0341451726853848,0.99548751115799,-0.0881652534008026,-0.0350928120315075,0.996883511543274,-0.0736124441027641,-0.0283661112189293,0.996883511543274,-0.0736124441027641,-0.0283661112189293,0.996593952178955,-0.0817835628986359,-0.0105816870927811,0.997220993041992,-0.074136845767498,-0.00735518895089626,0.996593952178955,-0.0817835628986359,-0.0105816870927811,0.996619164943695,-0.0813464149832726,-0.0115349879488349,0.997237920761108,-0.0738370791077614,-0.0080399950966239,0.997237920761108,-0.0738370791077614,-0.0080399950966239,0.99747759103775,0.0630856975913048,0.0325364321470261,0.99747759103775,0.0630856975913048,0.0325364321470261,0.998469412326813,0.0486685857176781,0.0262716673314571,0.998841643333435,0.0467345975339413,0.0114550245925784,0.997459232807159,0.0678718835115433,0.0216469503939152,0.998434960842133,0.0539024919271469,0.0149105377495289,0.997475981712341,0.0667688101530075,0.0241588577628136,0.998867332935333,0.04534762352705,0.0144116124138236,0.998867332935333,0.04534762352705,0.0144116124138236,0.000397964846342802,-0.904307007789612,-0.426882714033127,-0.0631582513451576,-0.902862012386322,-0.425266057252884,0.000397964846342802,-0.904307007789612,-0.426882714033127,-0.0631415098905563,-0.904259622097015,-0.422288686037064,0.000452351232524961,-0.905621588230133,-0.424086481332779,-0.0313889645040035,-0.905398368835449,-0.423401117324829,-0.063097856938839,-0.907623708248138,-0.415015518665314,-0.0312904082238674,-0.908993780612946,-0.415633589029312,-0.0702110603451729,-0.907190799713135,-0.414819478988647,-0.993843793869019,0.104132704436779,0.0378275066614151,-0.995494842529297,0.0896476805210114,0.0308765061199665,-0.993843793869019,0.104132704436779,0.0378275066614151,
  688. -0.995491981506348,0.0897737145423889,0.0306023731827736,-0.99383807182312,0.104363016784191,0.0373398065567017,-0.995491981506348,0.0897737145423889,0.0306023731827736,-0.995232045650482,0.096060998737812,0.0169013198465109,-0.997228443622589,0.0740052908658981,0.0076557332649827,-0.995232045650482,0.096060998737812,0.0169013198465109,-0.997244298458099,0.073722243309021,0.00830231234431267,-0.995271861553192,0.0953664779663086,0.0184172932058573,-0.997244298458099,0.073722243309021,0.00830231234431267,0.102537602186203,0.901078522205353,0.421359121799469,0.0876649767160416,0.902378439903259,0.421933740377426,0.102537602186203,0.901078522205353,0.421359121799469,0.0876510068774223,0.904698848724365,0.416938096284866,0.102559819817543,0.903374910354614,0.416407823562622,0.0876510068774223,0.904698848724365,0.416938096284866,0.0876709222793579,0.901218175888062,0.424404948949814,0.073563352227211,0.9022176861763,0.424960821866989,0.0876709222793579,0.901218175888062,0.424404948949814,0.0734645575284958,0.906784355640411,0.415144681930542,0.0876432061195374,0.905825138092041,0.414487302303314,0.0734645575284958,0.906784355640411,0.415144681930542,-0.0598513334989548,0.910995006561279,0.408051401376724,-0.0669938698410988,0.910562932491302,0.407905787229538,-0.0669938698410988,0.910562932491302,0.407905787229538,-0.0669576302170753,0.907204985618591,0.415326029062271,-0.0455824173986912,0.908312082290649,0.415802031755447,-0.0598413944244385,0.907620012760162,0.415505737066269,-0.045514203608036,0.913528382778168,0.404220640659332,-0.0598551481962204,0.912859559059143,0.403862476348877,-0.045514203608036,0.913528382778168,0.404220640659332,0.998464703559875,-0.0478307828307152,-0.0279371552169323,0.998461186885834,-0.0478876307606697,-0.0279651116579771,0.998464703559875,-0.0478307828307152,-0.0279371552169323,0.998451828956604,-0.0468164719641209,-0.0300379134714603,0.998445987701416,-0.0469110943377018,-0.0300819985568523,0.998445987701416,-0.0469110943377018,-0.0300819985568523,0.998426675796509,-0.0542675852775574,-0.0141172651201487,
  689. 0.998438000679016,-0.0540791898965836,-0.014036862179637,0.998426675796509,-0.0542675852775574,-0.0141172651201487,0.99840259552002,-0.0551866628229618,-0.0121198548004031,0.998415946960449,-0.0549654550850391,-0.0120180221274495,0.998415946960449,-0.0549654550850391,-0.0120180221274495,-0.998474061489105,0.0499936565756798,0.0234553050249815,-0.99847549200058,0.0499718673527241,0.0234446004033089,-0.998474061489105,0.0499936565756798,0.0234553050249815,-0.998471975326538,0.0490181371569633,0.0255135502666235,-0.998472929000854,0.0490037947893143,0.025506878271699,-0.998471975326538,0.0490181371569633,0.0255135502666235,-0.99840772151947,0.0550050064921379,0.0125146890059114,-0.998420715332031,0.0547880791127682,0.0124221136793494,-0.99840772151947,0.0550050064921379,0.0125146890059114,-0.998420357704163,0.0548033304512501,0.0123873697593808,-0.998407304286957,0.0550179667770863,0.0124865099787712,-0.998420357704163,0.0548033304512501,0.0123873697593808,0.0560213327407837,0.905812978744507,0.41995769739151,0.0631264820694923,0.905460000038147,0.41971093416214,0.0560213327407837,0.905812978744507,0.41995769739151,0.0631144419312477,0.906388640403748,0.417703449726105,0.056001715362072,0.906755983829498,0.41792032122612,0.0631144419312477,0.906388640403748,0.417703449726105,0.0631768628954887,0.901225090026855,0.428721398115158,0.0598135739564896,0.901422917842865,0.428788006305695,0.0631768628954887,0.901225090026855,0.428721398115158,0.0598532371222973,0.91185188293457,0.406132698059082,0.0630387365818024,0.911673545837402,0.406051129102707,0.0598532371222973,0.91185188293457,0.406132698059082,-0.99987268447876,-0.0132598159834743,-0.0088770529255271,-0.999872028827667,0.0155062070116401,0.00394164584577084,-0.999872028827667,0.0155062070116401,0.00394164584577084,-0.999872744083405,0.0135029116645455,0.00849818997085094,-0.999873280525208,-0.0153678664937615,-0.00417449977248907,-0.999873280525208,-0.0153678664937615,-0.00417449977248907,-0.996895253658295,-0.0720684379339218,-0.0317185185849667,-0.999871909618378,-0.0155638316646218,-0.00373729411512613,
  690. -0.999871909618378,-0.0155638316646218,-0.00373729411512613,-0.999875903129578,-0.0140094133093953,-0.00720499968156219,-0.996895730495453,-0.0719127655029297,-0.0320563986897469,-0.996895730495453,-0.0719127655029297,-0.0320563986897469,-0.0207176730036736,-0.916828215122223,-0.398743987083435,0.0144384065642953,-0.916838824748993,-0.398996442556381,-0.0207176730036736,-0.916828215122223,-0.398743987083435,0.0144305005669594,-0.91633677482605,-0.400148302316666,-0.0207282640039921,-0.916308522224426,-0.399936258792877,0.0144305005669594,-0.91633677482605,-0.400148302316666,0.0145641146227717,-0.924821257591248,-0.38012307882309,0.0772877037525177,-0.92207145690918,-0.37922391295433,0.0145641146227717,-0.924821257591248,-0.38012307882309,0.077314168214798,-0.915030062198639,-0.395907491445541,0.0144496774300933,-0.917554497718811,-0.397347390651703,0.077314168214798,-0.915030062198639,-0.395907491445541,0.0168137587606907,0.913085877895355,0.407420545816422,-0.0175876058638096,0.912809491157532,0.408006697893143,0.0168137587606907,0.913085877895355,0.407420545816422,-0.0175862926989794,0.913497686386108,0.40646368265152,0.0167822893708944,0.913783073425293,0.40585595369339,-0.0175862926989794,0.913497686386108,0.40646368265152,-0.0176041033118963,0.894589483737946,0.446541965007782,-0.0771530792117119,0.892968416213989,0.443457782268524,-0.0176041033118963,0.894589483737946,0.446541965007782,-0.0766749531030655,0.899490118026733,0.430161029100418,-0.0176018495112658,0.90133672952652,0.432761400938034,-0.0766749531030655,0.899490118026733,0.430161029100418,0.0385850518941879,-0.900999009609222,-0.432101875543594,-0.0070984847843647,-0.901507556438446,-0.432705163955688,0.0385850518941879,-0.900999009609222,-0.432101875543594,-0.00711976969614625,-0.9042107462883,-0.427027195692062,0.0385346971452236,-0.903776109218597,-0.426267385482788,-0.0104820169508457,-0.904168248176575,-0.427047967910767,-0.0105001134797931,-0.902086198329926,-0.431428223848343,-0.0840034410357475,-0.899410486221313,-0.428957343101501,-0.00710308458656073,-0.90209174156189,-0.431485891342163,
  691. -0.0839068070054054,-0.902750909328461,-0.421901285648346,-0.0104683302342892,-0.905710577964783,-0.423767358064651,-0.0839068070054054,-0.902750909328461,-0.421901285648346,-0.999691128730774,-0.0183609742671251,-0.0167464390397072,-0.999694347381592,-0.0182422772049904,-0.0166892781853676,-0.999694347381592,-0.0182422772049904,-0.0166892781853676,-0.999717116355896,-0.0224232450127602,-0.00793354585766792,-0.999719798564911,-0.0223198346793652,-0.00788574386388063,-0.999718606472015,-0.0223665945231915,-0.00790735892951488,-0.999720811843872,-0.0220691524446011,-0.00844501331448555,-0.999718308448792,-0.0221673715859652,-0.00848881807178259,-0.999720811843872,-0.0220691524446011,-0.00844501331448555,-0.999372720718384,-0.0219533108174801,-0.0277898106724024,-0.999604165554047,0.0278070122003555,-0.00427926052361727,-0.999372720718384,-0.0219533108174801,-0.0277898106724024,-0.999600052833557,0.0279177371412516,-0.00452183792367578,-0.999379813671112,-0.0221410840749741,-0.027382917702198,-0.999600052833557,0.0279177371412516,-0.00452183792367578,-0.9994877576828,0.0304079838097095,-0.00997854117304087,-0.996070981025696,0.0869707465171814,0.0166956689208746,-0.9994877576828,0.0304079838097095,-0.00997854117304087,-0.996057868003845,0.0872307792305946,0.0161128342151642,-0.999528706073761,0.0295883808284998,-0.00818237755447626,-0.996057868003845,0.0872307792305946,0.0161128342151642,-0.0246931482106447,0.900906801223755,0.433309614658356,-0.0246931482106447,0.900906801223755,0.433309614658356,-0.0246931482106447,0.900906801223755,0.433309614658356,-0.0246979892253876,0.901577472686768,0.431912213563919,-0.0246979892253876,0.901577472686768,0.431912213563919,-0.0246979892253876,0.901577472686768,0.431912213563919,-0.0247561670839787,0.910205543041229,0.413416534662247,-0.0247561670839787,0.910205543041229,0.413416534662247,-0.0247561670839787,0.910205543041229,0.413416534662247,-0.0247963983565569,0.917038977146149,0.398025870323181,-0.0247963983565569,0.917038977146149,0.398025870323181,-0.0247963983565569,0.917038977146149,0.398025870323181,
  692. 0.999990224838257,0.00183856359217316,-0.00402402598410845,0.999990224838257,0.00185176590457559,-0.00401798263192177,0.999990224838257,0.00183856359217316,-0.00402402598410845,0.99999725818634,0.000980564509518445,-0.0021276397164911,0.999997317790985,0.000973578891716897,-0.00213085184805095,0.99999725818634,0.000995780574157834,-0.00212064385414124,0.999999463558197,-0.000424514553742483,0.000921116443350911,0.999999582767487,-0.000431085587479174,0.00091805262491107,0.999999582767487,-0.000431085587479174,0.00091805262491107,-0.999984323978424,-0.00234334240667522,0.00508461054414511,-0.999984323978424,-0.00232663098722696,0.0050922492519021,-0.999984323978424,-0.00232663098722696,0.0050922492519021,-0.999996840953827,-0.00104365707375109,0.00228423066437244,-0.999996900558472,-0.00105114583857358,0.00228078803047538,-0.999996840953827,-0.001067457604222,0.00227328925393522,-0.999999523162842,0.000453291635494679,-0.000965343264397234,-0.999999463558197,0.00044638488907367,-0.000968570937402546,-0.999999523162842,0.000453291635494679,-0.000965343264397234,0.00325613259337842,0.91048526763916,0.413528829813004,-0,0.910479962825775,0.413553178310394,0.00325613259337842,0.91048526763916,0.413528829813004,-0,0.910460412502289,0.4135961830616,0.00325647881254554,0.910465240478516,0.413572818040848,-0,0.910460412502289,0.4135961830616,-0,0.900441229343414,0.434977650642395,-0.00342477485537529,0.900449872016907,0.434946417808533,-0,0.900441229343414,0.434977650642395,-0.00323836505413055,0.911506772041321,0.411272346973419,-0,0.91149914264679,0.411301970481873,-0.00323836505413055,0.911506772041321,0.411272346973419,0.999502182006836,-0.0289244912564754,-0.0126032885164022,0.999969244003296,-0.00717130675911903,-0.00317165348678827,0.999502182006836,-0.0289244912564754,-0.0126032885164022,0.999502003192902,-0.0286091100424528,-0.0133206183090806,0.999969184398651,-0.00697408150881529,-0.0036033159121871,0.999968767166138,-0.00702432217076421,-0.00362588162533939,0.999966979026794,-0.00803361926227808,-0.0012842861469835,
  693. 0.999224662780762,0.0345713309943676,0.0188391394913197,0.999966502189636,-0.00809098407626152,-0.00131138449069113,0.999968886375427,-0.00711402436718345,-0.00343124684877694,0.999225914478302,0.0350856967270374,0.0177921503782272,0.999225914478302,0.0350856967270374,0.0177921503782272,-0.999495565891266,0.0274207293987274,0.0160230956971645,-0.999962151050568,0.00563167640939355,0.00664753559976816,-0.999495565891266,0.0274207293987274,0.0160230956971645,-0.999968290328979,0.00764332199469209,0.0022827594075352,-0.999501824378967,0.0292323864996433,0.0119029618799686,-0.999968290328979,0.00764332199469209,0.0022827594075352,-0.999968588352203,0.00750209437683225,0.00258920271880925,-0.999225974082947,-0.035076878964901,-0.0178101100027561,-0.999968588352203,0.00750209437683225,0.00258920271880925,-0.999224662780762,-0.0345528274774551,-0.0188768096268177,-0.999968528747559,0.0074916947633028,0.00261176587082446,-0.999224662780762,-0.0345528274774551,-0.0188768096268177,0.0343259125947952,0.913941740989685,0.404391407966614,0.0103880390524864,0.914239227771759,0.405041664838791,0.0343259125947952,0.913941740989685,0.404391407966614,0.0103889890015125,0.914143085479736,0.405258506536484,0.0343296974897385,0.913861751556396,0.404571652412415,0.0103889890015125,0.914143085479736,0.405258506536484,0.0106231523677707,0.886463284492493,0.46267706155777,-0.0427074730396271,0.886520206928253,0.460714787244797,0.0106231523677707,0.886463284492493,0.46267706155777,-0.0420892797410488,0.89545214176178,0.443163692951202,0.0105545585975051,0.895507395267487,0.444921493530273,-0.0420892797410488,0.89545214176178,0.443163692951202,0.999499678611755,-0.0298457238823175,-0.0104766739532351,0.999224662780762,-0.0368303842842579,-0.0139191951602697,0.999499678611755,-0.0298457238823175,-0.0104766739532351,0.999499320983887,-0.0298808868974447,-0.0104017676785588,0.999223649501801,-0.0369865410029888,-0.013570761308074,0.999223649501801,-0.0369865410029888,-0.013570761308074,0.998932182788849,-0.0457961782813072,0.00610954873263836,
  694. 0.998179316520691,-0.0603161118924618,0.000188281759619713,0.998932182788849,-0.0457961782813072,0.00610954873263836,0.998653650283813,-0.0497026443481445,0.0148507319390774,0.997925698757172,-0.0638305172324181,0.00837719533592463,0.997925698757172,-0.0638305172324181,0.00837719533592463,0.000494321284350008,-0.906630277633667,-0.421925723552704,-0.0280480124056339,-0.906460583209991,-0.421357959508896,0.000494321284350008,-0.906630277633667,-0.421925723552704,-0.0280485469847918,-0.906408369541168,-0.421470195055008,0.00049212429439649,-0.906577587127686,-0.42203888297081,-0.0280485469847918,-0.906408369541168,-0.421470195055008,-0.0281258523464203,-0.898190259933472,-0.438706308603287,-0.0633819699287415,-0.896637260913849,-0.43820583820343,-0.0281258523464203,-0.898190259933472,-0.438706308603287,-0.0636415332555771,-0.905332088470459,-0.419909089803696,-0.0280425380915403,-0.906992375850677,-0.420212686061859,-0.0636415332555771,-0.905332088470459,-0.419909089803696,-0.998819947242737,0.0476129688322544,0.00958200544118881,-0.998432636260986,0.0544524639844894,0.012933511286974,-0.998819947242737,0.0476129688322544,0.00958200544118881,-0.998410820960999,0.0552341192960739,0.0111868930980563,-0.998799681663513,0.0483072586357594,0.00810116343200207,-0.998410820960999,0.0552341192960739,0.0111868930980563,-0.998186349868774,0.0601996444165707,7.97249304014258e-005,-0.997714757919312,0.067498691380024,0.0030373870395124,-0.998186349868774,0.0601996444165707,7.97249304014258e-005,-0.997294962406158,0.0728841572999954,-0.00952404644340277,-0.997743904590607,0.0659172609448433,-0.0127345137298107,-0.997294962406158,0.0728841572999954,-0.00952404644340277,-0.00783237256109715,0.386168301105499,-0.922395050525665,-0.00783421006053686,0.386282235383987,-0.922347366809845,-0.00783145520836115,0.386111468076706,-0.922419011592865,0.00541298231109977,0.38636714220047,-0.922329187393188,0.00541052967309952,0.386288404464722,-0.922362148761749,0.00541052967309952,0.386288404464722,-0.922362148761749,0.00129395117983222,0.386293768882751,-0.922374904155731,
  695. 0.00129395117983222,0.386293768882751,-0.922374904155731,0.00129388505592942,0.3863126039505,-0.922367036342621,0.00151486683171242,0.386293649673462,-0.922374606132507,0.00151486683171242,0.386293649673462,-0.922374606132507,0.00151486683171242,0.386293649673462,-0.922374606132507,-0.00129285815637559,0.386293768882751,-0.922374904155731,-0.00129212252795696,0.38632196187973,-0.922363102436066,-0.00129285815637559,0.386293768882751,-0.922374904155731,-0.0016356238629669,0.38632920384407,-0.922359466552734,-0.00163645797874779,0.386293590068817,-0.922374486923218,-0.0016356238629669,0.38632920384407,-0.922359466552734,0.999997019767761,-0.000941456411965191,0.00224796729162335,0.999997019767761,-0.000973962480202317,0.00223438441753387,0.999997019767761,-0.000941456411965191,0.00224796729162335,0.999988675117493,0.00184587785042822,-0.00440750410780311,0.999988675117493,0.00190960627514869,-0.00438086129724979,0.999988675117493,0.00190960627514869,-0.00438086129724979,0.999998450279236,-0.000706242222804576,0.00162020267453045,0.999998450279236,-0.000734412285964936,0.00160739291459322,0.999998450279236,-0.000706242222804576,0.00162020267453045,0.999968826770782,0.00328324385918677,-0.00718596763908863,0.999968886375427,0.00315728480927646,-0.00724318251013756,0.999968826770782,0.00328324385918677,-0.00718596763908863,-0.99999737739563,0.000886566529516131,-0.00211690366268158,-0.99999737739563,0.000917181896511465,-0.00210412312299013,-0.99999737739563,0.000886566529516131,-0.00211690366268158,-0.999993085861206,-0.00149477948434651,0.00342919980175793,-0.999993026256561,-0.00144488899968565,0.00345004093833268,-0.999993085861206,-0.00149477948434651,0.00342919980175793,-0.999999761581421,0.000301280728308484,-0.000659406883642077,-0.999999761581421,0.000289726915070787,-0.000664667633827776,-0.999999761581421,0.000289726915070787,-0.000664667633827776,-0.999971389770508,-0.00302739930339158,0.00694521004334092,-0.999971389770508,-0.00314813363365829,0.00689025456085801,-0.999971389770508,-0.00314813363365829,0.00689025456085801,
  696. -0,-0.923590779304504,-0.383379817008972,-0.00301870913244784,-0.923587441444397,-0.383376061916351,-0,-0.923590779304504,-0.383379817008972,-0.00302127399481833,-0.923452138900757,-0.383701801300049,-0,-0.923455655574799,-0.383705198764801,-0.00302127399481833,-0.923452138900757,-0.383701801300049,-0.00335076078772545,-0.904930412769318,-0.425546616315842,0.000422855839133263,-0.904909729957581,-0.42560350894928,-0.00335076078772545,-0.904930412769318,-0.425546616315842,0.000874709687195718,-0.915540039539337,-0.402225911617279,-0.00316666183061898,-0.915561258792877,-0.402166068553925,0.000874709687195718,-0.915540039539337,-0.402225911617279,0.00302070984616876,0.923481941223145,0.383630156517029,-0,0.923478424549103,0.38365039229393,0.00302070984616876,0.923481941223145,0.383630156517029,-0,0.923771739006042,0.382943540811539,0.00301513727754354,0.923775613307953,0.382922440767288,-0,0.923771739006042,0.382943540811539,-0,0.904714107513428,0.426019191741943,-0.00335425930097699,0.904721260070801,0.42599093914032,-0,0.904714107513428,0.426019191741943,-0.00316831772215664,0.915468871593475,0.402376353740692,-0,0.915462672710419,0.402402937412262,-0.00316831772215664,0.915468871593475,0.402376353740692,-0.0279097203165293,-0.918400347232819,-0.394666761159897,-0.0103431660681963,-0.918653666973114,-0.39492854475975,-0.0279097203165293,-0.918400347232819,-0.394666761159897,-0.0103412186726928,-0.918840169906616,-0.394494593143463,-0.0279074795544147,-0.918572306632996,-0.394266486167908,-0.0103412186726928,-0.918840169906616,-0.394494593143463,-0.0105155874043703,-0.900265753269196,-0.435213893651962,0.0351886264979839,-0.899854421615601,-0.434768944978714,-0.0105155874043703,-0.900265753269196,-0.435213893651962,0.0351737700402737,-0.907749652862549,-0.418035209178925,-0.0104454141110182,-0.908232986927032,-0.418334573507309,0.0351737700402737,-0.907749652862549,-0.418035209178925,0.999985694885254,-0.00224216305650771,0.00486507080495358,0.999206900596619,0.0335807614028454,0.0214008744806051,0.999985694885254,-0.00224216305650771,0.00486507080495358,
  697. 0.999985933303833,-0.0022216304205358,0.00482051866129041,0.999206960201263,0.0335887931287289,0.0213834587484598,0.999206960201263,0.0335887931287289,0.0213834587484598,0.999219477176666,0.0350293889641762,0.0182588193565607,0.99689257144928,0.070386067032814,0.035368449985981,0.999219477176666,0.0350293889641762,0.0182588193565607,0.996892869472504,0.0704193934798241,0.0352961868047714,0.999216496944427,0.034533753991127,0.0193339716643095,0.996892869472504,0.0704193934798241,0.0352961868047714,-0.999999165534973,-0.000530046294443309,0.00115010037552565,-0.999220609664917,-0.036358118057251,-0.0153758358210325,-0.999999165534973,-0.000530046294443309,0.00115010037552565,-0.999220609664917,-0.0363293550908566,-0.0154382456094027,-0.999999284744263,-0.000508002587594092,0.00110226962715387,-0.999220609664917,-0.0363293550908566,-0.0154382456094027,-0.999219059944153,-0.0367381125688553,-0.0145511720329523,-0.996895134449005,-0.07209512591362,-0.0316605940461159,-0.999219059944153,-0.0367381125688553,-0.0145511720329523,-0.999221086502075,-0.0361485406756401,-0.0158306322991848,-0.996895372867584,-0.0720208585262299,-0.0318217948079109,-0.996895372867584,-0.0720208585262299,-0.0318217948079109,0.0314345583319664,0.903683066368103,0.427046567201614,-0.00375012215226889,0.903929829597473,0.427664339542389,-0.00375012215226889,0.903929829597473,0.427664339542389,-0.00375206931494176,0.904009282588959,0.427496463060379,0.0314323455095291,0.903767049312592,0.426868975162506,0.0314323455095291,0.903767049312592,0.426868975162506,0.03090157546103,0.921847283840179,0.386319398880005,0.0700967609882355,0.920069217681885,0.38543364405632,0.03090157546103,0.921847283840179,0.386319398880005,0.0701834335923195,0.911273241043091,0.405777513980865,0.0311776399612427,0.912930309772491,0.406923085451126,0.0701834335923195,0.911273241043091,0.405777513980865,-0.999996066093445,-0.00119476055260748,0.00254439748823643,-0.999496757984161,0.0273882187902927,0.016006451100111,-0.999996066093445,-0.00119476055260748,0.00254439748823643,
  698. -0.999999046325684,-0.000621539948042482,0.00132364977616817,-0.999500036239624,0.0279475077986717,0.0147931445389986,-0.999500036239624,0.0279475077986717,0.0147931445389986,-0.999501407146454,0.0288705322891474,0.0127904629334807,-0.997467160224915,0.0646638050675392,0.0296320579946041,-0.999501407146454,0.0288705322891474,0.0127904629334807,-0.997467041015625,0.064666710793972,0.0296256132423878,-0.99950122833252,0.0283976625651121,0.0138164833188057,-0.997467041015625,0.064666710793972,0.0296256132423878,-0.095423698425293,-0.894576787948608,-0.436608195304871,-0.0876909792423248,-0.895228147506714,-0.436894804239273,-0.095423698425293,-0.894576787948608,-0.436608195304871,-0.0876832157373428,-0.898194015026093,-0.430765777826309,-0.0954391658306122,-0.89752733707428,-0.43050679564476,-0.0876832157373428,-0.898194015026093,-0.430765777826309,-0.0875023156404495,-0.918653964996338,-0.385250896215439,-0.0731232389807701,-0.919626533985138,-0.385927796363831,-0.0875023156404495,-0.918653964996338,-0.385250896215439,-0.0732341706752777,-0.915846884250641,-0.394792884588242,-0.0875547677278519,-0.914837896823883,-0.394215434789658,-0.0732341706752777,-0.915846884250641,-0.394792884588242,-0.997459053993225,-0.0618259832262993,-0.0353983752429485,-0.998455107212067,-0.0474481284618378,-0.0289179533720016,-0.997459053993225,-0.0618259832262993,-0.0353983752429485,-0.997469127178192,-0.0672868862748146,-0.0229792799800634,-0.99845153093338,-0.0530324690043926,-0.0168005134910345,-0.99845153093338,-0.0530324690043926,-0.0168005134910345,-0.998449921607971,-0.0531298592686653,-0.0165889728814363,-0.998857438564301,-0.0459534339606762,-0.0131203588098288,-0.998449921607971,-0.0531298592686653,-0.0165889728814363,-0.998855233192444,-0.0460754595696926,-0.0128602460026741,-0.998446404933929,-0.0533272176980972,-0.0161602888256311,-0.998855233192444,-0.0460754595696926,-0.0128602460026741,0.0670472010970116,-0.916370034217834,-0.394677877426147,0.0598590970039368,-0.916798233985901,-0.394839107990265,0.0670472010970116,-0.916370034217834,-0.394677877426147,
  699. 0.0598591268062592,-0.916902840137482,-0.394596368074417,0.067048117518425,-0.916483521461487,-0.394414007663727,0.0598591268062592,-0.916902840137482,-0.394596368074417,0.0597787201404572,-0.895845055580139,-0.440327435731888,0.0457048937678337,-0.896516740322113,-0.440645903348923,0.0597787201404572,-0.895845055580139,-0.440327435731888,0.0456367991864681,-0.903559863567352,-0.426024526357651,0.0598213151097298,-0.902906000614166,-0.425655096769333,0.0456367991864681,-0.903559863567352,-0.426024526357651,-0.056187815964222,-0.896966516971588,-0.438513338565826,-0.0632236301898956,-0.896615564823151,-0.438273102045059,-0.056187815964222,-0.896966516971588,-0.438513338565826,-0.0632223710417748,-0.896751761436462,-0.437994569540024,-0.0561852380633354,-0.897117495536804,-0.438204914331436,-0.0632223710417748,-0.896751761436462,-0.437994569540024,-0.0627656728029251,-0.925944745540619,-0.372406750917435,-0.0598441138863564,-0.926105976104736,-0.372486770153046,-0.0627656728029251,-0.925944745540619,-0.372406750917435,-0.0598576962947845,-0.91469269990921,-0.399692952632904,-0.0629927963018417,-0.914510548114777,-0.399627894163132,-0.0598576962947845,-0.91469269990921,-0.399692952632904,0.999875962734222,-0.0140243638306856,-0.00717164948582649,0.999875962734222,0.0146682867780328,0.00573520641773939,0.999875962734222,-0.0140243638306856,-0.00717164948582649,0.999875843524933,0.0139689454808831,0.00729527184739709,0.999875664710999,-0.0148053858429194,-0.00542935915291309,0.999875843524933,0.0139689454808831,0.00729527184739709,0.999875009059906,0.0136932646855712,0.00791021622717381,0.996875822544098,0.0719771459698677,0.0325266607105732,0.999875009059906,0.0136932646855712,0.00791021622717381,0.999875545501709,0.0148471966385841,0.00533608254045248,0.996875762939453,0.0718366578221321,0.0328373350203037,0.996875762939453,0.0718366578221321,0.0328373350203037,-0.0351543799042702,0.913555502891541,0.405192017555237,-0.0319673158228397,0.913653433322906,0.405235350131989,-0.0351543799042702,0.913555502891541,0.405192017555237,
  700. -0.0319648832082748,0.913476407527924,0.405634433031082,-0.0351550690829754,0.913381934165955,0.405583173036575,-0.0319648832082748,0.913476407527924,0.405634433031082,-0.0317109525203705,0.896187424659729,0.442541241645813,-0.0317109525203705,0.896187424659729,0.442541241645813,-0.0317109525203705,0.896187424659729,0.442541241645813,-0.0318426974117756,0.904895126819611,0.424442082643509,-0.0318426974117756,0.904895126819611,0.424442082643509,-0.0318426974117756,0.904895126819611,0.424442082643509,0.999482750892639,0.0263749174773693,0.0184007957577705,0.999485373497009,0.0262996386736631,0.0183676034212112,0.999482750892639,0.0263749174773693,0.0184007957577705,0.999477386474609,0.0315756574273109,0.0069190408103168,0.999481856822968,0.0314471535384655,0.00686387857422233,0.999477386474609,0.0315756574273109,0.0069190408103168,0.999427497386932,0.0337223522365093,0.00273860711604357,0.999433875083923,0.0335420332849026,0.00264908466488123,0.999433875083923,0.0335420332849026,0.00264908466488123,0.999435603618622,0.0334765277802944,0.00279135978780687,0.999429404735565,0.0336543880403042,0.00287709664553404,0.999429404735565,0.0336543880403042,0.00287709664553404,-0.999431669712067,-0.0241016428917646,-0.0235673747956753,-0.99943745136261,-0.0239353738725185,-0.0234939958900213,-0.999431669712067,-0.0241016428917646,-0.0235673747956753,-0.999502182006836,-0.028912240639329,-0.0126311611384153,-0.99950122833252,-0.0289386957883835,-0.0126425446942449,-0.99950122833252,-0.0289386957883835,-0.0126425446942449,-0.999467015266418,-0.0321470610797405,-0.00567841855809093,-0.999463319778442,-0.0322535634040833,-0.0057311961427331,-0.999467015266418,-0.0321470610797405,-0.00567841855809093,-0.999471127986908,-0.0318514779210091,-0.00655028829351068,-0.999474167823792,-0.03176474198699,-0.00650851568207145,-0.999471127986908,-0.0318514779210091,-0.00655028829351068,0.99990701675415,-0.0118249151855707,0.0067916652187705,0.998821496963501,0.0378418192267418,0.0303911007940769,0.998821496963501,0.0378418192267418,0.0303911007940769,
  701. 0.998822093009949,0.0378599874675274,0.0303524807095528,0.999897956848145,-0.0121544450521469,0.00750685343518853,0.999897956848145,-0.0121544450521469,0.00750685343518853,0.999764323234558,-0.0156349614262581,0.0150614371523261,0.996692657470703,-0.080284520983696,-0.0125754252076149,0.999764323234558,-0.0156349614262581,0.0150614371523261,0.996701121330261,-0.0801207795739174,-0.0129423253238201,0.999724149703979,-0.0164288356900215,0.016784755513072,0.996701121330261,-0.0801207795739174,-0.0129423253238201,0.0361886695027351,-0.91919219493866,-0.39214301109314,0.0320435799658298,-0.919350266456604,-0.392133206129074,0.0361886695027351,-0.91919219493866,-0.39214301109314,0.0361873656511307,-0.919159173965454,-0.392220556735992,0.0320430845022202,-0.919312357902527,-0.392222195863724,0.0320430845022202,-0.919312357902527,-0.392222195863724,0.0316307134926319,-0.891098380088806,-0.452706605195999,0.0317433029413223,-0.891095459461212,-0.45270437002182,0.0316307134926319,-0.891098380088806,-0.452706605195999,0.0315332636237144,-0.899850189685822,-0.435057908296585,0.0317671746015549,-0.899844586849213,-0.435052633285522,0.0315332636237144,-0.899850189685822,-0.435057908296585,-0.0384685546159744,0.907242000102997,0.418846249580383,0.0175958164036274,0.907591044902802,0.419486433267593,-0.0384685546159744,0.907242000102997,0.418846249580383,0.0175927728414536,0.909757435321808,0.414767205715179,-0.0384238138794899,0.909480094909668,0.413968116044998,0.0175927728414536,0.909757435321808,0.414767205715179,0.0175658985972404,0.921796202659607,0.38727656006813,0.0833335444331169,0.91895067691803,0.385467499494553,0.0175658985972404,0.921796202659607,0.38727656006813,0.0834889635443687,0.915046036243439,0.394614189863205,0.0175771173089743,0.917671620845795,0.396950721740723,0.0834889635443687,0.915046036243439,0.394614189863205,-0.0279044024646282,-0.918807566165924,-0.393718242645264,-0.0103389536961913,-0.919056355953217,-0.393990784883499,-0.0279044024646282,-0.918807566165924,-0.393718242645264,-0.0103369895368814,-0.919243216514587,-0.393554389476776,
  702. -0.0279021486639977,-0.918978810310364,-0.393318295478821,-0.0103369895368814,-0.919243216514587,-0.393554389476776,-0.0105282757431269,-0.898744463920593,-0.438346594572067,0.0351900644600391,-0.8983433842659,-0.437882304191589,-0.0105282757431269,-0.898744463920593,-0.438346594572067,0.0351775139570236,-0.906277358531952,-0.421217411756516,-0.0104589052498341,-0.90675687789917,-0.421524196863174,0.0351775139570236,-0.906277358531952,-0.421217411756516,0.0280647296458483,0.90480101108551,0.424908816814423,-0.00377619103528559,0.904990792274475,0.425414472818375,-0.00377619103528559,0.904990792274475,0.425414472818375,-0.003776686033234,0.905010879039764,0.425371736288071,0.0280644875019789,0.904825389385223,0.424856871366501,0.0280644875019789,0.904825389385223,0.424856871366501,0.0278879348188639,0.92004805803299,0.390811800956726,0.0670615658164024,0.918221592903137,0.390348523855209,0.0278879348188639,0.92004805803299,0.390811800956726,0.0669815316796303,0.909379661083221,0.410538911819458,0.027998112142086,0.911104619503021,0.411223173141479,0.0669815316796303,0.909379661083221,0.410538911819458,0.999963760375977,0.0036192259285599,-0.00770761072635651,0.999463856220245,-0.0250416323542595,-0.0210956148803234,0.999963760375977,0.0036192259285599,-0.00770761072635651,0.999461054801941,-0.0249077118933201,-0.0213859863579273,0.999961137771606,0.00374923530034721,-0.00798448175191879,0.999461054801941,-0.0249077118933201,-0.0213859863579273,0.997438251972198,-0.0683829411864281,-0.0209982227534056,0.999450504779816,-0.0329016037285328,-0.0040399543941021,0.999450504779816,-0.0329016037285328,-0.0040399543941021,0.999485611915588,-0.0310334451496601,-0.00809615477919579,0.997464179992676,-0.0670066252350807,-0.0239889789372683,0.997464179992676,-0.0670066252350807,-0.0239889789372683,-0.999997556209564,-0.0009408566984348,0.00200367625802755,-0.999498605728149,0.027669245377183,0.0153968147933483,-0.999997556209564,-0.0009408566984348,0.00200367625802755,-0.999997437000275,-0.000964235980063677,0.00205346546135843,
  703. -0.999498426914215,0.0276414453983307,0.0154571179300547,-0.999498426914215,0.0276414453983307,0.0154571179300547,-0.999442398548126,0.0332217141985893,0.00334476307034492,-0.997430086135864,0.0687233880162239,0.020258117467165,-0.999442398548126,0.0332217141985893,0.00334476307034492,-0.997407138347626,0.0695674940943718,0.0184226762503386,-0.999432444572449,0.0335902832448483,0.00254428945481777,-0.997407138347626,0.0695674940943718,0.0184226762503386,-0.0316908285021782,-0.8948974609375,-0.445145159959793,-0.0457225330173969,-0.894412100315094,-0.444900453090668,-0.0316908285021782,-0.8948974609375,-0.445145159959793,-0.0456919521093369,-0.897976100444794,-0.437665849924088,-0.0317468531429768,-0.898513376712799,-0.437796503305435,-0.0456919521093369,-0.897976100444794,-0.437665849924088,-0.0453227497637272,-0.925327360630035,-0.376450687646866,-0.0657432526350021,-0.924397468566895,-0.375722259283066,-0.0453227497637272,-0.925327360630035,-0.376450687646866,-0.0658856406807899,-0.920854866504669,-0.384298473596573,-0.0453850813210011,-0.921843290328979,-0.38489630818367,-0.0658856406807899,-0.920854866504669,-0.384298473596573,-0.0526893548667431,0.913103878498077,0.404308259487152,-0.0175850316882133,0.914132952690125,0.405032962560654,-0.0526893548667431,0.913103878498077,0.404308259487152,-0.0175899136811495,0.911522030830383,0.410874903202057,-0.0527046173810959,0.910383105278015,0.410395920276642,-0.0175899136811495,0.911522030830383,0.410874903202057,-0.0175964515656233,0.907087445259094,0.420574277639389,0.0247349236160517,0.906918585300446,0.420579314231873,-0.0175964515656233,0.907087445259094,0.420574277639389,0.024760514497757,0.91090190410614,0.411879599094391,-0.0175907742232084,0.911014199256897,0.411999851465225,0.024760514497757,0.91090190410614,0.411879599094391,-0.019367590546608,0.922143697738647,0.386362463235855,-0.0193676482886076,0.92220264673233,0.386221647262573,-0.019367590546608,0.922143697738647,0.386362463235855,-0.0161221753805876,0.922255754470825,0.386243879795074,-0.0161219984292984,0.922206699848175,0.386361092329025,
  704. -0.0161221753805876,0.922255754470825,0.386243879795074,0.00315825641155243,0.922371029853821,0.386292159557343,0.00315825641155243,0.922371029853821,0.386292159557343,0.00315825641155243,0.922371029853821,0.386292159557343,0.00380562269128859,0.922369003295898,0.386291325092316,0.00380562269128859,0.922369003295898,0.386291325092316,0.00380562269128859,0.922369003295898,0.386291325092316,0.0211581345647573,-0.922104716300964,-0.386361479759216,0.021158292889595,-0.922169208526611,-0.386207610368729,0.0211581345647573,-0.922104716300964,-0.386361479759216,0.0209726206958294,-0.922172784805298,-0.38620913028717,0.0209721531718969,-0.922108948230743,-0.386361628770828,0.0209726206958294,-0.922172784805298,-0.38620913028717,-0.00341337756253779,-0.922370254993439,-0.386291831731796,-0.00341337756253779,-0.922370254993439,-0.386291831731796,-0.00341337756253779,-0.922370254993439,-0.386291831731796,-0.00336711411364377,-0.922370433807373,-0.386291921138763,-0.00336711411364377,-0.922370433807373,-0.386291921138763,-0.00336711411364377,-0.922370433807373,-0.386291921138763,-0.000375113449990749,0.386285901069641,-0.922379076480865,-0.000375286501366645,0.386294066905975,-0.922375619411469,-0.000375113449990749,0.386285901069641,-0.922379076480865,-0.000936127384193242,0.386293947696686,-0.922375321388245,-0.000935751828365028,0.386273473501205,-0.922383844852448,-0.000936127384193242,0.386293947696686,-0.922375321388245,0.00131684332154691,0.386284172534943,-0.922378897666931,0.00131686951499432,0.386293739080429,-0.922374844551086,0.00131686951499432,0.386293739080429,-0.922374844551086,0.000947468914091587,0.386293947696686,-0.922375321388245,0.000947440392337739,0.386287063360214,-0.922378242015839,0.000947440392337739,0.386287063360214,-0.922378242015839,-0.00477828690782189,-0.386393904685974,0.922321498394012,-0.00478052534162998,-0.386289656162262,0.922365128993988,-0.00477828690782189,-0.386393904685974,0.922321498394012,0.00273449765518308,-0.386292636394501,0.922372221946716,0.00273341336287558,-0.386232972145081,0.922397196292877,
  705. 0.00273449765518308,-0.386292636394501,0.922372221946716,-0.00117998896166682,-0.386293798685074,0.922375023365021,-0.00117996509652585,-0.386285305023193,0.922378718852997,-0.00117998896166682,-0.386293798685074,0.922375023365021,-0.0005848896689713,-0.386289775371552,0.922377347946167,-0.000584908179007471,-0.386294037103653,0.922375500202179,-0.0005848896689713,-0.386289775371552,0.922377347946167,0.0246506743133068,0.922095417976379,0.386176705360413,0.024650426581502,0.922170519828796,0.385997503995895,0.024650426581502,0.922170519828796,0.385997503995895,0.0252485405653715,0.922158598899841,0.385987401008606,0.0252487938851118,0.922081589698792,0.386170923709869,0.0252487938851118,0.922081589698792,0.386170923709869,-0.00639557605609298,0.922356843948364,0.386286199092865,-0.00639557605609298,0.922356843948364,0.386286199092865,-0.00639557605609298,0.922356843948364,0.386286199092865,-0.00639415951445699,0.922356843948364,0.386286199092865,-0.00639415951445699,0.922356843948364,0.386286199092865,-0.00639415951445699,0.922356843948364,0.386286199092865,0.0288676936179399,0.922079205513,0.385923206806183,0.0288664605468512,0.921991348266602,0.386133134365082,0.0288664605468512,0.921991348266602,0.386133134365082,0.0287398640066385,0.921994686126709,0.386134535074234,0.0287410877645016,0.922082185745239,0.385925531387329,0.0287410877645016,0.922082185745239,0.385925531387329,-0.0148687986657023,0.922228455543518,0.386359483003616,-0.0148697169497609,0.922273695468903,0.386251389980316,-0.0148687986657023,0.922228455543518,0.386359483003616,-0.0149365039542317,0.922272741794586,0.386250972747803,-0.0149356024339795,0.922227323055267,0.386359602212906,-0.0149365039542317,0.922272741794586,0.386250972747803,-0.0221469365060329,-0.922216892242432,-0.386038303375244,-0.0221472717821598,-0.922149419784546,-0.386199355125427,-0.0221469365060329,-0.922216892242432,-0.386038303375244,-0.0220840275287628,-0.922150790691376,-0.386199921369553,-0.0220837406814098,-0.922217965126038,-0.386039286851883,-0.0220840275287628,-0.922150790691376,-0.386199921369553,
  706. 0.00437285006046295,-0.922366857528687,-0.386290401220322,0.00437285006046295,-0.922366857528687,-0.386290401220322,0.00437285006046295,-0.922366857528687,-0.386290401220322,0.00306362914852798,-0.922371327877045,-0.386292278766632,0.00306362914852798,-0.922371327877045,-0.386292278766632,0.00306362914852798,-0.922371327877045,-0.386292278766632,-0.0193890146911144,0.922143220901489,0.386362463235855,-0.0193890742957592,0.922202289104462,0.386221468448639,-0.0193890146911144,0.922143220901489,0.386362463235855,-0.0163137521594763,0.922253012657166,0.386242717504501,-0.0163135714828968,0.922203242778778,0.386361300945282,-0.0163137521594763,0.922253012657166,0.386242717504501,0.00239308900199831,0.922373056411743,0.386292994022369,0.00239308900199831,0.922373056411743,0.386292994022369,0.00239308900199831,0.922373056411743,0.386292994022369,0.00473741255700588,0.922365367412567,0.386289775371552,0.00473741255700588,0.922365367412567,0.386289775371552,0.00473741255700588,0.922365367412567,0.386289775371552,0.0211580265313387,-0.922104716300964,-0.386361479759216,0.0211581829935312,-0.922169208526611,-0.386207610368729,0.0211580265313387,-0.922104716300964,-0.386361479759216,0.0209727175533772,-0.922172784805298,-0.38620913028717,0.0209722500294447,-0.922108948230743,-0.386361628770828,0.0209727175533772,-0.922172784805298,-0.38620913028717,-0.00341325206682086,-0.922370254993439,-0.386291831731796,-0.00341325206682086,-0.922370254993439,-0.386291831731796,-0.00341325206682086,-0.922370254993439,-0.386291831731796,-0.00336705008521676,-0.922370433807373,-0.386291921138763,-0.00336705008521676,-0.922370433807373,-0.386291921138763,-0.00336705008521676,-0.922370433807373,-0.386291921138763,-0.000377325341105461,0.386285841464996,-0.922379076480865,-0.000377498392481357,0.386294066905975,-0.922375619411469,-0.000377325341105461,0.386285841464996,-0.922379076480865,-0.000936123542487621,0.386293947696686,-0.922375321388245,-0.000935747637413442,0.386273473501205,-0.922383844852448,-0.000936123542487621,0.386293947696686,-0.922375321388245,
  707. 0.000641114835161716,0.38628938794136,-0.922377526760101,0.000641127582639456,0.386294037103653,-0.922375500202179,0.000641127582639456,0.386294037103653,-0.922375500202179,0.000948090746533126,0.386293947696686,-0.922375321388245,0.000948062282986939,0.386287063360214,-0.922378242015839,0.000948062282986939,0.386287063360214,-0.922378242015839,-0.00166695355437696,-0.386329889297485,0.922359168529511,-0.00166773574892432,-0.386293560266495,0.922374427318573,-0.00166695355437696,-0.386329889297485,0.922359168529511,0.00273451139219105,-0.386292636394501,0.922372221946716,0.00273342593573034,-0.386232972145081,0.922397196292877,0.00273451139219105,-0.386292636394501,0.922372221946716,-0.00119892018847167,-0.386293828487396,0.922375023365021,-0.00119889609050006,-0.386285096406937,0.922378659248352,-0.00119892018847167,-0.386293828487396,0.922375023365021,-0.000585501082241535,-0.386289775371552,0.922377347946167,-0.000585519708693028,-0.386294037103653,0.922375500202179,-0.000585501082241535,-0.386289775371552,0.922377347946167
  708. }
  709. BinormalsW: *1296 {
  710. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  711. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  712. }
  713. }
  714. LayerElementBinormal: 1 {
  715. Version: 102
  716. Name: "LightMapUV"
  717. MappingInformationType: "ByPolygonVertex"
  718. ReferenceInformationType: "Direct"
  719. Binormals: *3888 {
  720. a: 1.1442631148384e-005,0.00145321409218013,-0.999998927116394,-1.14509903141879e-005,0.00145427591633052,-0.999998927116394,1.1442631148384e-005,0.00145321409218013,-0.999998927116394,-0.000132952540297993,-0.0168849732726812,-0.999857425689697,0.000132873319671489,-0.0168749112635851,-0.999857604503632,0.000265667476924136,-0.0168698839843273,-0.999857664108276,0.0474561117589474,-0.0239623114466667,-0.998585820198059,0.0484256371855736,-0.00748325372114778,-0.998798847198486,0.0474561117589474,-0.0239623114466667,-0.998585820198059,-0.0055550835095346,-0.0235713794827461,-0.99970680475235,-0.0064253038726747,-0.00792419910430908,-0.999947965145111,-0.00642249593511224,-0.00797474477440119,-0.999947547912598,0.000118716525321361,-0.0150769986212254,-0.999886333942413,-0.00011878481018357,-0.0150856710970402,-0.999886214733124,0.000237364860367961,-0.0150726679712534,-0.999886453151703,3.71110513697204e-006,0.000471310340799391,-0.99999988079071,-3.71388478015433e-006,0.000471663370262831,-0.99999988079071,3.71110513697204e-006,0.000471310340799391,-0.99999988079071,-0.000376159761799499,-0.0236124992370605,-0.999721169471741,0.000558376021217555,-0.00786497816443443,-0.999968945980072,-0.000376159761799499,-0.0236124992370605,-0.999721169471741,-0.00775138707831502,-0.0235537514090538,-0.999692559242249,-0.00834055803716183,-0.00800483673810959,-0.999933183193207,-0.00834055803716183,-0.00800483673810959,-0.999933183193207,0.0305200330913067,-0.00714920181781054,-0.999508678913116,0.0317760817706585,-0.0309646353125572,-0.999015331268311,0.0301017127931118,0.000711064087226987,-0.999546647071838,0,-0.0314804501831532,-0.999504387378693,1.45519152283669e-011,-0.00787377264350653,-0.999969065189362,0,-0.0314804501831532,-0.999504387378693,0.0330460965633392,0.895201504230499,-0.444434821605682,0.0574167743325233,0.998150706291199,-0.0199615601450205,0.0700630694627762,0.622577428817749,0.779415488243103,0.0515266805887222,0.621896266937256,0.781402707099915,0.0413425043225288,0.998924553394318,-0.0209923945367336,
  721. 0.0522928237915039,0.675578236579895,0.735431671142578,-0.0224308166652918,0.999747157096863,0.00158958532847464,-0.0230196192860603,0.671740591526031,0.740428745746613,-0.0203013755381107,0.985710024833679,-0.167223393917084,-0.00155866146087646,0.670787930488586,0.74164754152298,-0.00165461446158588,0.999998688697815,0.000117256138764787,-0.00140964239835739,0.54542201757431,0.838160395622253,0.0487929731607437,0.792820751667023,-0.60749876499176,0.0951169356703758,0.974586665630341,-0.202814653515816,0.111053571105003,0.500740528106689,0.858444035053253,0.100189082324505,0.500647604465485,0.859833836555481,0.0880760699510574,0.975197851657867,-0.203056395053864,0.102412492036819,0.533823251724243,0.839371383190155,-0.0686095282435417,0.99754410982132,-0.0140886576846242,-0.0683970600366592,0.666432082653046,0.742421865463257,-0.0634746253490448,0.985491037368774,-0.157411590218544,-0.052829671651125,0.666789770126343,0.743371069431305,-0.0538155063986778,0.998446345329285,-0.0144523326307535,-0.0484942942857742,0.549242198467255,0.83425498008728,0.0152684524655342,0.809116542339325,-0.587449848651886,0.0365005694329739,0.976941108703613,-0.210366174578667,0.053655106574297,0.490969806909561,0.86952269077301,0.0404074303805828,0.489620566368103,0.870998859405518,0.0274430681020021,0.977103888988495,-0.210985973477364,0.0414144583046436,0.547592580318451,0.835719704627991,-0.165052533149719,0.986254215240479,-0.00776578113436699,-0.166522324085236,0.653155028820038,0.738687217235565,-0.15056699514389,0.973993062973022,-0.169313818216324,-0.146993905305862,0.655208349227905,0.741009414196014,-0.145867228507996,0.989273548126221,-0.00778955547139049,-0.135583683848381,0.536011695861816,0.833251893520355,0.986507415771484,-0.152853101491928,-0.0586442016065121,0.886542081832886,0.0474844127893448,-0.460204780101776,0.983599483966827,-0.116444483399391,-0.137741714715958,0.985469579696655,-0.0984101742506027,-0.138438254594803,0.983574330806732,-0.175991058349609,0.0401091538369656,0.989139676094055,-0.140339955687523,-0.0436736755073071,
  722. -0.0494715459644794,0.668727695941925,0.74185973405838,-0.0396894477307796,0.102860659360886,0.993903636932373,-0.0338717885315418,0.999376177787781,0.0100027592852712,-0.016248594969511,0.999828517436981,0.00889619905501604,0.00681276619434357,0.743504166603088,-0.668696641921997,-0.0314927101135254,0.66804701089859,0.743452370166779,-0.0385829396545887,0.3714499771595,0.927650928497314,-0.0442816540598869,0.919739723205566,-0.390023350715637,-0.0396746248006821,0.871384739875793,-0.488993316888809,-0.0287327561527491,0.919879853725433,-0.391146391630173,-0.0196169428527355,0.370822429656982,0.928496658802032,-0.0142763908952475,0.204679638147354,0.978724896907806,0.0209027621895075,0.663369655609131,0.747999846935272,0.0215367954224348,0.140470951795578,0.989850521087646,0.00782220717519522,0.999696373939514,-0.0233685057610273,-0.00302751269191504,0.999714255332947,-0.0237106513231993,-0.00394459348171949,0.989822864532471,-0.142250463366508,0.004090316593647,0.662615656852722,0.748948454856873,-0.995065152645111,0.0769177973270416,0.0626812726259232,-0.993572235107422,0.111802443861961,-0.0177353583276272,-0.980907142162323,0.154318511486053,-0.118351206183434,-0.994759976863861,0.042273223400116,-0.0930896624922752,-0.997664153575897,-0.0267725605517626,0.0628449842333794,-0.990581274032593,-0.0545622296631336,0.125586122274399,0.159287586808205,0.986608862876892,-0.0350801683962345,0.138833001255989,0.962713420391083,-0.232181757688522,0.166156083345413,0.619154393672943,0.767489373683929,0.163614109158516,0.985905170440674,-0.0349502637982368,0.167779713869095,0.619022846221924,0.767242312431335,0.152523532509804,0.48206102848053,0.862759470939636,0.0306432843208313,0.89884889125824,-0.437186032533646,0.0528618097305298,0.998519659042358,-0.0128110758960247,0.0643153265118599,0.622389316558838,0.780060946941376,0.048047699034214,0.621744394302368,0.78174501657486,0.0381995886564255,0.999177217483521,-0.0136295855045319,0.0487160682678223,0.6758673787117,0.735411584377289,-0.0220533106476069,0.999736905097961,-0.00630911067128181,
  723. -0.0216692853718996,0.671689808368683,0.740515530109406,-0.0202625785022974,0.985711395740509,-0.167220517992973,-0.00282858684659004,0.670853018760681,0.74158501625061,-0.00424448912963271,0.999962329864502,-0.00757292797788978,-0.00229341886006296,0.545345008373261,0.838208496570587,0.0357402339577675,0.795234322547913,-0.605247914791107,0.0693984627723694,0.980205059051514,-0.18542343378067,0.0804717019200325,0.534919202327728,0.841062247753143,0.0705277100205421,0.534587502479553,0.842165112495422,0.0652019307017326,0.980452418327332,-0.185638785362244,0.0702690705657005,0.529413759708405,0.845448613166809,-0.108618706464767,0.660942614078522,0.742534160614014,-0.12079843878746,0.992653369903564,-0.00686499942094088,-0.0975973010063171,0.542072892189026,0.834644615650177,-0.137163147330284,0.990525722503662,-0.00671938993036747,-0.124645859003067,0.659405708312988,0.74138218164444,-0.128112837672234,0.977365732192993,-0.168354690074921,-0.0482914224267006,0.645416557788849,0.762302696704865,-0.0274219773709774,0.37403678894043,0.927008330821991,-0.0759713649749756,0.996546566486359,-0.0335160233080387,-0.00627019628882408,0.645651996135712,0.763606071472168,-0.030561001971364,0.998840034008026,-0.0372110307216644,-0.0299940127879381,0.999546051025391,-0.00285657262429595,-0.0467841289937496,0.668363988399506,0.742361664772034,-0.0370505191385746,0.0876997858285904,0.995457708835602,-0.0320886261761189,0.999436140060425,0.00989090651273727,-0.0161499194800854,0.999830067157745,0.00888999551534653,0.00651169568300247,0.735750138759613,-0.677221894264221,-0.0306355729699135,0.667828261852264,0.743684649467468,-0.00500661507248878,0.347166687250137,0.937790095806122,-0.0144496224820614,0.921669602394104,-0.387706607580185,-0.0135655272752047,0.861554086208344,-0.507484555244446,-0.00083816796541214,0.921219706535339,-0.389041990041733,0.0137170907109976,0.345754086971283,0.938224971294403,0.0136916190385818,0.272272169589996,0.962122917175293,0.00432334095239639,0.800469577312469,-0.599357783794403,0.0261848419904709,0.993242919445038,-0.113061934709549,
  724. 0.0431809723377228,0.463523358106613,0.885031878948212,0.0452890396118164,0.463376581668854,0.885003387928009,0.0204170122742653,0.993443250656128,-0.112489096820354,0.0454903431236744,0.558019042015076,0.828580319881439,-0.997308135032654,-0.0403421744704247,0.0612293630838394,-0.973394632339478,0.0698059722781181,-0.218243509531021,-0.999499320983887,-0.00400526029989123,-0.0313856787979603,-0.999413073062897,0.0127923777326941,-0.0317797586321831,-0.995581865310669,-0.039253443479538,0.0852990448474884,-0.997012257575989,-0.0324889495968819,0.0700792819261551,0.192446887493134,0.981303215026855,0.00288051087409258,0.152548849582672,0.6674445271492,0.728866755962372,0.136614635586739,0.574254810810089,0.807197570800781,0.151945605874062,0.66752165555954,0.728922128677368,0.19158972799778,0.981471061706543,0.00283194519579411,0.186826512217522,0.975374519824982,-0.117219813168049,0.00798254739493132,-0.0046087009832263,-0.999957501888275,0.0158513281494379,-0.00446334155276418,-0.999864399433136,0.00798254739493132,-0.0046087009832263,-0.999957501888275,0.00479351356625557,0.406242936849594,-0.913752555847168,-0.00240119150839746,0.406238466501236,-0.91376405954361,0.00479351356625557,0.406242936849594,-0.913752555847168,0.031561017036438,0.898728489875793,-0.437368303537369,0.0534023568034172,0.998491287231445,-0.0127808339893818,0.063732698559761,0.618130743503571,0.783487379550934,0.0479188449680805,0.617597162723541,0.785033464431763,0.0406573712825775,0.999082028865814,-0.0134926177561283,0.0488870590925217,0.675853729248047,0.73541271686554,-0.00716712698340416,0.414051741361618,-0.91022515296936,-0.00716712698340416,0.414051741361618,-0.91022515296936,-0.00716712698340416,0.414051741361618,-0.91022515296936,-0.00429947255179286,0.83775269985199,-0.546033024787903,-0.00429947255179286,0.83775269985199,-0.546033024787903,-0.00429947255179286,0.83775269985199,-0.546033024787903,-0.0123074799776077,0.998846530914307,-0.0464143268764019,-0.00718391221016645,0.671025693416595,0.741399347782135,-0.0123181063681841,0.985959827899933,-0.166528150439262,
  725. 0.00812661927193403,0.67030394077301,0.742042183876038,0.00706448126584291,0.998839855194092,-0.0476342923939228,0.00778148230165243,0.578822910785675,0.815416157245636,0.0455849878489971,0.793711483478546,-0.606584131717682,0.0894947201013565,0.978385865688324,-0.186418190598488,0.104438662528992,0.530554115772247,0.841192543506622,0.0938667133450508,0.530476152896881,0.842486917972565,0.0835584178566933,0.978874742984772,-0.186607033014297,0.0935404747724533,0.525266528129578,0.845780849456787,-0.0633426010608673,0.997890532016754,-0.0142185315489769,-0.0631254315376282,0.666571438312531,0.742763638496399,-0.0586449094116688,0.985946178436279,-0.156432047486305,-0.04880116507411,0.666855871677399,0.743587136268616,-0.0496652349829674,0.99865996837616,-0.0145537341013551,-0.0448302365839481,0.549997448921204,0.833962261676788,-0.0315793082118034,0.637149751186371,0.770092844963074,-0.00432974845170975,0.254803001880646,0.966983318328857,-0.0652025565505028,0.996577084064484,-0.050822202116251,-0.0132458442822099,0.637189388275146,0.770593464374542,-0.0439527742564678,0.997667908668518,-0.0522208884358406,-0.0436825938522816,0.998401820659637,-0.0358555428683758,-0.0536727234721184,0.669171452522278,0.741167187690735,-0.0423807911574841,0.0854120403528214,0.995443999767303,-0.0369099602103233,0.9992635846138,0.0104838842526078,-0.0178030710667372,0.999799787998199,0.0091340746730566,0.00741233583539724,0.735959470272064,-0.676985025405884,-0.0340164005756378,0.668356359004974,0.74306309223175,0.192318260669708,0.576270043849945,0.794308841228485,0.107640415430069,0.0694484114646912,0.991761386394501,0.17708432674408,0.962961196899414,-0.203339293599129,0.142394989728928,0.96851247549057,-0.204223528504372,0.141802981495857,0.967506945133209,-0.209338054060936,0.161928102374077,0.578879594802856,0.799173176288605,0.00438055163249373,0.999955236911774,0.00838811416178942,-0.0108066778630018,0.665716528892517,0.746126472949982,-0.0120633784681559,0.602059841156006,0.798359811306,-0.0102768372744322,0.665748536586761,0.746105432510376,
  726. 0.00490735936909914,0.99995231628418,0.00844244379550219,0.00663905963301659,0.996161580085754,-0.0872826352715492,-0,-0.409055888652802,0.912509322166443,-0,-0.409055888652802,0.912509322166443,-0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,-0.99999988079071,0.000188045451068319,-0.000419486023019999,-0.99999988079071,0.000188045451068319,-0.000419486023019999,-0.99999988079071,0.000188045451068319,-0.000419486023019999,-1,-0,0,-1,-0,0,-1,-0,0,0,-0.262510061264038,0.964929282665253,0,-0.262510061264038,0.964929282665253,0,-0.262510061264038,0.964929282665253,0,-0.265457183122635,0.964122653007507,0,-0.265457183122635,0.964122653007507,0,-0.265457183122635,0.964122653007507,0,-0.265457183122635,0.964122653007507,0,-0.265457183122635,0.964122653007507,0,-0.265457183122635,0.964122653007507,0,-0.262510061264038,0.964929282665253,0,-0.262510061264038,0.964929282665253,0,-0.262510061264038,0.964929282665253,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.000183327734703198,-0.415574461221695,0.909559190273285,-0.000183327734703198,-0.415574461221695,0.909559190273285,-0.000183327734703198,-0.415574461221695,0.909559190273285,-9.78155876509845e-005,-0.415574461221695,0.909559190273285,-9.78155876509845e-005,-0.415574461221695,0.909559190273285,-9.78155876509845e-005,-0.415574461221695,0.909559190273285,0,-0.415574461221695,0.909559190273285,0,-0.415574461221695,0.909559190273285,0,-0.415574461221695,0.909559190273285,0,-0.415574461221695,0.909559190273285,0,-0.415574461221695,0.909559190273285,0,-0.415574461221695,0.909559190273285,0,-0.914823293685913,-0.40385439991951,0,-0.914823293685913,-0.40385439991951,0,-0.914823293685913,-0.40385439991951,0,-0.909904778003693,-0.414817214012146,0,-0.909904778003693,-0.414817214012146,0,-0.909904778003693,-0.414817214012146,0,0.915411293506622,0.402519702911377,0,0.915411293506622,0.402519702911377,0,0.915411293506622,0.402519702911377,
  727. 0,0.911153674125671,0.412066757678986,0,0.911153674125671,0.412066757678986,0,0.911153674125671,0.412066757678986,1,4.81604256492574e-005,1.21379935080768e-005,1,4.81604256492574e-005,1.21379935080768e-005,1,4.81604256492574e-005,1.21379935080768e-005,1,-0.000300781946862116,-7.58068345021456e-005,1,-0.000300781946862116,-7.58068345021456e-005,1,-0.000300781946862116,-7.58068345021456e-005,-1,-0.000122344732517377,-3.08348498947453e-005,-1,-0.000122344732517377,-3.08348498947453e-005,-1,-0.000122344732517377,-3.08348498947453e-005,-0.999229431152344,-0.0380611345171928,-0.00959264393895864,-0.999229431152344,-0.0380611345171928,-0.00959264393895864,-0.999229431152344,-0.0380611345171928,-0.00959264393895864,-1.9295630409033e-005,-0.409055888652802,0.912509322166443,-1.9295630409033e-005,-0.409055888652802,0.912509322166443,-1.9295630409033e-005,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.275123476982117,0.961408913135529,0,-0.275123476982117,0.961408913135529,0,-0.275123476982117,0.961408913135529,0,-0.271241039037704,0.962511479854584,0,-0.271241039037704,0.962511479854584,0,-0.271241039037704,0.962511479854584,0,-0.271241039037704,0.962511479854584,0,-0.271241039037704,0.962511479854584,0,-0.271241039037704,0.962511479854584,0,-0.275094598531723,0.961417138576508,0,-0.275094598531723,0.961417138576508,0,-0.275094598531723,0.961417138576508,0.998775005340576,0.0475650653243065,0.0136457150802016,0.998775005340576,0.0475650653243065,0.0136457150802016,0.998775005340576,0.0475650653243065,0.0136457150802016,1,1.7511316400487e-005,5.023738140153e-006,1,1.7511316400487e-005,5.023738140153e-006,1,1.7511316400487e-005,5.023738140153e-006,-0.998735785484314,-0.0484223142266274,-0.013494742102921,
  728. -0.998735785484314,-0.0484223142266274,-0.013494742102921,-0.998735785484314,-0.0484223142266274,-0.013494742102921,-1,0,0,-1,0,0,-1,0,0,-0,0.922672867774963,0.385583728551865,-0,0.922672867774963,0.385583728551865,-0,0.922672867774963,0.385583728551865,-0,0.90802788734436,0.418909728527069,-0,0.90802788734436,0.418909728527069,-0,0.90802788734436,0.418909728527069,-0,-0.912584125995636,-0.40888899564743,-0,-0.912584125995636,-0.40888899564743,-0,-0.912584125995636,-0.40888899564743,-0,-0.924379467964172,-0.381474256515503,-0,-0.924379467964172,-0.381474256515503,-0,-0.924379467964172,-0.381474256515503,0,0.92267245054245,0.385584682226181,0,0.92267245054245,0.385584682226181,0,0.92267245054245,0.385584682226181,0,0.92267245054245,0.385584682226181,0,0.92267245054245,0.385584682226181,0,0.92267245054245,0.385584682226181,0,-0.925836205482483,-0.377925038337708,0,-0.925836205482483,-0.377925038337708,0,-0.925836205482483,-0.377925038337708,0,-0.925215363502502,-0.37944233417511,0,-0.925215363502502,-0.37944233417511,0,-0.925215363502502,-0.37944233417511,0.245080336928368,-0.969022274017334,0.030520386993885,0.245203137397766,-0.969471752643585,-2.15265972301723e-016,0.244933485984802,-0.968459665775299,0.045754000544548,0,-1,-2.22044604925031e-016,0,-0.999504387378693,0.0314804539084435,0,-1,-2.22044604925031e-016,5.02540679008234e-005,0.00212742225266993,-0.999997794628143,0,0.00212738988921046,-0.999997735023499,8.37576153571717e-005,0.0021274434402585,-0.999997735023499,0,0.00442553916946054,-0.999990224838257,0.000104543258203194,0.00442566443234682,-0.999990284442902,0,0.00442553916946054,-0.999990224838257,0,-1,-2.22044604925031e-016,0,-0.999969005584717,-0.00787377171218395,0,-1,-2.22044604925031e-016,0.208266854286194,-0.978072047233582,-2.17175621316197e-016,0.208276003599167,-0.978039860725403,-0.00770110124722123,0.208272710442543,-0.977949559688568,-0.015400780364871,0,-0.0045519839040935,0.999989628791809,3.58420620614197e-005,-0.00455194199457765,0.999989628791809,0,-0.0045519839040935,0.999989628791809,
  729. 3.89834858651739e-005,-0.002475451445207,0.999996960163116,0,-0.00247552036307752,0.999996960163116,1.94920139620081e-005,-0.00247548567131162,0.999996960163116,0,-0.9999960064888,0.00283280480653048,0.0314803272485733,-0.999500334262848,0.00285307364538312,0,-0.9999960064888,0.00283280480653048,0.0550329238176346,-0.998454511165619,-0.00774648878723383,-0,-0.999972820281982,-0.00737370923161507,0.0314795486629009,-0.999475598335266,-0.00758968153968453,-0.430666863918304,-0.901505589485168,0.0425908155739307,-0.43098458647728,-0.902359306812286,-2.00364015781559e-016,-0.430774003267288,-0.901761293411255,0.0355024114251137,0,-0.999225914478302,0.0393396019935608,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.000152350592543371,0.00967426225543022,-0.999953210353851,0,0.00967410672456026,-0.999953210353851,0.000380885583581403,0.0096744941547513,-0.999953150749207,0,0.00785377994179726,-0.999969184398651,0.00012368532770779,0.00785401742905378,-0.999969124794006,0,0.00785377994179726,-0.999969184398651,0,-0.999969005584717,0.00787377171218395,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.401763111352921,-0.91574364900589,-2.03335936756119e-016,0.401723116636276,-0.915732800960541,0.00721049448475242,0.401782244443893,-0.915706872940063,-0.00721029005944729,0.999820947647095,-4.20193647747494e-018,0.0189238395541906,0.999820947647095,-4.20193647747494e-018,0.0189238395541906,0.999820947647095,-4.20193647747494e-018,0.0189238395541906,0.999983191490173,-1.28739764239308e-018,0.00579792354255915,0.999983191490173,-1.28739764239308e-018,0.00579792354255915,0.999983191490173,-1.28739764239308e-018,0.00579792354255915,-0.0383672416210175,2.21881114331321e-016,-0.99926370382309,-0.0383672416210175,2.21881114331321e-016,-0.99926370382309,-0.0383672416210175,2.21881114331321e-016,-0.99926370382309,0.00101349723991007,2.22044485811023e-016,-0.999999463558197,0.00101349723991007,2.22044485811023e-016,-0.999999463558197,0.00101349723991007,2.22044485811023e-016,-0.999999463558197,-0,0.922673404216766,0.385582327842712,
  730. -0,0.922673404216766,0.385582327842712,-0,0.922673404216766,0.385582327842712,-0,0.90802788734436,0.418909728527069,-0,0.90802788734436,0.418909728527069,-0,0.90802788734436,0.418909728527069,-0,-0.912584185600281,-0.408888906240463,-0,-0.912584185600281,-0.408888906240463,-0,-0.912584185600281,-0.408888906240463,-0,-0.92438131570816,-0.381469786167145,-0,-0.92438131570816,-0.381469786167145,-0,-0.92438131570816,-0.381469786167145,0.999707818031311,0.0191504266113043,0.0147560071200132,0.999707818031311,0.0191504266113043,0.0147560071200132,0.999705016613007,0.0192553419619799,0.0148066133260727,0.999721586704254,0.0216707997024059,0.00933369435369968,0.999719381332397,0.0217591263353825,0.00937468837946653,0.999721050262451,0.0216922294348478,0.00934364181011915,0.999713778495789,0.0229248404502869,0.00684499507769942,0.999716758728027,0.0228093564510345,0.0067935548722744,0.999716758728027,0.0228093564510345,0.0067935548722744,0.00622167624533176,-0.386150866746902,0.922414660453796,0.0062238690443337,-0.386286616325378,0.922357797622681,0.00622313749045134,-0.386241346597672,0.922376811504364,-0.00540947960689664,-0.386288464069366,0.922362208366394,-0.00540947960689664,-0.386288464069366,0.922362208366394,-0.00541071128100157,-0.386327773332596,0.922345638275146,-0.000624967098701745,-0.386294037103653,0.922375500202179,-0.000624967098701745,-0.386294037103653,0.922375500202179,-0.000624952313955873,-0.386298537254334,0.922373592853546,-0.00151089928112924,-0.386293649673462,0.922374606132507,-0.00151089928112924,-0.386293649673462,0.922374606132507,-0.00151089928112924,-0.386293649673462,0.922374606132507,0.00128919456619769,-0.386293768882751,0.922374904155731,0.00128844380378723,-0.386321872472763,0.92236316204071,0.00128919456619769,-0.386293768882751,0.922374904155731,-6.64638355374336e-005,-0.386292666196823,0.922376275062561,-6.64988256176002e-005,-0.386294096708298,0.922375679016113,-6.64638355374336e-005,-0.386292666196823,0.922376275062561,-3.58466252237122e-008,2.27626082960342e-006,-1,-5.37699342828546e-008,2.27626060222974e-006,-1,
  731. -3.58466252237122e-008,2.27626082960342e-006,-1,0.000638918718323112,-0.0270475577563047,-0.999634027481079,0.000426018610596657,-0.0270521808415651,-0.999634027481079,0.000638918718323112,-0.0270475577563047,-0.999634027481079,0.000864564208313823,-0.0274499133229256,-0.999622821807861,0.000648541492410004,-0.0274549219757319,-0.999622821807861,0.000648541492410004,-0.0274549219757319,-0.999622821807861,-5.37699342828546e-008,2.27626060222974e-006,-1,-3.58466252237122e-008,2.27626082960342e-006,-1,-3.58466252237122e-008,2.27626082960342e-006,-1,0.000380861049052328,-0.0161231178790331,-0.9998699426651,0.000253958627581596,-0.0161263719201088,-0.9998699426651,0.000380861049052328,-0.0161231178790331,-0.9998699426651,0.000323332496918738,-0.0136877419427037,-0.999906301498413,0.000431016174843535,-0.0136847635731101,-0.999906301498413,0.000323332496918738,-0.0136877419427037,-0.999906301498413,0,-0.0314804501831532,-0.999504387378693,0,-0.0157460793852806,-0.999876022338867,0,-0.0314804501831532,-0.999504387378693,0.000500521389767528,-0.0157342571765184,-0.999876081943512,0.00100223580375314,-0.0314646698534489,-0.999504387378693,0.000500521389767528,-0.0157342571765184,-0.999876081943512,0.000500521389767528,-0.0157342571765184,-0.999876081943512,-0.000252192141488194,0.00786583032459021,-0.999969124794006,0.000500521389767528,-0.0157342571765184,-0.999876081943512,-0.000252191559411585,0.00786583032459021,-0.999969124794006,0.000500498048495501,-0.0157342590391636,-0.999876081943512,-0.000252191559411585,0.00786583032459021,-0.999969124794006,0.999502241611481,-0.028888201341033,-0.0126858437433839,0.999969244003296,-0.00714388908818364,-0.00323166232556105,0.999502241611481,-0.028888201341033,-0.0126858437433839,0.99950110912323,-0.0282995570451021,-0.0140246283262968,0.999968647956848,-0.00666368799284101,-0.0042826565913856,0.999968647956848,-0.00666368799284101,-0.0042826565913856,0.999966740608215,-0.00806641392409801,-0.00121250317897648,0.999219000339508,0.034743320196867,0.018824664875865,0.999966740608215,-0.00806641392409801,-0.00121250317897648,
  732. 0.999969124794006,-0.00737249897792935,-0.00273130531422794,0.99921977519989,0.0349589139223099,0.0183778684586287,0.99921977519989,0.0349589139223099,0.0183778684586287,-0.999495089054108,0.0273684673011303,0.0161419250071049,-0.999962091445923,0.00554739590734243,0.00672573875635862,-0.999495089054108,0.0273684673011303,0.0161419250071049,-0.999967455863953,0.00792107451707125,0.00153061957098544,-0.999500870704651,0.0295446962118149,0.0111925294622779,-0.999967455863953,0.00792107451707125,0.00153061957098544,-0.999969303607941,0.00725041516125202,0.0029985117726028,-0.999226093292236,-0.0353601053357124,-0.0172335468232632,-0.999969303607941,0.00725041516125202,0.0029985117726028,-0.999226033687592,-0.0354917608201504,-0.0169655326753855,-0.999968588352203,0.00662378501147032,0.00436999090015888,-0.999226033687592,-0.0354917608201504,-0.0169655326753855,-0.0225321315228939,0.400899440050125,-0.915844917297363,-0.00406489986926317,0.400183707475662,-0.916425943374634,-0.0225321315228939,0.400899440050125,-0.915844917297363,-0.00403860025107861,0.402506113052368,-0.915408432483673,-0.0224878937005997,0.402396947145462,-0.9151890873909,-0.00403860025107861,0.402506113052368,-0.915408432483673,-0.00403860025107861,0.402506113052368,-0.915408432483673,0.0296875275671482,0.402351498603821,-0.915003836154938,-0.00403860025107861,0.402506113052368,-0.915408432483673,0.0268194694072008,0.483834624290466,-0.874748408794403,-0.00310029997490346,0.482275813817978,-0.876013934612274,0.0268194694072008,0.483834624290466,-0.874748408794403,0.00714661506935954,0.419731587171555,-0.907620131969452,-0.0022300761193037,0.419706702232361,-0.907657086849213,0.00714661506935954,0.419731587171555,-0.907620131969452,-0.0014320183545351,0.402534693479538,-0.915403664112091,0.00720771634951234,0.402526408433914,-0.915380001068115,-0.0014320183545351,0.402534693479538,-0.915403664112091,-0.0014320183545351,0.402534693479538,-0.915403664112091,-0.0100712832063437,0.402512907981873,-0.915358901023865,-0.0014320183545351,0.402534693479538,-0.915403664112091,
  733. -0.0101106511428952,0.402954518795013,-0.915164232254028,-0.00150945759378374,0.4042067527771,-0.914666414260864,-0.0101106511428952,0.402954518795013,-0.915164232254028,0.00721251918002963,0.401136457920074,-0.915989935398102,-0.00136570900212973,0.40110194683075,-0.916032373905182,0.00721251918002963,0.401136457920074,-0.915989935398102,-0.00142762903124094,0.402439892292023,-0.915445327758789,0.00720803998410702,0.402433037757874,-0.915421068668365,-0.00142762903124094,0.402439892292023,-0.915445327758789,-0.00142762903124094,0.402439892292023,-0.915445327758789,-0.0100627057254314,0.402416735887527,-0.9154012799263,-0.00142762903124094,0.402439892292023,-0.915445327758789,-0.00990345794707537,0.400629878044128,-0.916186571121216,-0.00140266388189048,0.40190052986145,-0.915682256221771,-0.00990345794707537,0.400629878044128,-0.916186571121216,-0.00318120000883937,0.425036638975143,-0.905170559883118,-0.00315341586247087,0.418645679950714,-0.908144176006317,-0.00318120000883937,0.425036638975143,-0.905170559883118,0.181847497820854,0.406354576349258,-0.895437061786652,0.181870654225349,0.41795015335083,-0.890079021453857,0.181794285774231,0.394618153572083,-0.900681614875793,-0.143595412373543,0.418334811925888,-0.896870255470276,-0.14394474029541,0.416016817092896,-0.897891938686371,-0.14378909766674,0.417050719261169,-0.897437155246735,0.995481252670288,-0.0885775983333588,-0.034220889210701,0.99687647819519,-0.0741294026374817,-0.0272430647164583,0.995481252670288,-0.0885775983333588,-0.034220889210701,0.99548864364624,-0.088085375726223,-0.0352616682648659,0.996884346008301,-0.0735343843698502,-0.0285356342792511,0.996884346008301,-0.0735343843698502,-0.0285356342792511,0.996579885482788,-0.0820197314023972,-0.0100665893405676,0.997207760810852,-0.0743638426065445,-0.0068365428596735,0.996579885482788,-0.0820197314023972,-0.0100665893405676,0.996609032154083,-0.0815239995718002,-0.0111477505415678,0.997228384017944,-0.0740080773830414,-0.00764938537031412,0.997228384017944,-0.0740080773830414,-0.00764938537031412,
  734. 0.99747759103775,0.0630825236439705,0.0325436368584633,0.99747759103775,0.0630825236439705,0.0325436368584633,0.998469471931458,0.0486652962863445,0.0262788217514753,0.998840689659119,0.0467780753970146,0.011362312361598,0.997458517551422,0.067913182079792,0.021552886813879,0.998434007167816,0.0539453513920307,0.0148174166679382,0.997476041316986,0.0667629987001419,0.0241720844060183,0.998867392539978,0.0453414805233479,0.0144247077405453,0.998867392539978,0.0453414805233479,0.0144247077405453,-0.0175602100789547,0.382905572652817,-0.923620522022247,-0.00798472389578819,0.382976353168488,-0.923723638057709,-0.0175602100789547,0.382905572652817,-0.923620522022247,-0.062975637614727,-0.807113170623779,-0.587028503417969,-0.00294325361028314,-0.807079017162323,-0.590436100959778,-0.032987218350172,-0.807461082935333,-0.588997781276703,0.0573241598904133,0.99528032541275,0.0783014893531799,0.0254474375396967,0.996399402618408,0.0808754116296768,0.0651137679815292,0.994851350784302,0.0776595771312714,-0.993839621543884,0.104302957653999,0.0374669879674912,-0.995491027832031,0.0898143351078033,0.0305140279233456,-0.993839621543884,0.104302957653999,0.0374669879674912,-0.995486915111542,0.0899847596883774,0.0301433149725199,-0.993832468986511,0.104578904807568,0.0368825867772102,-0.995486915111542,0.0899847596883774,0.0301433149725199,-0.995232224464417,0.0960580334067345,0.0169077981263399,-0.997228622436523,0.0740024372935295,0.00766224972903728,-0.995232224464417,0.0960580334067345,0.0169077981263399,-0.997247576713562,0.0736611783504486,0.00844178721308708,-0.995275437831879,0.0953032150864601,0.0185553915798664,-0.997247576713562,0.0736611783504486,0.00844178721308708,-0.00676349736750126,0.323267996311188,-0.946283280849457,-0.0117718409746885,0.323564171791077,-0.946133077144623,-0.00676349736750126,0.323267996311188,-0.946283280849457,0.00487309275195003,0.496033191680908,-0.868289887905121,0.0126710012555122,0.495037019252777,-0.868779540061951,0.00487309275195003,0.496033191680908,-0.868289887905121,0.00492081791162491,0.496504545211792,-0.868020236492157,
  735. -0.00281591713428497,0.497470140457153,-0.867476522922516,0.00492081791162491,0.496504545211792,-0.868020236492157,-0.0037208148278296,0.48685422539711,-0.873475432395935,0.00394529430195689,0.48684498667717,-0.87347948551178,-0.0037208148278296,0.48685422539711,-0.873475432395935,-0.0550996027886868,0.998477041721344,0.00277010397985578,-0.0629320666193962,0.998014032840729,0.00275323283858597,-0.0629320666193962,0.998014032840729,0.00275323283858597,0.0608700886368752,-0.699182391166687,-0.712347507476807,0.0444010570645332,-0.700316905975342,-0.712449848651886,0.055388018488884,-0.699581325054169,-0.712403118610382,0.00360925868153572,0.445491999387741,-0.895278692245483,-0.00340002588927746,0.445397526025772,-0.895326495170593,0.00360925868153572,0.445491999387741,-0.895278692245483,0.000568473653402179,0.434499740600586,-0.900671780109406,0.000558560655917972,0.418529182672501,-0.908203125,0.000568473653402179,0.434499740600586,-0.900671780109406,0.0256110019981861,0.433109492063522,-0.900977373123169,0.0235405173152685,0.417259097099304,-0.908482670783997,0.0235405173152685,0.417259097099304,-0.908482670783997,0.0223626885563135,0.417329668998718,-0.908480107784271,0.0202934835106134,0.401364773511887,-0.915693461894989,0.0223626885563135,0.417329668998718,-0.908480107784271,0.0165636390447617,0.417668133974075,-0.90844863653183,0.0165964867919683,0.401579260826111,-0.915673851966858,0.0165964867919683,0.401579260826111,-0.915673851966858,-0.99847424030304,0.0497410297393799,0.0239789541810751,-0.998475015163422,0.0497284233570099,0.0239727627485991,-0.99847424030304,0.0497410297393799,0.0239789541810751,-0.998474299907684,0.0494536869227886,0.0245688073337078,-0.998474061489105,0.0494559332728386,0.0245698541402817,-0.998474299907684,0.0494536869227886,0.0245688073337078,-0.998391389846802,0.0555612221360207,0.011305645108223,-0.998405694961548,0.0553227625787258,0.0112039064988494,-0.998391389846802,0.0555612221360207,0.011305645108223,-0.99840521812439,0.0553367100656033,0.0111721279099584,-0.998391032218933,0.0555725283920765,0.0112810721620917,
  736. -0.99840521812439,0.0553367100656033,0.0111721279099584,-0.00976316537708044,0.403343915939331,-0.914996385574341,-0.00658706948161125,0.403359144926071,-0.915018022060394,-0.00976316537708044,0.403343915939331,-0.914996385574341,-0.00636343285441399,0.406597763299942,-0.913585186004639,-0.00954354461282492,0.406933575868607,-0.913407921791077,-0.00636343285441399,0.406597763299942,-0.913585186004639,-0.00636343285441399,0.406597763299942,-0.913585186004639,0.000779140740633011,0.405828297138214,-0.913949072360992,-0.00636343285441399,0.406597763299942,-0.913585186004639,0.000278109713690355,0.398177832365036,-0.917308330535889,-0.00694484449923038,0.398164957761765,-0.917287528514862,0.000278109713690355,0.398177832365036,-0.917308330535889,0.00152727751992643,0.409077316522598,-0.912498414516449,0.00130836106836796,0.402454912662506,-0.915438950061798,0.00130836106836796,0.402454912662506,-0.915438950061798,-0.000899778679013252,0.402486979961395,-0.9154252409935,-0.000907815876416862,0.409042686223984,-0.912514805793762,-0.000907815876416862,0.409042686223984,-0.912514805793762,9.76976007223129e-005,0.418564319610596,-0.908187210559845,0.000107940752059221,0.409057468175888,-0.91250866651535,0.000107940752059221,0.409057468175888,-0.91250866651535,0.00219530239701271,0.409086436033249,-0.912492990493774,0.000679319724440575,0.418605953454971,-0.908167719841003,0.000679319724440575,0.418605953454971,-0.908167719841003,-0.00763260945677757,0.421926975250244,-0.90659773349762,-0.0066441148519516,0.421901285648346,-0.906617403030396,-0.00763260945677757,0.421926975250244,-0.90659773349762,-0.00633670948445797,0.402381062507629,-0.91545045375824,-0.00807975046336651,0.402375102043152,-0.915439248085022,-0.00633670948445797,0.402381062507629,-0.91545045375824,-0.00633670948445797,0.402381062507629,-0.91545045375824,0.000317625672323629,0.402392327785492,-0.915467262268066,-0.00633670948445797,0.402381062507629,-0.91545045375824,0.000412002147641033,0.401277869939804,-0.915956258773804,-0.00630515115335584,0.400377094745636,-0.91632878780365,
  737. 0.000412002147641033,0.401277869939804,-0.915956258773804,-0.0187663435935974,0.384934037923813,-0.922753274440765,0.00121108256280422,0.384631097316742,-0.923069655895233,-0.0187663435935974,0.384934037923813,-0.922753274440765,0.000869549694471061,0.402494579553604,-0.915421962738037,-0.0184519607573748,0.402415037155151,-0.91527134180069,0.000869549694471061,0.402494579553604,-0.915421962738037,0.000869549694471061,0.402494579553604,-0.915421962738037,0.0354556851089001,0.402261704206467,-0.914838016033173,0.000869549694471061,0.402494579553604,-0.915421962738037,0.0350321829319,0.407374799251556,-0.912588894367218,0.000858378014527261,0.403076022863388,-0.915166079998016,0.0350321829319,0.407374799251556,-0.912588894367218,0.00901033822447062,0.400960177183151,-0.916051208972931,0.00315389246679842,0.400544315576553,-0.916271984577179,0.00901033822447062,0.400960177183151,-0.916051208972931,0.00385383609682322,0.489437192678452,-0.872030079364777,0.00518357520923018,0.489438444375992,-0.872022569179535,-0.00301281386055052,0.489417225122452,-0.872044563293457,-0.00302510266192257,0.488417029380798,-0.87260514497757,-0.00661343056708574,0.488405168056488,-0.872592031955719,0.00384584441781044,0.488422244787216,-0.872598946094513,-0.00578778609633446,0.496866434812546,-0.867807745933533,-0.0029260206501931,0.496453732252121,-0.868058383464813,-0.00578778609633446,0.496866434812546,-0.867807745933533,-0.999688446521759,-0.0182125177234411,-0.0170684102922678,-0.999691605567932,-0.0180915370583534,-0.0170101504772902,-0.999691605567932,-0.0180915370583534,-0.0170101504772902,-0.999716818332672,-0.0224958416074514,-0.00777601078152657,-0.999719440937042,-0.0223907865583897,-0.0077274483628571,-0.999718248844147,-0.0224403142929077,-0.00775034306570888,-0.999721169471741,-0.0219661872833967,-0.00867472495883703,-0.99971866607666,-0.0220620036125183,-0.00871745962649584,-0.999721169471741,-0.0219661872833967,-0.00867472495883703,-0.999381422996521,-0.0221840869635344,-0.0272897258400917,-0.99961245059967,0.0275790747255087,-0.00377991097047925,
  738. -0.999381422996521,-0.0221840869635344,-0.0272897258400917,-0.999608516693115,0.0276884213089943,-0.00401945365592837,-0.99938827753067,-0.0223723743110895,-0.0268816947937012,-0.999608516693115,0.0276884213089943,-0.00401945365592837,-0.999481916427612,0.0305192079395056,-0.0102223055437207,-0.996065497398376,0.0870795920491219,0.0164517145603895,-0.999481916427612,0.0305192079395056,-0.0102223055437207,-0.996052145957947,0.0873414427042007,0.015864746645093,-0.999523401260376,0.0297003891319036,-0.00842782109975815,-0.996052145957947,0.0873414427042007,0.015864746645093,-0.00275922752916813,0.419405549764633,-0.907794773578644,-0.00275922752916813,0.419405549764633,-0.907794773578644,-0.00275922752916813,0.419405549764633,-0.907794773578644,-0.0025059983599931,0.410099685192108,-0.912037372589111,-0.0025059983599931,0.410099685192108,-0.912037372589111,-0.0025059983599931,0.410099685192108,-0.912037372589111,-0.0025059983599931,0.410099685192108,-0.912037372589111,-0.0025059983599931,0.410099685192108,-0.912037372589111,-0.0025059983599931,0.410099685192108,-0.912037372589111,-0.00345319323241711,0.444736748933792,-0.895654678344727,-0.00345319323241711,0.444736748933792,-0.895654678344727,-0.00345319323241711,0.444736748933792,-0.895654678344727,-0.00912835448980331,0.415557146072388,-0.909521281719208,-0.00912239030003548,0.41853991150856,-0.90815258026123,-0.00912835448980331,0.415557146072388,-0.909521281719208,-0.229619920253754,0.407373636960983,-0.883923828601837,-0.229655861854553,0.404466956853867,-0.885248422622681,-0.229533582925797,0.413690567016602,-0.881007671356201,0.156796529889107,0.413380205631256,-0.896956980228424,0.15672504901886,0.419786274433136,-0.893989264965057,0.15672504901886,0.419786274433136,-0.893989264965057,0.0110689243301749,0.418531686067581,-0.908134698867798,0.0110697830095887,0.415549010038376,-0.90950345993042,0.0110697830095887,0.415549010038376,-0.90950345993042,-0.236074984073639,0.403828173875809,-0.883850336074829,-0.236036524176598,0.406730622053146,-0.882528722286224,
  739. -0.235944405198097,0.413038462400436,-0.879618942737579,0.155653208494186,0.419858306646347,-0.894142627716064,0.155744925141335,0.413449794054031,-0.897108018398285,0.155653208494186,0.419858306646347,-0.894142627716064,-0.00723627349361777,0.39417552947998,-0.919006705284119,0,0.394248962402344,-0.919003665447235,-0.00723627349361777,0.39417552947998,-0.919006705284119,0,0.406611233949661,-0.913601279258728,-0.00719353370368481,0.406598061323166,-0.913578808307648,0,0.406611233949661,-0.913601279258728,0,0.406611233949661,-0.913601279258728,0.0071935155428946,0.406603366136551,-0.913576483726501,0,0.406611233949661,-0.913601279258728,0.00722064822912216,0.39877063035965,-0.917022287845612,0,0.398777276277542,-0.917047798633575,0.00722064822912216,0.39877063035965,-0.917022287845612,0.999502182006836,-0.0289642438292503,-0.0125128766521811,0.999969244003296,-0.00721231894567609,-0.00308189075440168,0.999502182006836,-0.0289642438292503,-0.0125128766521811,0.999500870704651,-0.0282445233315229,-0.0141497887670994,0.999968469142914,-0.00659747235476971,-0.00442757783457637,0.999967992305756,-0.00664499960839748,-0.00444892467930913,0.999967634677887,-0.00788902211934328,-0.00160077365580946,0.999225199222565,0.0347246639430523,0.0185270458459854,0.999967217445374,-0.00794535502791405,-0.00162738445214927,0.999968528747559,-0.00753009179607034,-0.00252845208160579,0.99922502040863,0.0346465073525906,0.0186861380934715,0.99922502040863,0.0346465073525906,0.0186861380934715,-0.999493181705475,0.0271764248609543,0.0165785811841488,-0.999959707260132,0.00537782907485962,0.00719828903675079,-0.999493181705475,0.0271764248609543,0.0165785811841488,-0.999967217445374,0.00794143229722977,0.00163589720614254,-0.99950098991394,0.029518861323595,0.0112512996420264,-0.999967217445374,0.00794143229722977,0.00163589720614254,-0.999968647956848,0.00741273816674948,0.00278308894485235,-0.999226093292236,-0.0351709388196468,-0.0176186412572861,-0.999968647956848,0.00741273816674948,0.00278308894485235,-0.999225974082947,-0.0350528247654438,-0.0178590659052134,
  740. -0.999968767166138,0.00701799103990197,0.00363961863331497,-0.999225974082947,-0.0350528247654438,-0.0178590659052134,-0.0195587482303381,0.396043926477432,-0.918023288249969,-0.00411928631365299,0.395365357398987,-0.918514728546143,-0.0195587482303381,0.396043926477432,-0.918023288249969,-0.00403860025107861,0.402506113052368,-0.915408432483673,-0.019320622086525,0.402425438165665,-0.915248870849609,-0.00403860025107861,0.402506113052368,-0.915408432483673,-0.00403860025107861,0.402506113052368,-0.915408432483673,0.0337197445333004,0.402302324771881,-0.914885699748993,-0.00403860025107861,0.402506113052368,-0.915408432483673,0.0298552624881268,0.484590411186218,-0.874231517314911,-0.00309458118863404,0.482744157314301,-0.875755965709686,0.0298552624881268,0.484590411186218,-0.874231517314911,0.99949836730957,-0.0300040803849697,-0.0101393349468708,0.999223649501801,-0.0369827337563038,-0.0135792465880513,0.99949836730957,-0.0300040803849697,-0.0101393349468708,0.99949985742569,-0.0298172011971474,-0.0105374297127128,0.999224066734314,-0.0369252115488052,-0.0137076042592525,0.999224066734314,-0.0369252115488052,-0.0137076042592525,0.998922348022461,-0.0459593906998634,0.0064745731651783,0.998169720172882,-0.060474056750536,0.000556044338736683,0.998922348022461,-0.0459593906998634,0.0064745731651783,0.99869167804718,-0.0492371246218681,0.0138086173683405,0.997962474822998,-0.0633809790015221,0.00732912216335535,0.997962474822998,-0.0633809790015221,0.00732912216335535,-0.017580384388566,0.492960810661316,-0.869873881340027,-0.00205427594482899,0.493038892745972,-0.870004892349243,-0.017580384388566,0.492960810661316,-0.869873881340027,-0.00478444993495941,0.406538963317871,-0.913620948791504,-0.0175862815231085,0.406450420618057,-0.913503587245941,-0.00478444993495941,0.406538963317871,-0.913620948791504,-0.00478444993495941,0.406538963317871,-0.913620948791504,0.0112230991944671,0.406555980443954,-0.913557052612305,-0.00478444993495941,0.406538963317871,-0.913620948791504,0.0115954075008631,0.411869376897812,-0.911169171333313,
  741. -0.00456170132383704,0.413794070482254,-0.910359084606171,0.0115954075008631,0.411869376897812,-0.911169171333313,-0.998808681964874,0.0480098016560078,0.00873564928770065,-0.998422384262085,0.0548341944813728,0.0120805818587542,-0.998808681964874,0.0480098016560078,0.00873564928770065,-0.998428046703339,0.0546292588114738,0.0125385131686926,-0.998818099498749,0.0476789996027946,0.00944117363542318,-0.998428046703339,0.0546292588114738,0.0125385131686926,-0.998188138008118,0.0601713582873344,0.000143073499202728,-0.99771648645401,0.0674713253974915,0.00310116447508335,-0.998188138008118,0.0601713582873344,0.000143073499202728,-0.997297704219818,0.0728553086519241,-0.00945667643100023,-0.997746646404266,0.0658874064683914,-0.0126675441861153,-0.997297704219818,0.0728553086519241,-0.00945667643100023,-0.999875009059906,-0.0140762804076076,-0.00720051350072026,-0.999999701976776,0.000310537579935044,-0.000741487659979612,-0.999719500541687,-0.0212663616985083,-0.0104284510016441,-0.999584197998047,-0.0238648671656847,0.0161841064691544,-0.999799370765686,-0.0077380589209497,0.018476590514183,-0.999799370765686,-0.0077380589209497,0.018476590514183,-1,0.000170445928233676,-0.000406983133871108,-1,0.000170445928233676,-0.000406983133871108,-0.999875247478485,-0.0141486171633005,-0.00702779786661267,-0.999990165233612,-0.0017175228567794,0.00410102400928736,-0.999990165233612,-0.0017175228567794,0.00410102400928736,-0.999990165233612,-0.0017175228567794,0.00410102400928736,-0.999991714954376,-0.00157601782120764,0.00376314437016845,-0.999713361263275,0.0203420966863632,0.012634995393455,-0.999991714954376,-0.00157601782120764,0.00376314437016845,-0.999720454216003,0.0218157190829515,0.00911678466945887,-1,-0,0,-0.999720454216003,0.0218157190829515,0.00911678466945887,0.999998867511749,-0.000583067012485117,0.00139222131110728,0.999998867511749,-0.00060319883050397,0.00138380902353674,0.999998867511749,-0.000583067012485117,0.00139222131110728,0.999987840652466,0.0019048658432439,-0.00454835314303637,0.999987840652466,0.00197063107043505,-0.00452085910364985,
  742. 0.999987840652466,0.00197063107043505,-0.00452085910364985,0.999998390674591,-0.000716399750672281,0.0016435052966699,0.999998390674591,-0.00074497505556792,0.00163051136769354,0.999998390674591,-0.000716399750672281,0.0016435052966699,0.999971628189087,0.00313412840478122,-0.0068596014752984,0.999971568584442,0.0030138895381242,-0.00691421702504158,0.999971628189087,0.00313412840478122,-0.0068596014752984,0.0110517553985119,0.386270552873611,-0.922319412231445,0.0110529279336333,0.399560987949371,-0.916639924049377,0.0110517553985119,0.386270552873611,-0.922319412231445,-0.00651908479630947,0.399576902389526,-0.916676461696625,-0.00649945763871074,0.386285960674286,-0.922356188297272,-0.00651908479630947,0.399576902389526,-0.916676461696625,-0.00654103793203831,0.415565580129623,-0.909539699554443,-0.00651908479630947,0.399576902389526,-0.916676461696625,-0.00651908479630947,0.399576902389526,-0.916676461696625,0.00551145570352674,0.399579346179962,-0.916682004928589,0.00548140564933419,0.415568232536316,-0.909545540809631,0.00548140564933419,0.415568232536316,-0.909545540809631,0,0.415106028318405,-0.909773051738739,-0.00716332159936428,0.415112644433975,-0.909741818904877,0,0.415106028318405,-0.909773051738739,-0.00719352159649134,0.406601577997208,-0.913577258586884,0,0.40661358833313,-0.913600265979767,-0.00719352159649134,0.406601577997208,-0.913577258586884,-0.00719352159649134,0.406601577997208,-0.913577258586884,-0.0175863653421402,0.406547129154205,-0.913460612297058,-0.00719352159649134,0.406601577997208,-0.913577258586884,-0.0175857003778219,0.405787229537964,-0.913798332214355,-0.00719640776515007,0.40577694773674,-0.913943827152252,-0.0175857003778219,0.405787229537964,-0.913798332214355,-0.00721523771062493,0.400347143411636,-0.916335165500641,0,0.400410532951355,-0.916335880756378,-0.00721523771062493,0.400347143411636,-0.916335165500641,0,0.406620353460312,-0.913597226142883,-0.00719350203871727,0.406607180833817,-0.913574755191803,0,0.406620353460312,-0.913597226142883,0,0.406620353460312,-0.913597226142883,
  743. 0.00719348387792706,0.406612515449524,-0.913572430610657,0,0.406620353460312,-0.913597226142883,0.00720885489135981,0.402197360992432,-0.91552460193634,0,0.402195960283279,-0.915553629398346,0.00720885489135981,0.402197360992432,-0.91552460193634,-0.00428518699482083,0.422750979661942,-0.906235754489899,-0.00380725343711674,0.42272761464119,-0.906248807907104,-0.00428518699482083,0.422750979661942,-0.906235754489899,-0.00403983052819967,0.402397632598877,-0.915456116199493,-0.00491116568446159,0.402395784854889,-0.915452659130096,-0.00403983052819967,0.402397632598877,-0.915456116199493,-0.00403983052819967,0.402397632598877,-0.915456116199493,0.00174262374639511,0.402402371168137,-0.915461301803589,-0.00403983052819967,0.402397632598877,-0.915456116199493,0.00174642167985439,0.402303487062454,-0.91550475358963,-0.00404451880604029,0.401983976364136,-0.915637791156769,0.00174642167985439,0.402303487062454,-0.91550475358963,0.999989569187164,-0.00191214017104357,0.00414898339658976,0.999210774898529,0.0339106433093548,0.0206854734569788,0.999989569187164,-0.00191214017104357,0.00414898339658976,0.999986290931702,-0.00219182833097875,0.00475585367530584,0.999207317829132,0.033618588000536,0.0213188491761684,0.999207317829132,0.033618588000536,0.0213188491761684,0.999217927455902,0.0347465835511684,0.0188723132014275,0.996890604496002,0.0701038166880608,0.0359805077314377,0.999217927455902,0.0347465835511684,0.0188723132014275,0.996891975402832,0.0702886059880257,0.0355798080563545,0.999215483665466,0.0344035290181637,0.0196164436638355,0.996891975402832,0.0702886059880257,0.0355798080563545,-0.999999344348907,-0.000479511392768472,0.00104044924955815,-0.999220669269562,-0.0363076291978359,-0.0154853984713554,-0.999999344348907,-0.000479511392768472,0.00104044924955815,-0.999221205711365,-0.0360120423138142,-0.0161268059164286,-1,-0.000190440390724689,0.00041321970638819,-0.999221205711365,-0.0360120423138142,-0.0161268059164286,-0.99921852350235,-0.0368236750364304,-0.0143654746934772,-0.996894836425781,-0.072180487215519,-0.0314753092825413,
  744. -0.99921852350235,-0.0368236750364304,-0.0143654746934772,-0.999220371246338,-0.0364331491291523,-0.0152130108326674,-0.996894299983978,-0.0723065659403801,-0.031201658770442,-0.996894299983978,-0.0723065659403801,-0.031201658770442,-0.012929642572999,0.378255873918533,-0.925610780715942,-0.0102669186890125,0.378253549337387,-0.925645172595978,-0.0102669186890125,0.378253549337387,-0.925645172595978,-0.0103941885754466,0.40644633769989,-0.913615643978119,-0.0119801983237267,0.406438052654266,-0.913599789142609,-0.0119801983237267,0.406438052654266,-0.913599789142609,-0.0119801983237267,0.406438052654266,-0.913599789142609,-0.00317217176780105,0.406470865011215,-0.913658261299133,-0.0119801983237267,0.406438052654266,-0.913599789142609,-0.00233405083417892,0.417324274778366,-0.908754646778107,-0.0115665979683399,0.418493509292603,-0.908146142959595,-0.00233405083417892,0.417324274778366,-0.908754646778107,0.00755062699317932,0.425026684999466,-0.905149340629578,0.00757647398859262,0.418327957391739,-0.908264517784119,0.00755062699317932,0.425026684999466,-0.905149340629578,0.00347437523305416,0.42503622174263,-0.905169725418091,0.00348288845270872,0.418454885482788,-0.90823096036911,0.00348288845270872,0.418454885482788,-0.90823096036911,0.00348288845270872,0.418454885482788,-0.90823096036911,0.00349130481481552,0.411781877279282,-0.911275804042816,0.00348288845270872,0.418454885482788,-0.90823096036911,0.00143624655902386,0.411917507648468,-0.911220014095306,0.00245052017271519,0.418485760688782,-0.908220052719116,0.00143624655902386,0.411917507648468,-0.911220014095306,-0.00121108442544937,0.402272701263428,-0.915519177913666,-0.00435351952910423,0.402430444955826,-0.915440261363983,-0.00121108442544937,0.402272701263428,-0.915519177913666,0.00454430654644966,0.492782890796661,-0.870140433311462,0.0084383636713028,0.492289692163467,-0.87039053440094,0.00454430654644966,0.492782890796661,-0.870140433311462,0.00457688048481941,0.493105232715607,-0.869957685470581,-0.00310671329498291,0.494067221879959,-0.869418144226074,
  745. 0.00457688048481941,0.493105232715607,-0.869957685470581,-0.0177061222493649,0.312508910894394,-0.949749767780304,-0.0127857103943825,0.312532067298889,-0.949821174144745,-0.0177061222493649,0.312508910894394,-0.949749767780304,-0.997459173202515,-0.0618344396352768,-0.0353791750967503,-0.998455226421356,-0.0474569164216518,-0.0288989003747702,-0.997459173202515,-0.0618344396352768,-0.0353791750967503,-0.997469067573547,-0.0672825872898102,-0.0229890495538712,-0.99845153093338,-0.0530279986560345,-0.0168102029711008,-0.99845153093338,-0.0530279986560345,-0.0168102029711008,-0.998450040817261,-0.0531211458146572,-0.0166079066693783,-0.998857617378235,-0.0459445863962173,-0.0131392227485776,-0.998450040817261,-0.0531211458146572,-0.0166079066693783,-0.998856782913208,-0.0459881983697414,-0.0130462534725666,-0.998447954654694,-0.0532413385808468,-0.0163468327373266,-0.998856782913208,-0.0459881983697414,-0.0130462534725666,-0.00413075415417552,0.407948970794678,-0.912995398044586,-0.000925064086914063,0.408051252365112,-0.912958562374115,-0.00413075415417552,0.407948970794678,-0.912995398044586,-0.000823203474283218,0.406499773263931,-0.913650572299957,-0.00400395458564162,0.406224489212036,-0.913764476776123,-0.000823203474283218,0.406499773263931,-0.913650572299957,-0.000823203474283218,0.406499773263931,-0.913650572299957,0.00555107928812504,0.407038927078247,-0.913393974304199,-0.000823203474283218,0.406499773263931,-0.913650572299957,0.00556944496929646,0.406670749187469,-0.913557887077332,-0.000834038481116295,0.406664848327637,-0.913577079772949,0.00556944496929646,0.406670749187469,-0.913557887077332,-0.00907745491713285,0.414522916078568,-0.909993588924408,-0.0058134850114584,0.414535194635391,-0.910014748573303,-0.00907745491713285,0.414522916078568,-0.909993588924408,-0.00636276602745056,0.406607419252396,-0.913580894470215,-0.00954291876405478,0.406943798065186,-0.913403391838074,-0.00636276602745056,0.406607419252396,-0.913580894470215,-0.00636276602745056,0.406607419252396,-0.913580894470215,0.000779697671532631,0.405836790800095,-0.913945317268372,
  746. -0.00636276602745056,0.406607419252396,-0.913580894470215,0.000615308003034443,0.40332967042923,-0.915054500102997,-0.00658962223678827,0.403322160243988,-0.915034353733063,0.000615308003034443,0.40332967042923,-0.915054500102997,0.000896638142876327,0.409042865037918,-0.912514686584473,0.000897586694918573,0.409068614244461,-0.912503182888031,0.000896638142876327,0.409042865037918,-0.912514686584473,0.0012083793990314,0.40907296538353,-0.91250091791153,0.00120842177420855,0.409038245677948,-0.912516474723816,0.0012083793990314,0.40907296538353,-0.91250091791153,0.00315239001065493,0.409099131822586,-0.912484526634216,0.00314812548458576,0.412236511707306,-0.911071419715881,0.00315239001065493,0.409099131822586,-0.912484526634216,0.00270587811246514,0.409093260765076,-0.912488579750061,0.00221865996718407,0.41217041015625,-0.911104142665863,0.00221865996718407,0.41217041015625,-0.911104142665863,0.00266530551016331,0.378230363130569,-0.925707697868347,-0.00462422519922256,0.378242880105972,-0.925694942474365,0.00266530551016331,0.378230363130569,-0.925707697868347,-0.00566143309697509,0.407992422580719,-0.91296774148941,0.00151140615344048,0.408411264419556,-0.912796795368195,-0.00566143309697509,0.407992422580719,-0.91296774148941,-0.00566143309697509,0.407992422580719,-0.91296774148941,-0.00566143309697509,0.407992422580719,-0.91296774148941,-0.00566143309697509,0.407992422580719,-0.91296774148941,-0.00746898166835308,0.459213763475418,-0.888294398784637,-0.00746898166835308,0.459213763475418,-0.888294398784637,-0.00746898166835308,0.459213763475418,-0.888294398784637,-0.00202402751892805,0.402414858341217,-0.915455281734467,-0.00207511894404888,0.418496876955032,-0.908215880393982,-0.00202402751892805,0.402414858341217,-0.915455281734467,-0.0146016087383032,0.418093740940094,-0.908286571502686,-0.0136105353012681,0.402043551206589,-0.91551947593689,-0.0146016087383032,0.418093740940094,-0.908286571502686,-0.0184868182986975,0.440305858850479,-0.897657454013824,-0.0170892924070358,0.418005853891373,-0.908283591270447,
  747. -0.0170892924070358,0.418005853891373,-0.908283591270447,-0.0124195702373981,0.418168693780899,-0.908284485340118,-0.0124553740024567,0.440517574548721,-0.897657573223114,-0.0124553740024567,0.440517574548721,-0.897657573223114,-0.999426305294037,-0.0239231418818235,-0.0239729564636946,-0.999432325363159,-0.023749727755785,-0.0238964259624481,-0.999426305294037,-0.0239231418818235,-0.0239729564636946,-0.999501883983612,-0.0291806310415268,-0.0120206726714969,-0.999500691890717,-0.0292178895324469,-0.0120367053896189,-0.999500691890717,-0.0292178895324469,-0.0120367053896189,-0.999474883079529,-0.0317263342440128,-0.00659191003069282,-0.99947190284729,-0.0318105556070805,-0.00663364818319678,-0.999474883079529,-0.0317263342440128,-0.00659191003069282,-0.999463677406311,-0.0322380214929581,-0.00576286483556032,-0.999467313289642,-0.0321317426860332,-0.00571167701855302,-0.999463677406311,-0.0322380214929581,-0.00576286483556032,0.999902367591858,-0.0119983851909637,0.00716815050691366,0.998816728591919,0.0376647785305977,0.0307676084339619,0.998816728591919,0.0376647785305977,0.0307676084339619,0.998823404312134,0.0379127338528633,0.030240286141634,0.999899446964264,-0.0121025294065475,0.00739417690783739,0.999899446964264,-0.0121025294065475,0.00739417690783739,0.999778509140015,-0.0153361167758703,0.0144127327948809,0.996707558631897,-0.0799945369362831,-0.0132251810282469,0.999778509140015,-0.0153361167758703,0.0144127327948809,0.996704280376434,-0.080059140920639,-0.0130804348737001,0.999727487564087,-0.0163661111146212,0.0166485905647278,0.996704280376434,-0.080059140920639,-0.0130804348737001,-0.0150478323921561,0.382214963436127,-0.923950910568237,-0.00476386211812496,0.382262974977493,-0.924041390419006,-0.0150478323921561,0.382214963436127,-0.923950910568237,-0.0160398408770561,0.407411992549896,-0.913103640079498,-0.0056643602438271,0.408076018095016,-0.912930369377136,-0.0056643602438271,0.408076018095016,-0.912930369377136,-0.0056643602438271,0.408076018095016,-0.912930369377136,0.0118893003091216,0.409098923206329,-0.912412583827972,
  748. -0.0056643602438271,0.408076018095016,-0.912930369377136,0.0120107680559158,0.405541837215424,-0.913997650146484,-0.00557677820324898,0.405574023723602,-0.91404527425766,0.0120107680559158,0.405541837215424,-0.913997650146484,0.00845573749393225,0.414155513048172,-0.91016685962677,-0.000655862444546074,0.413585275411606,-0.910465121269226,0.00845573749393225,0.414155513048172,-0.91016685962677,-0.000867403112351894,0.402606338262558,-0.915372908115387,0.00894124992191792,0.402610957622528,-0.915327548980713,-0.000867403112351894,0.402606338262558,-0.915372908115387,-0.000867403112351894,0.402606338262558,-0.915372908115387,-0.0147158857434988,0.402533739805222,-0.915286839008331,-0.000867403112351894,0.402606338262558,-0.915372908115387,-0.0221756435930729,0.318788111209869,-0.947566568851471,-0.00249857339076698,0.315758764743805,-0.948836266994476,-0.0221756435930729,0.318788111209869,-0.947566568851471,-0.00419606221839786,0.425626277923584,-0.904889345169067,-0.00377399730496109,0.42560401558876,-0.904901683330536,-0.00419606221839786,0.425626277923584,-0.904889345169067,-0.00403983239084482,0.40239742398262,-0.915456175804138,-0.00491117313504219,0.40239554643631,-0.915452778339386,-0.00403983239084482,0.40239742398262,-0.915456175804138,-0.00403983239084482,0.40239742398262,-0.915456175804138,0.00174262002110481,0.402402460575104,-0.915461242198944,-0.00403983239084482,0.40239742398262,-0.915456175804138,0.00174823985435069,0.402256190776825,-0.915525555610657,-0.00404538214206696,0.401907742023468,-0.915671229362488,0.00174823985435069,0.402256190776825,-0.915525555610657,-0.00568660534918308,0.376788347959518,-0.926281929016113,-0.0102601414546371,0.376800149679184,-0.926237761974335,-0.0102601414546371,0.376800149679184,-0.926237761974335,-0.0103941513225436,0.406437784433365,-0.913619339466095,-0.00478691421449184,0.406458497047424,-0.913656711578369,-0.00478691421449184,0.406458497047424,-0.913656711578369,-0.00478691421449184,0.406458497047424,-0.913656711578369,0.00402164412662387,0.406465172767639,-0.913657486438751,
  749. -0.00478691421449184,0.406458497047424,-0.913656711578369,0.00650329329073429,0.43998321890831,-0.897982537746429,-0.00371433515101671,0.441069900989532,-0.897465109825134,0.00650329329073429,0.43998321890831,-0.897982537746429,-0.0036421362310648,0.425035983324051,-0.905169188976288,-0.00361270597204566,0.418658226728439,-0.90813672542572,-0.0036421362310648,0.425035983324051,-0.905169188976288,-0.0089909303933382,0.418798387050629,-0.908034861087799,-0.00899993907660246,0.425021588802338,-0.905138492584229,-0.0089909303933382,0.418798387050629,-0.908034861087799,-0.0103243319317698,0.419201374053955,-0.907834708690643,-0.0103237396106124,0.418831169605255,-0.908005475997925,-0.0103237396106124,0.418831169605255,-0.908005475997925,-0.00693333894014359,0.418746173381805,-0.908076882362366,-0.0068909740075469,0.418992102146149,-0.907963693141937,-0.0068909740075469,0.418992102146149,-0.907963693141937,-0.999999105930328,-0.000583733548410237,0.00124313624110073,-0.999500215053558,0.0280207581818104,0.0146342208608985,-0.999999105930328,-0.000583733548410237,0.00124313624110073,-0.999996900558472,-0.00105972541496158,0.00225682253949344,-0.999497830867767,0.0275474451482296,0.0156610384583473,-0.999497830867767,0.0275474451482296,0.0156610384583473,-0.999419331550598,0.0340370088815689,0.00157398614101112,-0.997408032417297,0.0695362538099289,0.0184906274080276,-0.999419331550598,0.0340370088815689,0.00157398614101112,-0.997423529624939,0.0689825192093849,0.0196947604417801,-0.99944794178009,0.0330070108175278,0.00381104787811637,-0.997423529624939,0.0689825192093849,0.0196947604417801,0.00576563365757465,0.410966902971268,-0.911632120609283,-0.00538954883813858,0.410273462533951,-0.911946654319763,0.00576563365757465,0.410966902971268,-0.911632120609283,-0.00554646551609039,0.407131433486938,-0.913352787494659,0.00558456033468246,0.405796378850937,-0.913946390151978,-0.00554646551609039,0.407131433486938,-0.913352787494659,-0.00554646551609039,0.407131433486938,-0.913352787494659,-0.0134485829621553,0.408048093318939,-0.912861347198486,
  750. -0.00554646551609039,0.407131433486938,-0.913352787494659,-0.0200430639088154,0.314299017190933,-0.949112474918365,-0.0100465370342135,0.314366936683655,-0.949248373508453,-0.0200430639088154,0.314299017190933,-0.949112474918365,0.00125523086171597,0.425831705331802,-0.904801547527313,0.000420475320424885,0.425725847482681,-0.904852092266083,0.00125523086171597,0.425831705331802,-0.904801547527313,0.000793292536400259,0.406460016965866,-0.913668215274811,0.0023838859051466,0.406389534473419,-0.913696885108948,0.000793292536400259,0.406460016965866,-0.913668215274811,0.000793292536400259,0.406460016965866,-0.913668215274811,0.00240526301786304,0.40638855099678,-0.913697183132172,0.000793292536400259,0.406460016965866,-0.913668215274811,0.00236265966668725,0.404817432165146,-0.914394557476044,0.000825111637823284,0.404806405305862,-0.914402008056641,0.00236265966668725,0.404817432165146,-0.914394557476044,0.999969005584717,0.0030396634247154,-0.00727372244000435,1,0,-0,0.999969005584717,0.0030396634247154,-0.00727372244000435,0.999825000762939,0.0172545649111271,0.0072262710891664,0.999796330928802,0.0201848279684782,-9.17925644898787e-005,0.999825000762939,0.0172545649111271,0.0072262710891664,0.999810695648193,0.0179499704390764,0.00751750916242599,0.999810695648193,0.0179499704390764,0.00751750916242599,0.999810695648193,0.0179499704390764,0.00751750916242599,0.999999165534973,0.00120778940618038,0.000505826319567859,0.999999165534973,0.00120778940618038,0.000505826319567859,0.999999165534973,0.00120778940618038,0.000505826319567859,0.999969005584717,0.00303968647494912,-0.00727371266111732,1,0,0,0.999969005584717,0.00303968647494912,-0.00727371266111732,0.999626398086548,0.025211101397872,0.0105584962293506,0.999600350856781,0.0280852876603603,0.00321862334385514,0.999626398086548,0.025211101397872,0.0105584962293506,0.999626398086548,0.025211101397872,0.0105584962293506,0.999626398086548,0.025211101397872,0.0105584962293506,0.999626398086548,0.025211101397872,0.0105584962293506,0.999942421913147,-0.00989796128123999,-0.00414530001580715,
  751. 0.999942421913147,-0.00989796128123999,-0.00414530001580715,0.999942421913147,-0.00989796128123999,-0.00414530001580715,0.999720454216003,0.0218157283961773,0.00911676231771708,1,-0,0,0.999720454216003,0.0218157283961773,0.00911676231771708,0.999997615814209,0.000856472761370242,-0.00204504723660648,0.999718606472015,0.0225706715136766,0.00731402495875955,0.999997615814209,0.000856472761370242,-0.00204504723660648,0.999966144561768,-0.00635432964190841,-0.00523488782346249,0.999997615814209,0.000855843536555767,-0.00204354478046298,0.999997615814209,0.000855843536555767,-0.00204354478046298,0.999998033046722,-0.000773453910369426,0.00184681848622859,0.99996691942215,-0.00806068256497383,-0.00116055272519588,0.99996691942215,-0.00806068256497383,-0.00116055272519588,0.999720454216003,0.0218157507479191,0.0091167064383626,1,0,0,0.999720454216003,0.0218157507479191,0.0091167064383626,0.999999105930328,-0.000520650006365031,0.00124318466987461,0.999719142913818,0.0211705472320318,0.0106572117656469,0.999999105930328,-0.000520650006365031,0.00124318466987461,1,-0.000124785103253089,0.000297956255963072,0.999968886375427,-0.0073355445638299,-0.0028920448385179,1,-0.000124785103253089,0.000297956255963072,0.999967157840729,-0.00652457540854812,-0.00482840370386839,0.999998033046722,0.000773097213823348,-0.0018459667917341,0.999967157840729,-0.00652457540854812,-0.00482840370386839,-1,0,-0,-0.999969005584717,-0.00303968763910234,0.00727371219545603,-0.999969005584717,-0.00303968763910234,0.00727371219545603,-0.999538540840149,-0.0301044248044491,-0.00406477181240916,-0.999569416046143,-0.0270663592964411,-0.0113354837521911,-0.999569416046143,-0.0270663592964411,-0.0113354837521911,-0.999569416046143,-0.0270663592964411,-0.0113354837521911,-0.999569416046143,-0.0270663592964411,-0.0113354837521911,-0.999569416046143,-0.0270663592964411,-0.0113354837521911,-1,0,-0,-1,0,-0,-1,0,-0,-0.999969005584717,-0.00303970347158611,0.00727370567619801,-1,0,-0,-1,0,-0,-1,0,-0,-0.999969005584717,-0.00303964829072356,0.00727372895926237,-0.999969005584717,-0.00303964829072356,0.00727372895926237,
  752. -0.999969005584717,-0.00303964829072356,0.00727372895926237,-1,0,-0,-0.999969005584717,-0.00303964829072356,0.00727372895926237,-0.999997973442078,-0.00187418458517641,-0.000784914940595627,-0.999966859817505,-0.00493487762287259,0.0064799808897078,-0.999997973442078,-0.00187418458517641,-0.000784914940595627,-0.999969005584717,-0.00303968763910234,0.00727371219545603,-1,0,0,-0.999969005584717,-0.00303968763910234,0.00727371219545603,-0.998097002506256,-0.0568774715065956,-0.0238204803317785,-0.998067915439606,-0.0598874464631081,-0.0165505725890398,-0.998097002506256,-0.0568774715065956,-0.0238204803317785,-0.998055577278137,-0.0574930533766747,-0.0240782890468836,-0.998055577278137,-0.0574930533766747,-0.0240782890468836,-0.998055577278137,-0.0574930533766747,-0.0240782890468836,-0.999659597873688,-0.0240662507712841,-0.0100790290161967,-0.999659597873688,-0.0240662507712841,-0.0100790290161967,-0.999659597873688,-0.0240662507712841,-0.0100790290161967,0.999969005584717,0.0030396634247154,-0.00727372244000435,1,0,-0,0.999969005584717,0.0030396634247154,-0.00727372244000435,0.999854862689972,0.015713544562459,0.00658088596537709,0.999825954437256,0.0186439007520676,-0.000737390946596861,0.999854862689972,0.015713544562459,0.00658088596537709,0.999851942062378,0.0158755127340555,0.00664871884509921,0.999851942062378,0.0158755127340555,0.00664871884509921,0.999851942062378,0.0158755127340555,0.00664871884509921,0.999999165534973,0.00122156110592186,0.000511594000272453,0.999999165534973,0.00122156110592186,0.000511594000272453,0.999999165534973,0.00122156110592186,0.000511594000272453,0.999969005584717,0.00303960754536092,-0.00727374572306871,1,0,0,0.999969005584717,0.00303960754536092,-0.00727374572306871,0.99962329864502,0.0253186002373695,0.0106035163626075,0.999597191810608,0.0281926933676004,0.0032636309042573,0.99962329864502,0.0253186002373695,0.0106035163626075,0.99962329864502,0.0253186002373695,0.0106035163626075,0.99962329864502,0.0253186002373695,0.0106035163626075,0.99962329864502,0.0253186002373695,0.0106035163626075,
  753. 0.999942421913147,-0.00990070402622223,-0.00414644880220294,0.999942421913147,-0.00990070402622223,-0.00414644880220294,0.999942421913147,-0.00990070402622223,-0.00414644880220294,0.999720454216003,0.0218157414346933,0.00911672972142696,1,-0,0,0.999720454216003,0.0218157414346933,0.00911672972142696,0.999969899654388,0.00299783190712333,-0.00715808849781752,0.99969220161438,0.0247109513729811,0.0022019415628165,0.999969899654388,0.00299783190712333,-0.00715808849781752,0.99993771314621,-0.00421404046937823,-0.0103447958827019,0.999969959259033,0.00299602816812694,-0.00715378159657121,0.999969959259033,0.00299602816812694,-0.00715378159657121,0.999998033046722,-0.000769271806348115,0.00183683272916824,0.999966859817505,-0.00805651396512985,-0.00117050297558308,0.999966859817505,-0.00805651396512985,-0.00117050297558308,0.999720454216003,0.0218157507479191,0.0091167064383626,1,0,0,0.999720454216003,0.0218157507479191,0.0091167064383626,0.999903559684753,-0.00536465318873525,0.0128094777464867,0.999619841575623,0.0163231734186411,0.0222254749387503,0.999903559684753,-0.00536465318873525,0.0128094777464867,0.999916791915894,-0.00498263770714402,0.011897318996489,0.999887764453888,-0.012192826718092,0.00870761089026928,0.999916791915894,-0.00498263770714402,0.011897318996489,0.999967038631439,-0.00651811249554157,-0.00484383245930076,0.999997973442078,0.000779559486545622,-0.00186139706056565,0.999967038631439,-0.00651811249554157,-0.00484383245930076
  754. }
  755. BinormalsW: *1296 {
  756. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  757. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  758. }
  759. }
  760. LayerElementTangent: 0 {
  761. Version: 102
  762. Name: "UVmap_0"
  763. MappingInformationType: "ByPolygonVertex"
  764. ReferenceInformationType: "Direct"
  765. Tangents: *3888 {
  766. a: -0.000135593087179586,-0.0172203183174133,-0.999851822853088,0.000136081202072091,-0.0172823183238506,-0.999850749969482,-0.000135593087179586,-0.0172203183174133,-0.999851822853088,-0.000130779881146736,-0.0166090503334999,-0.99986207485199,0.000130207103211433,-0.0165362972766161,-0.999863266944885,0.000259792985161766,-0.0164968557655811,-0.999863982200623,0.00222068140283227,-0.0236328765749931,-0.999718248844147,0.00209634238854051,-0.0078572491183877,-0.999967038631439,0.00222068140283227,-0.0236328765749931,-0.999718248844147,0.000460074428701773,-0.0236190762370825,-0.999720931053162,0.000468158686999232,-0.00787008460611105,-0.999968945980072,0.00041015591705218,-0.00786731205880642,-0.999969065189362,0.000192462699487805,-0.0244427565485239,-0.999701321125031,-0.000193188898265362,-0.024534996598959,-0.99969893693924,0.00038412754656747,-0.0243920981884003,-0.999702513217926,-0.000210032871109433,-0.0266741719096899,-0.999644160270691,0.000210379468626343,-0.026718195527792,-0.999643087387085,-0.000210032871109433,-0.0266741719096899,-0.999644160270691,-0.00125155341811478,-0.023605590686202,-0.999720573425293,-0.00136723415926099,-0.00789529271423817,-0.999967992305756,-0.00125155341811478,-0.023605590686202,-0.999720573425293,-0.000745296478271484,-0.0236095879226923,-0.999720990657806,-0.00105415901634842,-0.0078903641551733,-0.999968409538269,-0.00105415901634842,-0.0078903641551733,-0.999968409538269,0.00221362849697471,-0.00782146584242582,-0.999966979026794,0.00270256516523659,-0.0314378179609776,-0.999502062797546,0.00202803849242628,4.79115697089583e-005,-0.999998033046722,0.00171950436197221,-0.0314533524215221,-0.9995037317276,0.00119134655687958,-0.00784562714397907,-0.999968528747559,0.00171950436197221,-0.0314533524215221,-0.9995037317276,0.971077382564545,-0.135783284902573,-0.196396619081497,0.99619048833847,-0.0590730160474777,0.0641476064920425,0.992817163467407,0.0288626253604889,-0.116107761859894,0.993772685527802,0.0379016548395157,-0.104782149195671,0.996844232082367,-0.0470916293561459,0.0639057606458664,
  767. 0.996232330799103,-0.0867187678813934,-0.00110448407940567,-0.9971804022789,-0.025252977386117,0.0706663429737091,-0.997154951095581,0.0351974926888943,-0.0666568204760551,-0.996641278266907,-0.035593930631876,-0.0737515166401863,-0.997345447540283,0.0638680905103683,-0.034970685839653,-0.997357606887817,0.0168020576238632,0.0706788897514343,-0.994638323783875,-0.0771724209189415,0.0688408836722374,0.962096631526947,-0.201695874333382,-0.183545768260956,0.995105862617493,-0.0922580733895302,0.0353945270180702,0.99101585149765,0.00452784448862076,-0.133667916059494,0.992221653461456,0.0101222200319171,-0.124072223901749,0.995797753334045,-0.0850744694471359,0.0338994450867176,0.989241063594818,-0.142597064375877,-0.032683402299881,-0.996901631355286,-0.0746717303991318,0.0247247908264399,-0.996921122074127,-0.0324044823646545,-0.0714022293686867,-0.990609109401703,-0.0867380648851395,-0.105688907206059,-0.997485280036926,-0.0270964987576008,-0.0654896944761276,-0.997418105602264,-0.0674610510468483,0.0246234387159348,-0.991112112998962,-0.132297307252884,0.0139352101832628,0.967732012271881,-0.16174989938736,-0.193214327096939,0.997192919254303,-0.0263716802000999,0.0700772479176521,0.988232910633087,0.0954168885946274,-0.119546465575695,0.988951981067657,0.102379888296127,-0.107202418148518,0.997548282146454,-0.016625827178359,0.0679780915379524,0.995263755321503,-0.0966990441083908,0.00996861513704062,-0.987500786781311,-0.157609820365906,0.00124102283734828,-0.987258434295654,-0.105405002832413,-0.119208037853241,-0.972990453243256,-0.17039643228054,-0.155739068984985,-0.989701986312866,-0.0948187187314034,-0.107235461473465,-0.989865958690643,-0.142000526189804,0.00111811491660774,-0.974458634853363,-0.224347427487373,-0.00993192940950394,0.993433237075806,-0.113777540624142,-0.0120525639504194,0.970294415950775,0.185065194964409,-0.155819147825241,0.988422989845276,-0.0589584708213806,-0.139799505472183,0.98792028427124,-0.0674253553152084,-0.139526098966599,0.997102081775665,-0.0648555085062981,0.0397666618227959,
  768. 0.993013560771942,-0.116937279701233,-0.0158029571175575,0.995331585407257,-0.0367111004889011,0.0892595797777176,0.95616203546524,0.292814135551453,0.00375057011842728,0.997681736946106,0.0266084261238575,-0.0626365840435028,0.997953593730927,0.0122126517817378,-0.0627670586109161,0.975364863872528,0.140857964754105,0.169771790504456,0.995846748352051,-0.0466839857399464,0.0781669020652771,0.998171448707581,-0.0298086181282997,0.0525874942541122,0.997079789638519,0.015464142896235,-0.0747850015759468,0.991238951683044,0.0955442264676094,0.0911966189742088,0.997427523136139,0.00728035625070333,-0.0713114365935326,0.998548209667206,-0.0341971516609192,0.0416175723075867,0.988580167293549,0.150245860219002,-0.011645520105958,-0.997241020202637,-0.0381932146847248,0.0636525452136993,-0.995265662670136,0.0968009978532791,0.00871849060058594,-0.999461472034454,0.00855947937816381,-0.0316812954843044,-0.999500155448914,-0.00377138378098607,-0.0313912332057953,-0.997462511062622,0.0062173786573112,0.0709219947457314,-0.997482597827911,-0.0503182299435139,0.0499656088650227,-0.997794270515442,0.0213565155863762,0.0628531873226166,-0.995518803596497,0.0739377588033676,-0.0589536726474762,-0.994533777236938,0.0110069867223501,-0.103833623230457,-0.995521426200867,0.0736702531576157,-0.0592433251440525,-0.997833907604218,0.019408842548728,0.0628556832671165,-0.992981731891632,-0.0932713598012924,0.0727169215679169,-0.9870685338974,0.157557174563408,-0.0295196212828159,-0.963684737682343,0.184783011674881,0.19278746843338,-0.985715985298157,0.0789037421345711,0.148789033293724,-0.986363053321838,0.161887064576149,-0.0296734236180782,-0.985443234443665,0.0799196660518646,0.150048345327377,-0.965165495872498,0.260510474443436,0.0242912899702787,0.972693264484406,-0.131061688065529,-0.191548049449921,0.996753692626953,-0.0579894222319126,0.0558524020016193,0.993029892444611,0.0307141598314047,-0.113790467381477,0.994099020957947,0.0415477119386196,-0.100204668939114,0.997558891773224,-0.0421846620738506,0.0556478872895241,0.996572434902191,-0.0826580598950386,0.00331838987767696,
  769. -0.997350096702576,-0.0166956763714552,0.0708098113536835,-0.997345745563507,0.0412085466086864,-0.0600295029580593,-0.996776580810547,-0.028690442442894,-0.0749221295118332,-0.99747234582901,0.0562932901084423,-0.0433609560132027,-0.997489929199219,0.00472029484808445,0.0706510916352272,-0.994744598865509,-0.0827170014381409,0.0603431575000286,0.971038937568665,-0.172482922673225,-0.165327593684196,0.996533989906311,-0.0647025108337402,0.0522842407226563,0.992648899555206,0.028375580906868,-0.117655985057354,0.993437051773071,0.033683817833662,-0.109308041632175,0.996842920780182,-0.0604487843811512,0.051479883491993,0.992782890796661,-0.1192741766572,-0.0124844266101718,-0.992334961891174,-0.098319798707962,-0.0748632550239563,-0.991010725498199,-0.133489891886711,0.00885433610528708,-0.980198979377747,-0.1980150192976,-0.00013405061326921,-0.989395380020142,-0.144972577691078,0.00893203169107437,-0.990904152393341,-0.105752125382423,-0.0832204595208168,-0.98057758808136,-0.156376212835312,-0.118381030857563,0.999098420143127,0.0134439915418625,0.0402715094387531,0.946196436882019,0.30655300617218,-0.103623233735561,0.994601488113403,0.0642500221729279,-0.0814862251281738,0.999280750751495,0.0102578494697809,0.0365069843828678,0.995130896568298,0.0558741688728333,-0.0811958685517311,0.993759512901306,0.0590319931507111,0.094643771648407,0.995873153209686,-0.0291356034576893,0.0859521999955177,0.958184778690338,0.285999774932861,0.00927628297358751,0.997578203678131,0.0303130894899368,-0.0626008883118629,0.997958362102509,0.011788060888648,-0.062770701944828,0.977010130882263,0.137926816940308,0.16256508231163,0.996531844139099,-0.0416277684271336,0.0720512941479683,0.996875166893005,-0.0708706974983215,0.0348895005881786,0.994559168815613,-0.0237340219318867,-0.101433642208576,0.994621455669403,0.0658056437969208,0.0799864158034325,0.994691133499146,-0.0338027700781822,-0.0971952527761459,0.99687933921814,-0.076341487467289,0.0200944524258375,0.990943431854248,0.126830771565437,-0.0441033244132996,-0.983474254608154,-0.113112717866898,-0.141364544630051,
  770. -0.994739711284637,0.0206008031964302,0.100342899560928,-0.998071491718292,0.0620737299323082,-0.000580382300540805,-0.997086942195892,0.0733450129628181,0.0209327712655067,-0.994375646114349,0.0397179014980793,0.0981812104582787,-0.993299841880798,-0.0553460605442524,0.101450867950916,-0.997149288654327,-0.0356801226735115,0.0664849057793617,-0.994423568248749,0.104934178292751,0.0105148172006011,-0.999431729316711,0.0113400993868709,-0.0317460410296917,-0.999482214450836,-0.00744156632572412,-0.0313039682805538,-0.996851742267609,0.0038383302744478,0.0791954174637794,-0.997490525245667,-0.0524014122784138,0.047610480338335,-0.97891503572464,0.196582987904549,-0.055503848940134,-0.98711496591568,0.129443407058716,0.0940671861171722,-0.967010736465454,0.254440307617188,-0.0122626489028335,-0.988341987133026,0.124087922275066,0.0882187187671661,-0.980507135391235,0.188473835587502,-0.055527750402689,-0.968958020210266,0.200111299753189,0.145175158977509,-0.00286122132092714,0.423144370317459,-0.906057894229889,0.00426782388240099,0.423311561346054,-0.905974149703979,-0.00286122132092714,0.423144370317459,-0.906057894229889,0.00456180330365896,0.413790732622147,-0.91036057472229,-0.00260177976451814,0.413623452186584,-0.910444319248199,0.00456180330365896,0.413790732622147,-0.91036057472229,0.97265750169754,-0.131971970200539,-0.19110406935215,0.996718466281891,-0.0585848465561867,0.0558598376810551,0.993835687637329,0.0250926837325096,-0.107986219227314,0.994870364665985,0.0355703793466091,-0.0946991965174675,0.997450947761536,-0.0446244850754738,0.0556803569197655,0.996564507484436,-0.0827580839395523,0.00320948078297079,-0.00715136202052236,0.418425500392914,-0.90822297334671,-0.00715136202052236,0.418425500392914,-0.90822297334671,-0.00715136202052236,0.418425500392914,-0.90822297334671,-0.00717177614569664,0.412751227617264,-0.910815596580505,-0.00717177614569664,0.412751227617264,-0.910815596580505,-0.00717177614569664,0.412751227617264,-0.910815596580505,-0.99777227640152,-0.0195728447288275,0.0637765005230904,
  771. -0.997859120368958,0.034923367202282,-0.0552950203418732,-0.997249484062195,-0.0333246104419231,-0.0662034228444099,-0.997983634471893,0.0519264414906502,-0.0365033447742462,-0.998003959655762,0.00964193418622017,0.062410868704319,-0.995485246181488,-0.0728929117321968,0.0607925169169903,0.964241683483124,-0.195120885968208,-0.179348453879356,0.995538532733917,-0.0884324684739113,0.032907672226429,0.991642236709595,0.00261421571485698,-0.128991708159447,0.992595076560974,0.00750378984957933,-0.121238008141518,0.995968580245972,-0.083791971206665,0.0320235751569271,0.989072918891907,-0.145293682813644,-0.0249912347644567,-0.997286081314087,-0.0693743377923965,0.0246504489332438,-0.997304499149323,-0.0288636032491922,-0.0674583092331886,-0.991828143596649,-0.080695353448391,-0.0988190546631813,-0.997830510139465,-0.0235106255859137,-0.0614941343665123,-0.997775912284851,-0.061974074691534,0.0245454795658588,-0.992296278476715,-0.123118475079536,0.0137815726920962,0.999172806739807,0.0117795923724771,0.0389227904379368,0.954047203063965,0.291797995567322,-0.0681751146912575,0.995501339435577,0.0675559565424919,-0.0664323046803474,0.999681532382965,0.000456425274023786,0.0252357162535191,0.996755838394165,0.0469451397657394,-0.0653752982616425,0.994235038757324,0.0533734820783138,0.0929946452379227,0.993576407432556,-0.0291203502565622,0.109352424740791,0.95334380865097,0.301285594701767,0.0190408322960138,0.996464610099792,0.0460762307047844,-0.0702527984976768,0.997396945953369,0.0148366736248136,-0.0705648511648178,0.973619341850281,0.147839158773422,0.173807367682457,0.995030641555786,-0.0501656010746956,0.0860095396637917,-0.981451153755188,0.0921820774674416,0.168096050620079,-0.935079395771027,0.346190363168716,0.076018288731575,-0.98449581861496,0.173100799322128,-0.028355872258544,-0.988014757633209,0.152481764554977,-0.0240041464567184,-0.959796667098999,0.196329221129417,0.200611963868141,-0.984365105628967,0.0829611346125603,0.155379623174667,-0.994719743728638,0.00146842165850103,-0.102618157863617,-0.997355580329895,-0.0627930164337158,0.0365911386907101,
  772. -0.99611222743988,0.0598413310945034,-0.0646481961011887,-0.997308373451233,-0.0647575557231903,0.0343876704573631,-0.994717359542847,-0.00151125446427614,-0.102641560137272,-0.998876631259918,0.00384997809305787,0.0472294464707375,-0.000459706876426935,-0.409055858850479,0.912509262561798,-0.000459706876426935,-0.409055858850479,0.912509262561798,-0.000459706876426935,-0.409055858850479,0.912509262561798,-0,-0.409055888652802,0.912509322166443,-0,-0.409055888652802,0.912509322166443,-0,-0.409055888652802,0.912509322166443,-0.000459706003312021,-0.409055858850479,0.912509262561798,-0.000459706003312021,-0.409055858850479,0.912509262561798,-0.000459706003312021,-0.409055858850479,0.912509262561798,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,-0,-0.406896680593491,0.913474202156067,-0,-0.406896680593491,0.913474202156067,-0,-0.406896680593491,0.913474202156067,-0,-0.407826036214828,0.913059651851654,-0,-0.407826036214828,0.913059651851654,-0,-0.407826036214828,0.913059651851654,0,-0.407826036214828,0.913059651851654,0,-0.407826036214828,0.913059651851654,0,-0.407826036214828,0.913059651851654,0,-0.406896680593491,0.913474202156067,0,-0.406896680593491,0.913474202156067,0,-0.406896680593491,0.913474202156067,-0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,0.0232175420969725,-0.965582489967346,-0.259058713912964,0.0232175420969725,-0.965582489967346,-0.259058713912964,0.0232175420969725,-0.965582489967346,-0.259058713912964,0.0232175420969725,-0.965582489967346,-0.259058713912964,0.0232175420969725,-0.965582489967346,-0.259058713912964,0.0232175420969725,-0.965582489967346,-0.259058713912964,-0.000648858665954322,-0.415574371814728,0.909558951854706,-0.000648858665954322,-0.415574371814728,0.909558951854706,-0.000648858665954322,-0.415574371814728,0.909558951854706,
  773. -1.44245223054895e-005,-0.415574461221695,0.909559190273285,-1.44245223054895e-005,-0.415574461221695,0.909559190273285,-1.44245223054895e-005,-0.415574461221695,0.909559190273285,0.00324270594865084,-0.415572255849838,0.909554362297058,0.00324270594865084,-0.415572255849838,0.909554362297058,0.00324270594865084,-0.415572255849838,0.909554362297058,-0.00427694106474519,-0.415570646524429,0.909550845623016,-0.00427694106474519,-0.415570646524429,0.909550845623016,-0.00427694106474519,-0.415570646524429,0.909550845623016,0,-0.403978645801544,0.914768397808075,0,-0.403978645801544,0.914768397808075,0,-0.403978645801544,0.914768397808075,-0,-0.414817214012146,0.909904778003693,-0,-0.414817214012146,0.909904778003693,-0,-0.414817214012146,0.909904778003693,0,-0.402874052524567,0.915255427360535,0,-0.402874052524567,0.915255427360535,0,-0.402874052524567,0.915255427360535,0,-0.411773353815079,0.911286294460297,0,-0.411773353815079,0.911286294460297,0,-0.411773353815079,0.911286294460297,0.0402768030762672,-0.968890249729156,-0.244191855192184,0.0402768030762672,-0.968890249729156,-0.244191855192184,0.0402768030762672,-0.968890249729156,-0.244191855192184,-0.000310187780996785,-0.969676971435547,-0.24439013004303,-0.000310187780996785,-0.969676971435547,-0.24439013004303,-0.000310187780996785,-0.969676971435547,-0.24439013004303,0.0213637910783291,-0.969455778598785,-0.244334384799004,0.0213637910783291,-0.969455778598785,-0.244334384799004,0.0213637910783291,-0.969455778598785,-0.244334384799004,0.0416372306644917,-0.968836069107056,-0.244178205728531,0.0416372306644917,-0.968836069107056,-0.244178205728531,0.0416372306644917,-0.968836069107056,-0.244178205728531,-0.000457430927781388,-0.409055858850479,0.912509262561798,-0.000457430927781388,-0.409055858850479,0.912509262561798,-0.000457430927781388,-0.409055858850479,0.912509262561798,-8.62575348037353e-007,-0.409055888652802,0.912509322166443,-8.62575348037353e-007,-0.409055888652802,0.912509322166443,-8.62575348037353e-007,-0.409055888652802,0.912509322166443,-0.000459706003312021,-0.409055858850479,0.912509262561798,
  774. -0.000459706003312021,-0.409055858850479,0.912509262561798,-0.000459706003312021,-0.409055858850479,0.912509262561798,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,-0,-0.407825767993927,0.913059771060944,-0,-0.407825767993927,0.913059771060944,-0,-0.407825767993927,0.913059771060944,0,-0.406897306442261,0.913473904132843,0,-0.406897306442261,0.913473904132843,0,-0.406897306442261,0.913473904132843,0,-0.406897783279419,0.913473725318909,0,-0.406897783279419,0.913473725318909,0,-0.406897783279419,0.913473725318909,0,-0.407825767993927,0.913059771060944,0,-0.407825767993927,0.913059771060944,0,-0.407825767993927,0.913059771060944,-4.7646612074459e-005,-0.961226165294647,-0.275761604309082,-4.7646612074459e-005,-0.961226165294647,-0.275761604309082,-4.7646612074459e-005,-0.961226165294647,-0.275761604309082,0.025659529492259,-0.96090966463089,-0.275670796632767,0.025659529492259,-0.96090966463089,-0.275670796632767,0.025659529492259,-0.96090966463089,-0.275670796632767,0.0264808163046837,-0.962953507900238,-0.268364071846008,0.0264808163046837,-0.962953507900238,-0.268364071846008,0.0264808163046837,-0.962953507900238,-0.268364071846008,0.0264808163046837,-0.962953507900238,-0.268364071846008,0.0264808163046837,-0.962953507900238,-0.268364071846008,0.0264808163046837,-0.962953507900238,-0.268364071846008,-0,0.393528491258621,-0.919312417507172,-0,0.393528491258621,-0.919312417507172,-0,0.393528491258621,-0.919312417507172,0,0.393526136875153,-0.919313549995422,0,0.393526136875153,-0.919313549995422,0,0.393526136875153,-0.919313549995422,0,0.390278518199921,-0.92069685459137,0,0.390278518199921,-0.92069685459137,0,0.390278518199921,-0.92069685459137,0,0.389481574296951,-0.921034276485443,0,0.389481574296951,-0.921034276485443,0,0.389481574296951,-0.921034276485443,0,-0.376841485500336,0.926277756690979,0,-0.376841485500336,0.926277756690979,0,-0.376841485500336,0.926277756690979,0,-0.385584682226181,0.92267245054245,0,-0.385584682226181,0.92267245054245,
  775. 0,-0.385584682226181,0.92267245054245,0,-0.384144067764282,0.923273146152496,0,-0.384144067764282,0.923273146152496,0,-0.384144067764282,0.923273146152496,0,-0.377896398305893,0.925848007202148,0,-0.377896398305893,0.925848007202148,0,-0.377896398305893,0.925848007202148,0.00279492768459022,-0.999500572681427,0.0314803346991539,0.00279377913102508,-0.99999612569809,-2.21907240003788e-016,0.00279653957113624,-0.998882055282593,0.04719128459692,0.00277365953661501,-0.999996244907379,-2.21975055579128e-016,0.00277480971999466,-0.999500632286072,0.0314803384244442,0.00277365953661501,-0.999996244907379,-2.21975055579128e-016,-0.0236153677105904,-0.999716997146606,-0.0028740253765136,0,-0.999995887279511,-0.00287318043410778,-0.0393394455313683,-0.999221861362457,-0.00287547893822193,0,-0.999996185302734,-0.00279479590244591,-0.0236153732985258,-0.999717235565186,-0.00279565388336778,0,-0.999996185302734,-0.00279479590244591,0.00286375149153173,-0.999995887279511,-2.22205461775671e-016,0.00286390213295817,-0.999964892864227,-0.00787373911589384,0.00286375149153173,-0.999995887279511,-2.22205461775671e-016,0.00321858399547637,-0.999994814395905,-2.22018346903666e-016,0.0032187623437494,-0.999963819980621,-0.00787373073399067,0.0032191404607147,-0.999870836734772,-0.015745997428894,0,-0.999998033046722,-0.00197922368533909,0.00787375587970018,-0.999967038631439,-0.00197926675900817,0,-0.999998033046722,-0.00197922368533909,0.0157460011541843,-0.999871015548706,-0.00316546764224768,0,-0.999994993209839,-0.00316516333259642,0.00787373259663582,-0.999963998794556,-0.00316521734930575,0,-0.999980092048645,-0.00631217518821359,0.0314798317849636,-0.999484539031982,-0.00631493330001831,0,-0.999980092048645,-0.00631217518821359,0.0550325699150562,-0.998448133468628,-0.00853095948696136,0,-0.999963700771332,-0.00851955357939005,0.0314793102443218,-0.999468088150024,-0.00852290727198124,-0.000534579099621624,-0.998885810375214,0.047191459685564,-0.000534134916961193,-0.99999988079071,-2.22401020507368e-016,-0.000534422462806106,-0.999225854873657,0.0393396019935608,
  776. 0.000322853069519624,-0.999225854873657,0.0393396019935608,0.000322678271913901,-0.999999940395355,-2.22162607202496e-016,0.000322678271913901,-0.999999940395355,-2.22162607202496e-016,-0.0157454181462526,-0.999834001064301,-0.00917048938572407,0,-0.999957978725433,-0.00916920602321625,-0.0393379479646683,-0.999183833599091,-0.00917667523026466,0,-0.999980270862579,-0.00628007482737303,-0.0157457683235407,-0.999856293201447,-0.00628104340285063,0,-0.999980270862579,-0.00628007482737303,-5.02998227602802e-005,-0.999969005584717,0.00787377171218395,-5.03007904626429e-005,-1,-2.22158186749302e-016,-5.03007904626429e-005,-1,-2.22158186749302e-016,7.01391836628318e-005,-1,-2.22317296594488e-016,7.01372991898097e-005,-0.999969005584717,0.00787377171218395,7.01454118825495e-005,-0.999969005584717,-0.00787377171218395,-0.00693357037380338,2.21651330174599e-016,-0.999975979328156,-0.00693357037380338,2.21651330174599e-016,-0.999975979328156,-0.00693357037380338,2.21651330174599e-016,-0.999975979328156,0.00579792354255915,2.21927330566506e-016,-0.999983191490173,0.00579792354255915,2.21927330566506e-016,-0.999983191490173,0.00579792354255915,2.21927330566506e-016,-0.999983191490173,-0.0170336328446865,2.21879751137672e-016,-0.999854922294617,-0.0170336328446865,2.21879751137672e-016,-0.999854922294617,-0.0170336328446865,2.21879751137672e-016,-0.999854922294617,-0.00247302418574691,2.22158583795996e-016,-0.999996960163116,-0.00247302418574691,2.22158583795996e-016,-0.999996960163116,-0.00247302418574691,2.22158583795996e-016,-0.999996960163116,-0,0.393527090549469,-0.919313132762909,-0,0.393527090549469,-0.919313132762909,-0,0.393527090549469,-0.919313132762909,-0,0.385581374168396,-0.92267382144928,-0,0.385581374168396,-0.92267382144928,-0,0.385581374168396,-0.92267382144928,0,0.390435397624969,-0.9206303358078,0,0.390435397624969,-0.9206303358078,0,0.390435397624969,-0.9206303358078,0,0.393470287322998,-0.919337332248688,0,0.393470287322998,-0.919337332248688,0,0.393470287322998,-0.919337332248688,0.00473907357081771,0.425135344266891,-0.905117511749268,
  777. 0.00473907357081771,0.425135344266891,-0.905117511749268,0.0049096317961812,0.418657898902893,-0.908130764961243,-0.000489580037537962,0.409045308828354,-0.912513971328735,-0.000735453504603356,0.418541371822357,-0.908197462558746,-0.000904375861864537,0.425019264221191,-0.905183851718903,-0.00309204962104559,0.418488770723343,-0.908216714859009,-0.00284446636214852,0.408992975950241,-0.912533104419708,-0.00284446636214852,0.408992975950241,-0.912533104419708,-0.999691188335419,-0.0247645936906338,-0.00207379460334778,-0.999970734119415,-0.00295675732195377,0.0070600132457912,-0.999939739704132,-0.0102276606485248,0.00401421589776874,-0.99998539686203,0.00208964943885803,-0.0049895728006959,-0.99998539686203,0.00208964943885803,-0.0049895728006959,-0.999954402446747,-0.00518107460811734,-0.00803609471768141,-0.999999761581421,0.000275062309810892,-0.000656781194265932,-0.999999761581421,0.000275062309810892,-0.000656781194265932,-0.999968767166138,-0.00699630612507463,-0.00370206078514457,-0.999998867511749,0.000583651592023671,-0.0013936166651547,-0.999998867511749,0.000583651592023671,-0.0013936166651547,-0.999998867511749,0.000583651592023671,-0.0013936166651547,-0.999999165534973,-0.000498008739668876,0.0011891215108335,-0.999719619750977,0.021310817450285,0.0103223090991378,-0.999999165534973,-0.000498008739668876,0.0011891215108335,-0.999718606472015,0.0210680663585663,0.0109018785879016,-0.999998271465302,-0.000740768096875399,0.00176877144258469,-0.999718606472015,0.0210680663585663,0.0109018785879016,0.000536129751708359,-0.0340442396700382,-0.999420166015625,0.000803676666691899,-0.0340222902595997,-0.999420762062073,0.000536129751708359,-0.0340442396700382,-0.999420166015625,0.000626165186986327,-0.0265076700598001,-0.99964851140976,0.000417370581999421,-0.0265030302107334,-0.999648749828339,0.000626165186986327,-0.0265076700598001,-0.99964851140976,-0.00030581618193537,0.00970966275781393,-0.999952912330627,-0.000229508252232336,0.00971584394574165,-0.999952793121338,-0.000229508252232336,0.00971584394574165,-0.999952793121338,
  778. 0.000691003398969769,-0.0292524453252554,-0.999571919441223,0.000461160496342927,-0.0292836911976337,-0.999571025371552,0.000461160496342927,-0.0292836911976337,-0.999571025371552,0.000558363215532154,-0.0236373785883188,-0.999720454216003,0.000372251961380243,-0.0236379988491535,-0.999720513820648,0.000558363215532154,-0.0236373785883188,-0.999720454216003,-0.000207899967790581,0.00880110450088978,-0.999961256980896,-0.00027727207634598,0.00880338903516531,-0.999961197376251,-0.000207899967790581,0.00880110450088978,-0.999961256980896,-0.00280533661134541,-0.0315244682133198,-0.999499142169952,-0.00316895567812026,-0.0158208385109901,-0.999869823455811,-0.00280533661134541,-0.0315244682133198,-0.999499142169952,-0.00308964727446437,-0.0158189702779055,-0.999870121479034,-0.00269291270524263,-0.0315227061510086,-0.999499499797821,-0.00308964727446437,-0.0158189702779055,-0.999870121479034,0.00152114999946207,-0.015710137784481,-0.999875426292419,0.000956114730797708,0.00790388137102127,-0.999968409538269,0.00152114999946207,-0.015710137784481,-0.999875426292419,0.00028595034382306,0.00788277760148048,-0.999968886375427,0.000850689015351236,-0.0157259851694107,-0.999876081943512,0.00028595034382306,0.00788277760148048,-0.999968886375427,-0.000413156842114404,0.402486085891724,-0.915426135063171,-0.00039726629620418,0.415577262639999,-0.909557819366455,-0.000413156842114404,0.402486085891724,-0.915426135063171,-0.0014786469982937,0.402516424655914,-0.915411591529846,-0.00115668796934187,0.415582448244095,-0.909554779529572,-0.00115668796934187,0.415582448244095,-0.909554779529572,0.00187069189269096,0.415560394525528,-0.909563660621643,0.00147813733201474,0.434580266475677,-0.900631904602051,0.00187069189269096,0.415560394525528,-0.909563660621643,3.32096897182055e-006,0.415574431419373,-0.909559190273285,0.00078338070306927,0.434555888175964,-0.900644540786743,0.00078338070306927,0.434555888175964,-0.900644540786743,-0.00393415847793221,0.402584701776505,-0.915374279022217,-0.00398622173815966,0.415599644184113,-0.909539043903351,
  779. -0.00393415847793221,0.402584701776505,-0.915374279022217,0.00200582155957818,0.415559321641922,-0.909563839435577,0.00175033288542181,0.402422934770584,-0.915452182292938,0.00200582155957818,0.415559321641922,-0.909563839435577,0.000713859335519373,0.415569275617599,-0.909561276435852,0.000305214984109625,0.440914690494537,-0.897549092769623,0.000713859335519373,0.415569275617599,-0.909561276435852,0.000395157810999081,0.440917819738388,-0.897547423839569,-0.000407408224418759,0.415577322244644,-0.90955775976181,0.000395157810999081,0.440917819738388,-0.897547423839569,-0.0223773177713156,0.406126201152802,-0.913542985916138,-0.00399907445535064,0.405987411737442,-0.913869917392731,-0.0223773177713156,0.406126201152802,-0.913542985916138,-0.00399616360664368,0.406243354082108,-0.913756191730499,-0.0223703999072313,0.406358927488327,-0.913439631462097,-0.00399616360664368,0.406243354082108,-0.913756191730499,-0.0033732745796442,0.45967498421669,-0.888080835342407,0.027728920802474,0.459096908569336,-0.887953341007233,-0.0033732745796442,0.45967498421669,-0.888080835342407,0.0283579993993044,0.44141012430191,-0.896857261657715,-0.00358455837704241,0.441845268011093,-0.89708411693573,0.0283579993993044,0.44141012430191,-0.896857261657715,0.00715602515265346,0.417137563228607,-0.908815205097198,-0.00209450977854431,0.416799008846283,-0.908996284008026,0.00715602515265346,0.417137563228607,-0.908815205097198,-0.00199175835587084,0.41459259390831,-0.91000497341156,0.00716396467760205,0.414933562278748,-0.909823536872864,-0.00199175835587084,0.41459259390831,-0.91000497341156,-0.00174149591475725,0.409209489822388,-0.912438809871674,-0.0106188924983144,0.408648878335953,-0.912629902362823,-0.00174149591475725,0.409209489822388,-0.912438809871674,-0.00980068184435368,0.399475991725922,-0.916691243648529,-0.00130419177003205,0.399771928787231,-0.916613698005676,-0.00980068184435368,0.399475991725922,-0.916691243648529,0.00716041168197989,0.415921628475189,-0.909372270107269,-0.00203876639716327,0.415602296590805,-0.909544169902802,
  780. 0.00716041168197989,0.415921628475189,-0.909372270107269,-0.00209575379267335,0.416825711727142,-0.908984005451202,0.00715596135705709,0.417155176401138,-0.908807098865509,-0.00209575379267335,0.416825711727142,-0.908984005451202,-0.00312095717526972,0.438719719648361,-0.898618519306183,-0.0132630253210664,0.438090354204178,-0.898833215236664,-0.00312095717526972,0.438719719648361,-0.898618519306183,-0.0124710826203227,0.429304778575897,-0.90307354927063,-0.00269619142636657,0.429675072431564,-0.902979552745819,-0.0124710826203227,0.429304778575897,-0.90307354927063,-0.011164203286171,0.425012350082397,-0.905118823051453,-0.0113940183073282,0.418857008218765,-0.907980740070343,-0.011164203286171,0.425012350082397,-0.905118823051453,-0.00805793236941099,0.418774873018265,-0.908054351806641,-0.00780146103352308,0.425025850534439,-0.905147612094879,-0.00875360053032637,0.412501037120819,-0.910915195941925,-0.00174026819877326,0.418606668710709,-0.908166110515594,-0.00153233355376869,0.412099272012711,-0.911137640476227,-0.00142395112197846,0.412103354930878,-0.911135971546173,0.00704410905018449,0.427470028400421,-0.904002070426941,0.0063495715148747,0.418093472719193,-0.908381938934326,0.00704410905018449,0.427470028400421,-0.904002070426941,0.0060005490668118,0.427562743425369,-0.903965890407562,0.00503352610394359,0.418191015720367,-0.908345282077789,0.00503352610394359,0.418191015720367,-0.908345282077789,0.0245445035398006,0.416670054197311,-0.908726394176483,0.0230469349771738,0.400868207216263,-0.915845811367035,0.0245445035398006,0.416670054197311,-0.908726394176483,0.0234990101307631,0.416755676269531,-0.908714890480042,0.0223012752830982,0.400923579931259,-0.915840148925781,0.0223012752830982,0.400923579931259,-0.915840148925781,0.00438347039744258,0.402755290269852,-0.915297329425812,0.00438347039744258,0.402755290269852,-0.915297329425812,0.00348376319743693,0.418729692697525,-0.908104240894318,-0.00948464218527079,0.42461422085762,-0.905324816703796,-0.00748153124004602,0.401976346969604,-0.915619492530823,
  781. -0.00900592654943466,0.41808819770813,-0.908361911773682,-0.00474498840048909,0.402161031961441,-0.915556669235229,-0.00622252933681011,0.424764513969421,-0.905282497406006,-0.00622252933681011,0.424764513969421,-0.905282497406006,-0.0175996087491512,0.426810264587402,-0.904169917106628,-0.00498669734224677,0.426397025585175,-0.904522478580475,-0.0175996087491512,0.426810264587402,-0.904169917106628,-0.0051944050937891,0.423425048589706,-0.905916273593903,-0.0175982937216759,0.424013644456863,-0.905484795570374,-0.0113794123753905,0.423906147480011,-0.905634641647339,-0.00570022687315941,0.416165173053741,-0.90927129983902,-0.0116476817056537,0.416140586137772,-0.909225702285767,-0.00243654474616051,0.416000485420227,-0.909361243247986,0.010328222066164,0.42702728509903,-0.904179751873016,0.00943865906447172,0.417726159095764,-0.908523976802826,0.010328222066164,0.42702728509903,-0.904179751873016,0.00973903201520443,0.417699098587036,-0.908533215522766,0.0108642736449838,0.426971048116684,-0.90420001745224,0.00973903201520443,0.417699098587036,-0.908533215522766,0.0247465427964926,0.416298180818558,-0.908891439437866,0.0227196849882603,0.400892555713654,-0.915843427181244,0.0247465427964926,0.416298180818558,-0.908891439437866,0.0220156386494637,0.400944650173187,-0.915837705135345,0.0230864956974983,0.416457831859589,-0.908861994743347,0.0220156386494637,0.400944650173187,-0.915837705135345,0.00434926571324468,0.423181653022766,-0.906034409999847,-0.00229470594786108,0.423746258020401,-0.905778050422668,0.00434926571324468,0.423181653022766,-0.906034409999847,-0.00277755060233176,0.418769299983978,-0.908088386058807,0.00378955923952162,0.41825732588768,-0.908320665359497,-0.00277755060233176,0.418769299983978,-0.908088386058807,-0.00205536815337837,0.426208257675171,-0.904622852802277,-0.00872714910656214,0.42668142914772,-0.904359877109528,-0.00205536815337837,0.426208257675171,-0.904622852802277,-0.00952308718115091,0.416888356208801,-0.908907830715179,-0.00301395752467215,0.416327565908432,-0.909209668636322,
  782. -0.00952308718115091,0.416888356208801,-0.908907830715179,-0.000969713379163295,0.408730983734131,-0.912654399871826,-0.00417605042457581,0.408564746379852,-0.912719786167145,-0.00417605042457581,0.408564746379852,-0.912719786167145,-0.00472155818715692,0.415967464447021,-0.909367263317108,0.00508067943155766,0.416440159082413,-0.909149050712585,-0.00145942822564393,0.416171699762344,-0.909284889698029,0.00565925007686019,0.404869258403778,-0.91435706615448,-0.000695275899488479,0.40454962849617,-0.914515793323517,0.00565925007686019,0.404869258403778,-0.91435706615448,-0.00437132874503732,0.434741705656052,-0.900544583797455,-0.00534576596692204,0.418819725513458,-0.908053696155548,-0.00437132874503732,0.434741705656052,-0.900544583797455,-0.00670057954266667,0.434852093458176,-0.900476932525635,-0.00767348473891616,0.418930202722549,-0.907985985279083,-0.00767348473891616,0.418930202722549,-0.907985985279083,0.00987784750759602,0.418040901422501,-0.908374488353729,0.00890211947262287,0.402007967233658,-0.915592908859253,0.00987784750759602,0.418040901422501,-0.908374488353729,0.0120732123032212,0.417920589447021,-0.908403337001801,0.0111035695299506,0.401887744665146,-0.915621638298035,0.0111035695299506,0.401887744665146,-0.915621638298035,0.000597522885072976,0.434498339891434,-0.900672554969788,-0.000375493982573971,0.418576210737228,-0.908181726932526,0.000597522885072976,0.434498339891434,-0.900672554969788,-0.00265021668747067,0.418688893318176,-0.908125877380371,-0.00167688995134085,0.434611052274704,-0.900616705417633,-0.00265021668747067,0.418688893318176,-0.908125877380371,0.0116392588242888,0.417944580316544,-0.90839809179306,0.0106629375368357,0.401911973953247,-0.91561621427536,0.0116392588242888,0.417944580316544,-0.90839809179306,0.0107008228078485,0.40190988779068,-0.915616691112518,0.01167022716254,0.417942821979523,-0.908398389816284,0.0107008228078485,0.40190988779068,-0.915616691112518,-0.0086750453338027,0.421043992042542,-0.906998753547668,-0.00537393242120743,0.42085200548172,-0.907113373279572,
  783. -0.0086750453338027,0.421043992042542,-0.906998753547668,-0.00551354931667447,0.418848246335983,-0.908039629459381,-0.00880079995840788,0.419009268283844,-0.907939314842224,-0.00551354931667447,0.418848246335983,-0.908039629459381,-0.00474517606198788,0.429845929145813,-0.902889788150787,0.00233633397147059,0.42942950129509,-0.90309739112854,-0.00474517606198788,0.429845929145813,-0.902889788150787,0.000843942805659026,0.406815737485886,-0.913509845733643,-0.00632063206285238,0.407216876745224,-0.913309633731842,0.000843942805659026,0.406815737485886,-0.913509845733643,0.00267605646513402,0.409092903137207,-0.91248893737793,0.00263221352361143,0.402434706687927,-0.915444910526276,0.00263221352361143,0.402434706687927,-0.915444910526276,-0.00234464579261839,0.40250688791275,-0.915413975715637,-0.00247673969715834,0.409019082784653,-0.912522494792938,-0.00247673969715834,0.409019082784653,-0.912522494792938,-0.0013541029766202,0.418459802865982,-0.908234298229218,-0.00295579596422613,0.409011721611023,-0.912524461746216,-0.00295579596422613,0.409011721611023,-0.912524461746216,0.00084389210678637,0.409067869186401,-0.912503600120544,-0.000983243808150291,0.418486595153809,-0.908222436904907,-0.000983243808150291,0.418486595153809,-0.908222436904907,-0.00815678481012583,0.398971378803253,-0.916927218437195,-0.00628262991085649,0.39894700050354,-0.91695249080658,-0.00815678481012583,0.398971378803253,-0.916927218437195,-0.00630076741799712,0.400098741054535,-0.916450500488281,-0.00812983047217131,0.400163471698761,-0.916407704353333,-0.00630076741799712,0.400098741054535,-0.916450500488281,-0.0059854481369257,0.380075961351395,-0.924935936927795,0.00216100155375898,0.380515664815903,-0.924771964550018,-0.0059854481369257,0.380075961351395,-0.924935936927795,0.000761127274017781,0.397150069475174,-0.917753338813782,-0.00625666324049234,0.397298127412796,-0.917668282985687,0.000761127274017781,0.397150069475174,-0.917753338813782,-0.0183552317321301,0.407691359519959,-0.912935316562653,0.000762060866691172,0.408081978559494,-0.912945091724396,
  784. -0.0183552317321301,0.407691359519959,-0.912935316562653,0.000791774189565331,0.406539142131805,-0.913633048534393,-0.0183840114623308,0.406126469373703,-0.913631916046143,0.000791774189565331,0.406539142131805,-0.913633048534393,1.18449197543669e-005,0.446611374616623,-0.894728064537048,0.0316965878009796,0.446755558252335,-0.894094407558441,1.18449197543669e-005,0.446611374616623,-0.894728064537048,0.0328363068401814,0.433475136756897,-0.90056711435318,0.000281950226053596,0.432832926511765,-0.901474237442017,0.0328363068401814,0.433475136756897,-0.90056711435318,0.00766799319535494,0.432678192853928,-0.901515960693359,0.00340702175162733,0.432691752910614,-0.901535511016846,0.00766799319535494,0.432678192853928,-0.901515960693359,0.00336231454275548,0.427013963460922,-0.904238760471344,0.00791716389358044,0.426846981048584,-0.904289245605469,-0.00375661975704134,0.427103996276855,-0.904194712638855,-0.00370573881082237,0.431484192609787,-0.902113020420074,-0.0120496610179544,0.431364208459854,-0.902097404003143,0.00339742167852819,0.431472510099411,-0.902119696140289,-0.012705136090517,0.424329042434692,-0.905418932437897,-0.00379459303803742,0.423823535442352,-0.905736863613129,-0.012705136090517,0.424329042434692,-0.905418932437897,0.00752172572538257,0.418707311153412,-0.908090114593506,0.00735099660232663,0.425184398889542,-0.905076920986176,0.00735099660232663,0.425184398889542,-0.905076920986176,-0.00217963149771094,0.418509423732758,-0.90820986032486,-0.0019337065750733,0.409013479948044,-0.912526309490204,-0.00234847026877105,0.424987405538559,-0.905196249485016,-0.0013209959724918,0.409027099609375,-0.912521302700043,-0.0015684119425714,0.418523102998734,-0.908204913139343,-0.0013209959724918,0.409027099609375,-0.912521302700043,0.0160417184233665,0.418963611125946,-0.907861292362213,0.0154438549652696,0.415194511413574,-0.90960168838501,0.0160417184233665,0.418963611125946,-0.907861292362213,0.0157104320824146,0.415187031030655,-0.909600436687469,0.0155938109382987,0.418953746557236,-0.907873690128326,
  785. 0.0157104320824146,0.415187031030655,-0.909600436687469,0.0217068511992693,0.415012061595917,-0.909556925296783,0.0202652160078287,0.40737110376358,-0.913037836551666,0.0217068511992693,0.415012061595917,-0.909556925296783,0.0209010448306799,0.407315522432327,-0.913048326969147,0.0197330731898546,0.415071308612823,-0.909574866294861,0.0209010448306799,0.407315522432327,-0.913048326969147,-0.00314093194901943,0.433369725942612,-0.901210784912109,-0.00314093194901943,0.433369725942612,-0.901210784912109,-0.00314093194901943,0.433369725942612,-0.901210784912109,-0.00310265459120274,0.431972831487656,-0.901881396770477,-0.00310265459120274,0.431972831487656,-0.901881396770477,-0.00310265459120274,0.431972831487656,-0.901881396770477,-0.00259796599857509,0.41348323225975,-0.910508036613464,-0.00259796599857509,0.41348323225975,-0.910508036613464,-0.00259796599857509,0.41348323225975,-0.910508036613464,-0.00218073045834899,0.398097783327103,-0.917340517044067,-0.00218073045834899,0.398097783327103,-0.917340517044067,-0.00218073045834899,0.398097783327103,-0.917340517044067,-0.00442414963617921,0.415570378303528,-0.909550249576569,-0.00442416314035654,0.418553233146667,-0.908181488513947,-0.00442414963617921,0.415570378303528,-0.909550249576569,-0.00234272470697761,0.418556243181229,-0.908187985420227,-0.00234273029491305,0.415573298931122,-0.909556686878204,-0.00234279944561422,0.425037622451782,-0.905172646045685,0.00101423275191337,0.418557107448578,-0.90818989276886,0.00101422634907067,0.425038576126099,-0.905174672603607,0.00101422634907067,0.425038576126099,-0.905174672603607,-0.005598618183285,0.418550819158554,-0.908176243305206,-0.00559859070926905,0.415567994117737,-0.909545004367828,-0.00559859070926905,0.415567994117737,-0.909545004367828,-0.00251135998405516,0.41557314991951,-0.909556269645691,-0.00251135439611971,0.41855600476265,-0.908187508583069,-0.00251143565401435,0.425037443637848,-0.905172288417816,0.00106647121720016,0.425038605928421,-0.905174732208252,0.00106648448854685,0.418557077646255,-0.90818989276886,
  786. 0.00106647121720016,0.425038605928421,-0.905174732208252,-0.00716895284131169,0.41354164481163,-0.910457015037537,0,0.413553178310394,-0.910479962825775,-0.00716895284131169,0.41354164481163,-0.910457015037537,0,0.4135961830616,-0.910460412502289,-0.00716879544779658,0.413585633039474,-0.910436987876892,0,0.4135961830616,-0.910460412502289,0,0.434977650642395,-0.900441229343414,0.0070899361744523,0.434959888458252,-0.900421917438507,0,0.434977650642395,-0.900441229343414,0.00717699620872736,0.411285102367401,-0.911478519439697,0,0.411301970481873,-0.91149914264679,0.00717699620872736,0.411285102367401,-0.911478519439697,0.000103862170362845,0.402471125125885,-0.915432691574097,9.54025526880287e-005,0.41557377576828,-0.909559488296509,0.000103862170362845,0.402471125125885,-0.915432691574097,-0.000679346558172256,0.402493745088577,-0.91542261838913,-0.000379167264327407,0.41557714343071,-0.9095578789711,-0.000352898554410785,0.418559819459915,-0.908189177513123,0.00217036600224674,0.415558010339737,-0.909564077854156,0.00166522909421474,0.440962105989456,-0.897524178028107,0.00219548493623734,0.418540567159653,-0.908195436000824,-0.000138593997689895,0.418558359146118,-0.908190011978149,0.00049961416516453,0.440921545028687,-0.897545635700226,0.00049961416516453,0.440921545028687,-0.897545635700226,-0.00363010144792497,0.402576386928558,-0.915379226207733,-0.00367993325926363,0.418580889701843,-0.908172070980072,-0.00363010144792497,0.402576386928558,-0.915379226207733,0.00112595304381102,0.418548971414566,-0.908193528652191,0.00086850201478228,0.402448892593384,-0.915442049503326,0.00112595304381102,0.418548971414566,-0.908193528652191,0.000788542907685041,0.418551534414291,-0.908192694187164,0.000519608554895967,0.440922230482101,-0.897545278072357,0.000788542907685041,0.418551534414291,-0.908192694187164,0.0017071635229513,0.440963566303253,-0.897523403167725,0.000763699354138225,0.41855177283287,-0.908192753791809,0.0017071635229513,0.440963566303253,-0.897523403167725,-0.0192181244492531,0.405158668756485,-0.914044499397278,
  787. -0.00400918070226908,0.405098348855972,-0.914264321327209,-0.0192181244492531,0.405158668756485,-0.914044499397278,-0.00400671688839793,0.405315190553665,-0.914168238639832,-0.0192113518714905,0.405338883399963,-0.913964629173279,-0.00400671688839793,0.405315190553665,-0.914168238639832,-0.00333669292740524,0.462732017040253,-0.88649195432663,0.0309566613286734,0.462088286876678,-0.886293470859528,-0.00333669292740524,0.462732017040253,-0.88649195432663,0.0317920707166195,0.444532454013824,-0.895198404788971,-0.00354770105332136,0.444977074861526,-0.895535051822662,0.0317920707166195,0.444532454013824,-0.895198404788971,0.00320077734068036,0.42494535446167,-0.905213356018066,0.00236246595159173,0.408969968557358,-0.912544786930084,0.00320077734068036,0.42494535446167,-0.905213356018066,0.00328348716720939,0.424942940473557,-0.905214309692383,0.00274399295449257,0.408955872058868,-0.912550032138824,0.00274399295449257,0.408955872058868,-0.912550032138824,0.0242894366383553,0.408063262701035,-0.912630498409271,0.0240109506994486,0.394492954015732,-0.918585181236267,0.0242894366383553,0.408063262701035,-0.912630498409271,0.0338564105331898,0.407605886459351,-0.912530124187469,0.0329084768891335,0.393939584493637,-0.918547034263611,0.0329084768891335,0.393939584493637,-0.918547034263611,-0.0175971649587154,0.421852558851242,-0.906493663787842,-0.0043198917992413,0.421629786491394,-0.906757771968842,-0.0175971649587154,0.421852558851242,-0.906493663787842,-0.00431642029434443,0.421741962432861,-0.906705617904663,-0.0175972264260054,0.421965748071671,-0.90644097328186,-0.00431642029434443,0.421741962432861,-0.906705617904663,-0.00378006487153471,0.438972353935242,-0.898492634296417,0.0134549122303724,0.438281059265137,-0.898737251758575,-0.00378006487153471,0.438972353935242,-0.898492634296417,0.0121681457385421,0.420026838779449,-0.907430112361908,-0.00435530627146363,0.420484811067581,-0.907289147377014,0.0121681457385421,0.420026838779449,-0.907430112361908,0.0115510886535048,0.424516558647156,-0.905346512794495,0.0104563115164638,0.408508062362671,-0.912694811820984,
  788. 0.0115510886535048,0.424516558647156,-0.905346512794495,0.0123669626191258,0.408403128385544,-0.912717878818512,0.013184791430831,0.424438118934631,-0.90536093711853,0.0123669626191258,0.408403128385544,-0.912717878818512,0.0245151333510876,0.407700777053833,-0.912786424160004,0.0238808151334524,0.394327133893967,-0.918659806251526,0.0245151333510876,0.407700777053833,-0.912786424160004,0.0375206768512726,0.393367320299149,-0.918615460395813,0.0385258384048939,0.406815469264984,-0.912697613239288,0.0375206768512726,0.393367320299149,-0.918615460395813,-0.999845147132874,-0.0175669174641371,0.00113549269735813,-0.999969303607941,-0.00302630849182606,0.00722608435899019,-0.999689757823944,-0.0248341150581837,-0.00190771173220128,-0.999861180782318,-0.0124499136582017,-0.0110833188518882,-0.999985456466675,0.00209005526266992,-0.0049905413761735,-0.999985456466675,0.00209005526266992,-0.0049905413761735,-0.999999165534973,0.000499845715239644,-0.00119350897148252,-0.999999165534973,0.000499845715239644,-0.00119350897148252,-0.999874889850616,-0.0140414927154779,-0.00728357397019863,-0.999998867511749,0.000585184257943183,-0.00139727629721165,-0.999998867511749,0.000585184257943183,-0.00139727629721165,-0.999998867511749,0.000585184257943183,-0.00139727629721165,-0.999999165534973,-0.000499424000736326,0.00119250069838017,-0.999719619750977,0.0213093962520361,0.0103257028385997,-0.999999165534973,-0.000499424000736326,0.00119250069838017,-0.999719202518463,0.0211766567081213,0.0106426253914833,-0.999998688697815,-0.000632154464256018,0.00150942883919925,-0.999719202518463,0.0211766567081213,0.0106426253914833,0.00243714940734208,0.386292934417725,-0.922372937202454,0.0024374327622354,0.399584293365479,-0.916693329811096,0.00243714940734208,0.386292934417725,-0.922372937202454,-0.00477842567488551,0.386289685964584,-0.922365128993988,-0.00477896817028522,0.399580866098404,-0.916685521602631,-0.00477896817028522,0.399580866098404,-0.916685521602631,0.00176743732299656,0.399584800004959,-0.916694521903992,0.00176722195465118,0.415573805570602,-0.90955775976181,
  789. 0.00176743732299656,0.399584800004959,-0.916694521903992,-0.00790049601346254,0.415561527013779,-0.909530878067017,-0.0079014003276825,0.399572968482971,-0.916667342185974,-0.00790049601346254,0.415561527013779,-0.909530878067017,0.00229505589231849,0.386293083429337,-0.922373235225677,0.00229533365927637,0.399584382772446,-0.916693568229675,0.00229505589231849,0.386293083429337,-0.922373235225677,-0.00374082522466779,0.399582624435425,-0.916689574718475,-0.00374038587324321,0.38629138469696,-0.922369241714478,-0.00374082522466779,0.399582624435425,-0.916689574718475,0.000724974146578461,0.415574342012405,-0.909558951854706,0.000725068792235106,0.399585336446762,-0.916695713996887,0.000725068792235106,0.399585336446762,-0.916695713996887,-0.00757634965702891,0.39957395195961,-0.91666966676712,-0.0075753778219223,0.41556254029274,-0.909533083438873,-0.0075753778219223,0.41556254029274,-0.909533083438873,0,0.383379817008972,-0.923590779304504,-0.00727211637422442,0.383387953042984,-0.92355877161026,0,0.383379817008972,-0.923590779304504,-0.00727105094119906,0.383713692426682,-0.92342346906662,0,0.383705198764801,-0.923455655574799,-0.00727105094119906,0.383713692426682,-0.92342346906662,-0.00712521467357874,0.425559759140015,-0.904902279376984,-0.0175990276038647,0.425530850887299,-0.904772758483887,-0.00712521467357874,0.425559759140015,-0.904902279376984,-0.0175823625177145,0.402149826288223,-0.915405035018921,-0.00720892008394003,0.402178525924683,-0.915532886981964,-0.0175823625177145,0.402149826288223,-0.915405035018921,-0.00727128563448787,0.383642047643662,-0.923453271389008,0,0.38365039229393,-0.923478424549103,-0.00727128563448787,0.383642047643662,-0.923453271389008,0,0.382943540811539,-0.923771739006042,-0.00727359810844064,0.382934302091599,-0.923746943473816,0,0.382943540811539,-0.923771739006042,0,0.426019191741943,-0.904714107513428,0.00712356809526682,0.426004141569138,-0.904693186283112,0,0.426019191741943,-0.904714107513428,0.00720819272100925,0.40238881111145,-0.915440499782562,0,0.402402937412262,-0.915462672710419,
  790. 0.00720819272100925,0.40238881111145,-0.915440499782562,-0.00513809127733111,0.39494714140892,-0.918689489364624,-0.0041235638782382,0.394985496997833,-0.918678104877472,-0.00513809127733111,0.39494714140892,-0.918689489364624,-0.00412844913080335,0.394551515579224,-0.918864548206329,-0.00515024969354272,0.394547015428543,-0.918861329555511,-0.00412844913080335,0.394551515579224,-0.918864548206329,-0.00366159854456782,0.435269683599472,-0.900292694568634,0.000477130379294977,0.435053378343582,-0.900404512882233,-0.00366159854456782,0.435269683599472,-0.900292694568634,0.00112810742575675,0.418329834938049,-0.908294498920441,-0.0038572286721319,0.418390870094299,-0.90825891494751,0.00112810742575675,0.418329834938049,-0.908294498920441,0.0053568840958178,0.418551325798035,-0.908177375793457,0.00537640368565917,0.418744087219238,-0.908088386058807,0.0053568840958178,0.418551325798035,-0.908177375793457,0.0053078280761838,0.418551415205002,-0.908177614212036,0.00535724079236388,0.418743431568146,-0.908088803291321,0.00535724079236388,0.418743431568146,-0.908088803291321,0.00191917864140123,0.418625384569168,-0.908156991004944,0.00265242182649672,0.418746143579483,-0.908099591732025,0.00191917864140123,0.418625384569168,-0.908156991004944,0.00257309642620385,0.418740481138229,-0.908102333545685,0.0031021514441818,0.418666571378708,-0.908134698867798,0.00257309642620385,0.418740481138229,-0.908102333545685,-0.0012663648230955,0.418556988239288,-0.908189654350281,-0.001252795686014,0.418512135744095,-0.908210456371307,-0.0012663648230955,0.418556988239288,-0.908189654350281,-0.00118412834126502,0.418514579534531,-0.908209323883057,-0.00121369888074696,0.418557018041611,-0.908189713954926,-0.00118412834126502,0.418514579534531,-0.908209323883057,-0.00216008769348264,0.418478935956955,-0.908224046230316,-0.00141768506728113,0.418455213308334,-0.90823632478714,-0.00216008769348264,0.418478935956955,-0.908224046230316,-0.000752421969082206,0.418530285358429,-0.908202648162842,-0.00124074320774525,0.418467998504639,-0.908230721950531,
  791. -0.00124074320774525,0.418467998504639,-0.908230721950531,-0.0112528521567583,0.427550613880157,-0.903921365737915,-0.0104843443259597,0.427608340978622,-0.903903424739838,-0.0104843443259597,0.427608340978622,-0.903903424739838,-0.0104836467653513,0.427440404891968,-0.903982758522034,-0.0112590286880732,0.427373111248016,-0.904005348682404,-0.0112590286880732,0.427373111248016,-0.904005348682404,-0.0126432133838534,0.38683357834816,-0.922062873840332,-0.00468766409903765,0.38668367266655,-0.922200620174408,-0.0126432133838534,0.38683357834816,-0.922062873840332,-0.00313296960666776,0.406979948282242,-0.913431704044342,-0.0119462618604302,0.40743225812912,-0.913157284259796,-0.00313296960666776,0.406979948282242,-0.913431704044342,-0.0028109448030591,0.425037115812302,-0.905171573162079,-0.00307183410041034,0.418643474578857,-0.908145487308502,-0.0028109448030591,0.425037115812302,-0.905171573162079,-0.00146231334656477,0.42503833770752,-0.905174195766449,-0.00173649133648723,0.418606489896774,-0.90816605091095,-0.00173649133648723,0.418606489896774,-0.90816605091095,0.000467563833808526,0.418543845415115,-0.908196449279785,-0.000356979813659564,0.412034422159195,-0.911168217658997,0.000467563833808526,0.418543845415115,-0.908196449279785,-0.000349930603988469,0.412034004926682,-0.91116851568222,-0.000661616621073335,0.418576210737228,-0.908181428909302,-0.000349930603988469,0.412034004926682,-0.91116851568222,0.00260555627755821,0.43838369846344,-0.898784160614014,-0.000840787135530263,0.438650637865067,-0.898657262325287,0.00260555627755821,0.43838369846344,-0.898784160614014,-0.00143784598913044,0.432544976472855,-0.90161120891571,0.00195877952501178,0.432310789823532,-0.901722550392151,-0.00143784598913044,0.432544976472855,-0.90161120891571,-0.00581029057502747,0.387198358774185,-0.921978116035461,-0.0118626710027456,0.387738317251205,-0.92169314622879,-0.00581029057502747,0.387198358774185,-0.921978116035461,-0.0111573804169893,0.396583378314972,-0.917930901050568,-0.00495747942477465,0.396130442619324,-0.918180882930756,
  792. -0.0111573804169893,0.396583378314972,-0.917930901050568,0.00750252511352301,0.402950584888458,-0.915191113948822,0.00639348477125168,0.418869733810425,-0.908023834228516,0.00750252511352301,0.402950584888458,-0.915191113948822,-0.00603008642792702,0.402074694633484,-0.91558700799942,-0.00692848395556211,0.418199390172958,-0.908328831195831,-0.00692848395556211,0.418199390172958,-0.908328831195831,-0.0071610133163631,0.418187081813812,-0.908332824707031,-0.00764724565669894,0.424699425697327,-0.905302107334137,-0.0071610133163631,0.418187081813812,-0.908332824707031,-0.00793423783034086,0.424686193466187,-0.905305862426758,-0.00763222435489297,0.418161898851395,-0.908340454101563,-0.00793423783034086,0.424686193466187,-0.905305862426758,-0.00320781301707029,0.395367980003357,-0.918517231941223,-0.000105943508970086,0.395542532205582,-0.91844767332077,-0.00320781301707029,0.395367980003357,-0.918517231941223,-9.01202511158772e-005,0.395300179719925,-0.918551981449127,-0.00318855256773531,0.395104736089706,-0.918630540370941,-9.01202511158772e-005,0.395300179719925,-0.918551981449127,-0.00310275028459728,0.440947413444519,-0.897527575492859,0.00382526661269367,0.441260695457459,-0.8973708152771,-0.00310275028459728,0.440947413444519,-0.897527575492859,0.00456650322303176,0.426653146743774,-0.904403924942017,-0.00212899409234524,0.426302403211594,-0.90457820892334,0.00456650322303176,0.426653146743774,-0.904403924942017,-0.00752163305878639,0.439575016498566,-0.898174405097961,-0.00407487247139215,0.439379990100861,-0.898292183876038,-0.00752163305878639,0.439575016498566,-0.898174405097961,-0.00409447494894266,0.439101904630661,-0.898427963256836,-0.00754093052819371,0.439267009496689,-0.898325026035309,-0.00409447494894266,0.439101904630661,-0.898427963256836,-0.00861990638077259,0.373631536960602,-0.927537262439728,-0.00134334096219391,0.373229950666428,-0.927738010883331,-0.00861990638077259,0.373631536960602,-0.927537262439728,0.000422649580286816,0.400387674570084,-0.916345775127411,-0.00676313322037458,0.400805085897446,-0.916138410568237,
  793. 0.000422649580286816,0.400387674570084,-0.916345775127411,-0.000807348289526999,0.409067362546921,-0.912503838539124,-0.000766625336837024,0.409044772386551,-0.912513971328735,-0.000807348289526999,0.409067362546921,-0.912503838539124,0.00094280787743628,0.409069240093231,-0.912502884864807,0.00110175285954028,0.409039825201035,-0.912515878677368,0.00094280787743628,0.409069240093231,-0.912502884864807,0.00161663582548499,0.409078568220139,-0.912497758865356,-1.77324491232866e-005,0.412009984254837,-0.91117936372757,0.00161663582548499,0.409078568220139,-0.912497758865356,-0.00120395899284631,0.409038305282593,-0.912516415119171,0.000322160340147093,0.41203448176384,-0.911168217658997,0.000322160340147093,0.41203448176384,-0.911168217658997,0.00162374053616077,0.405494302511215,-0.914096117019653,-0.00556626217439771,0.405273467302322,-0.914178550243378,0.00162374053616077,0.405494302511215,-0.914096117019653,-0.00558021897450089,0.405672341585159,-0.914001524448395,0.00160869595129043,0.405885219573975,-0.913922667503357,-0.00558021897450089,0.405672341585159,-0.914001524448395,-0.0068780891597271,0.442557722330093,-0.896713614463806,-0.0068780891597271,0.442557722330093,-0.896713614463806,-0.0068780891597271,0.442557722330093,-0.896713614463806,-0.00623980769887567,0.424469113349915,-0.905420899391174,-0.00623980769887567,0.424469113349915,-0.905420899391174,-0.00623980769887567,0.424469113349915,-0.905420899391174,0.00622634263709188,0.40264630317688,-0.915334582328796,0.00567054469138384,0.418713271617889,-0.908100783824921,0.00622634263709188,0.40264630317688,-0.915334582328796,-0.00692896079272032,0.418348520994186,-0.90826028585434,-0.00637008436024189,0.402281939983368,-0.915493786334991,-0.00692896079272032,0.418348520994186,-0.90826028585434,-0.0124041168019176,0.44051930308342,-0.897657454013824,-0.0116275884211063,0.418195396661758,-0.908282697200775,-0.0116275884211063,0.418195396661758,-0.908282697200775,-0.0114710377529264,0.418200701475143,-0.908282339572906,-0.0122499261051416,0.440524488687515,-0.897657036781311,
  794. -0.0122499261051416,0.440524488687515,-0.897657036781311,0.0118681145831943,0.402788728475571,-0.915216028690338,0.0113130528479815,0.41885507106781,-0.907982647418976,0.0118681145831943,0.402788728475571,-0.915216028690338,-7.34321001800708e-005,0.402472019195557,-0.915432274341583,-0.000630350725259632,0.418539136648178,-0.908198535442352,-0.000630350725259632,0.418539136648178,-0.908198535442352,-0.00829416420310736,0.418304949998856,-0.908268809318542,-0.00907216314226389,0.44062927365303,-0.897643327713013,-0.00829416420310736,0.418304949998856,-0.908268809318542,-0.00816015433520079,0.440658509731293,-0.897637724876404,-0.00738071277737617,0.418334156274796,-0.908263206481934,-0.00816015433520079,0.440658509731293,-0.897637724876404,0.0111171836033463,0.418451726436615,-0.908170998096466,0.0114123066887259,0.425498902797699,-0.904886960983276,0.0114123066887259,0.425498902797699,-0.904886960983276,0.0113696744665504,0.425497263669968,-0.904888272285461,0.0119046131148934,0.418442279100418,-0.908165395259857,0.0119046131148934,0.418442279100418,-0.908165395259857,0.0202221497893333,0.418326675891876,-0.908071517944336,0.0212998650968075,0.407433599233627,-0.912986516952515,0.0202221497893333,0.418326675891876,-0.908071517944336,0.0208993256092072,0.407465845346451,-0.912981390953064,0.0221194736659527,0.418296247720718,-0.908041298389435,0.0208993256092072,0.407465845346451,-0.912981390953064,-0.0154267493635416,0.391839444637299,-0.919904291629791,-0.00510898232460022,0.392178863286972,-0.919874787330627,-0.0154267493635416,0.391839444637299,-0.919904291629791,-0.015429800376296,0.391916930675507,-0.919871211051941,-0.00511208036914468,0.392267763614655,-0.91983687877655,-0.00511208036914468,0.392267763614655,-0.91983687877655,-0.00723814032971859,0.452717185020447,-0.891624927520752,0.0103499218821526,0.453201413154602,-0.89134806394577,-0.00723814032971859,0.452717185020447,-0.891624927520752,0.0109732234850526,0.435559779405594,-0.900092899799347,-0.00661356933414936,0.435073494911194,-0.900370657444,0.0109732234850526,0.435559779405594,-0.900092899799347,
  795. 0.00823252741247416,0.419430017471313,-0.907750368118286,-0.000540218665264547,0.419559955596924,-0.907727479934692,0.00823252741247416,0.419430017471313,-0.907750368118286,-0.000631581584457308,0.41484147310257,-0.90989351272583,0.00843887776136398,0.414554625749588,-0.909985303878784,-0.000631581584457308,0.41484147310257,-0.90989351272583,-0.00115921325050294,0.387354850769043,-0.921929955482483,-0.0160403270274401,0.387999773025513,-0.921519875526428,-0.00115921325050294,0.387354850769043,-0.921929955482483,-0.0152106676250696,0.397120803594589,-0.917640268802643,-0.000974413123913109,0.397027611732483,-0.917806148529053,-0.0152106676250696,0.397120803594589,-0.917640268802643,-0.00516689708456397,0.393998950719833,-0.919096350669861,-0.00413411809131503,0.39404770731926,-0.919080674648285,-0.00516689708456397,0.393998950719833,-0.919096350669861,-0.00413902616128325,0.393611431121826,-0.91926771402359,-0.00517903780564666,0.393599152565002,-0.919267594814301,-0.00413902616128325,0.393611431121826,-0.91926771402359,-0.00362495495937765,0.438402265310287,-0.898771524429321,0.000355350639438257,0.438164889812469,-0.898894548416138,-0.00362495495937765,0.438402265310287,-0.898771524429321,0.00100477249361575,0.421510070562363,-0.90682315826416,-0.00382049288600683,0.421580404043198,-0.906782984733582,0.00100477249361575,0.421510070562363,-0.90682315826416,-0.00420992216095328,0.425179481506348,-0.905099272727966,-0.0104749826714396,0.425358384847641,-0.90496438741684,-0.0104749826714396,0.425358384847641,-0.90496438741684,-0.0104748038575053,0.425315648317337,-0.904984474182129,-0.00421153381466866,0.425127595663071,-0.905123770236969,-0.00421153381466866,0.425127595663071,-0.905123770236969,-0.00525505328550935,0.391093403100967,-0.920336008071899,0.00289206858724356,0.391048669815063,-0.920365452766418,-0.00525505328550935,0.391093403100967,-0.920336008071899,0.00436943117529154,0.411191701889038,-0.911538541316986,-0.00463230581954122,0.41149827837944,-0.911398768424988,0.00436943117529154,0.411191701889038,-0.911538541316986,
  796. -0.00851504877209663,0.425023376941681,-0.905142307281494,-0.00867315102368593,0.418790370225906,-0.908041536808014,-0.00851504877209663,0.425023376941681,-0.905142307281494,-0.00899275671690702,0.418798357248306,-0.90803474187851,-0.00882092490792274,0.42502224445343,-0.905139923095703,-0.00899275671690702,0.418798357248306,-0.90803474187851,0.00952775869518518,0.417923182249069,-0.908432424068451,0.0100971208885312,0.418246269226074,-0.908277571201324,0.0100971208885312,0.418246269226074,-0.908277571201324,0.00563361588865519,0.418389052152634,-0.908250451087952,0.00624380260705948,0.418146073818207,-0.908358335494995,0.00624380260705948,0.418146073818207,-0.908358335494995,-0.00221357843838632,0.425037741661072,-0.905172944068909,-0.00240087695419788,0.418624967336655,-0.908156037330627,-0.00221357843838632,0.425037741661072,-0.905172944068909,-0.00226858351379633,0.425037682056427,-0.905172824859619,-0.00246724602766335,0.418626815080643,-0.908155024051666,-0.00246724602766335,0.418626815080643,-0.908155024051666,0.0108620915561914,0.418220967054367,-0.908280372619629,0.0103403637185693,0.417867332696915,-0.908449232578278,0.0108620915561914,0.418220967054367,-0.908280372619629,0.0123555166646838,0.417727649211884,-0.908488273620605,0.0117429010570049,0.418191522359848,-0.908282995223999,0.0123555166646838,0.417727649211884,-0.908488273620605,0.00697021139785647,0.445160180330276,-0.895423829555511,-0.00360827683471143,0.445511192083359,-0.895269095897675,0.00697021139785647,0.445160180330276,-0.895423829555511,-0.0039769047871232,0.438283413648605,-0.898828029632568,0.00671042362228036,0.437815874814987,-0.899039745330811,-0.0039769047871232,0.438283413648605,-0.898828029632568,-0.00702982721850276,0.377124071121216,-0.926136195659637,-0.015648640692234,0.377445697784424,-0.925899505615234,-0.00702982721850276,0.377124071121216,-0.926136195659637,-0.0150378653779626,0.386007905006409,-0.922372877597809,-0.00661545852199197,0.385562211275101,-0.922658145427704,-0.0150378653779626,0.386007905006409,-0.922372877597809,
  797. 0.00246476917527616,0.404988318681717,-0.914318561553955,0.000819296867121011,0.405108660459518,-0.91426819562912,0.00246476917527616,0.404988318681717,-0.914318561553955,0.000706758874002844,0.41094970703125,-0.911657750606537,0.00211338303051889,0.411067932844162,-0.911602377891541,0.000706758874002844,0.41094970703125,-0.911657750606537,0.000519122928380966,0.420647650957108,-0.90722393989563,0.00279298704117537,0.420643717050552,-0.907221734523773,0.000519122928380966,0.420647650957108,-0.90722393989563,0.00255619059316814,0.411946892738342,-0.911204397678375,0.000685047707520425,0.412074446678162,-0.911149919033051,0.00255619059316814,0.411946892738342,-0.911204397678375,0.999781370162964,0.0209094528108835,0.00021181111515034,0.999812424182892,0.0178642477840185,0.00748160807415843,0.999781370162964,0.0209094528108835,0.00021181111515034,0.999870121479034,0.01487070415169,0.00622790213674307,0.999839067459106,0.0179158840328455,-0.0010423994390294,0.999870121479034,0.01487070415169,0.00622790213674307,0.999995112419128,-0.00291309924796224,-0.00122001604177058,0.999995112419128,-0.00291309924796224,-0.00122001604177058,0.999995112419128,-0.00291309924796224,-0.00122001604177058,0.999992787837982,-0.00351021368987858,-0.00147008954081684,0.999992787837982,-0.00351021368987858,-0.00147008954081684,0.999992787837982,-0.00351021368987858,-0.00147008954081684,0.999745070934296,0.0225609485059977,0.000903773354366422,0.999776124954224,0.0195158943533897,0.00817332323640585,0.999745070934296,0.0225609485059977,0.000903773354366422,0.999780058860779,0.0193446353077888,0.00810159929096699,0.999749004840851,0.0223894100636244,0.000831898709293455,0.999780058860779,0.0193446353077888,0.00810159929096699,0.999994277954102,-0.00314841675572097,-0.00131856766529381,0.999994277954102,-0.00314841675572097,-0.00131856766529381,0.999994277954102,-0.00314841675572097,-0.00131856766529381,0.999994337558746,-0.00310574402101338,-0.00130069628357887,0.999994337558746,-0.00310574402101338,-0.00130069628357887,0.999994337558746,-0.00310574402101338,-0.00130069628357887,
  798. 0.999720394611359,0.0219536367803812,0.00878746155649424,0.999999940395355,0.000144970559631474,-0.000346155313309282,0.999720394611359,0.0219536367803812,0.00878746155649424,0.999999582767487,0.000361620128387585,-0.000863461289554834,0.999720096588135,0.0221702624112368,0.00827019568532705,0.999999582767487,0.000361620128387585,-0.000863461289554834,0.9999680519104,-0.00778006948530674,-0.00183061067946255,0.999999225139618,-0.000508698867633939,0.0012146484805271,0.999999225139618,-0.000508698867633939,0.0012146484805271,0.999999642372131,-0.000366001535439864,0.000873922312166542,0.999968469142914,-0.00763736991211772,-0.00217135064303875,0.999968469142914,-0.00763736991211772,-0.00217135064303875,0.999709129333496,0.0199621059000492,0.0135420598089695,0.999988675117493,-0.00184668926522136,0.00440944032743573,0.999709129333496,0.0199621059000492,0.0135420598089695,0.999996244907379,0.00105631991755217,-0.00252223433926702,0.999716818332672,0.0228648111224175,0.00661158328875899,0.999996244907379,0.00105631991755217,-0.00252223433926702,0.999999403953552,-0.00045582273742184,0.00108839315362275,0.999968230724335,-0.00772719364613295,-0.00195686821825802,0.999999403953552,-0.00045582273742184,0.00108839315362275,0.999968767166138,-0.00749731622636318,-0.00250576972030103,0.999999821186066,-0.000225946481805295,0.000539505097549409,0.999968767166138,-0.00749731622636318,-0.00250576972030103,-0.999696135520935,0.0227371826767921,0.00952241010963917,-0.999665021896362,0.0196933075785637,0.016791770234704,-0.999665021896362,0.0196933075785637,0.016791770234704,-0.999650120735168,0.0202450565993786,0.0170227158814669,-0.999681293964386,0.0232888758182526,0.00975346099585295,-0.999681293964386,0.0232888758182526,0.00975346099585295,-0.999979555606842,-0.00589912384748459,-0.00247057317756116,-0.999979555606842,-0.00589912384748459,-0.00247057317756116,-0.999979555606842,-0.00589912384748459,-0.00247057317756116,-0.999979555606842,-0.0058978172019124,-0.00247002602554858,-0.999979555606842,-0.0058978172019124,-0.00247002602554858,
  799. -0.999979555606842,-0.0058978172019124,-0.00247002602554858,-0.999552249908447,0.0235836803913116,0.0184201058000326,-0.999583303928375,0.0266257207840681,0.0111509431153536,-0.999583303928375,0.0266257207840681,0.0111509431153536,-0.999586939811707,0.0265089496970177,0.0111020393669605,-0.999555826187134,0.0234668869525194,0.0183712244033813,-0.999555826187134,0.0234668869525194,0.0183712244033813,-0.999858379364014,-0.0167599823325872,0.00152665970381349,-0.999889433383942,-0.0137154646217823,-0.00574408378452063,-0.999858379364014,-0.0167599823325872,0.00152665970381349,-0.99988853931427,-0.013777069747448,-0.00576988374814391,-0.999857485294342,-0.0168216023594141,0.00150084577035159,-0.99988853931427,-0.013777069747448,-0.00576988374814391,-0.999723672866821,0.0173839014023542,0.0158250834792852,-0.999754726886749,0.020428104326129,0.00855536013841629,-0.999723672866821,0.0173839014023542,0.0158250834792852,-0.999756217002869,0.0203697700053453,0.00853092968463898,-0.999725043773651,0.0173256061971188,0.0158006809651852,-0.999756217002869,0.0203697700053453,0.00853092968463898,-0.999990463256836,-0.00403341045603156,-0.00168920611031353,-0.999990463256836,-0.00403341045603156,-0.00168920611031353,-0.999990463256836,-0.00403341045603156,-0.00168920611031353,-0.999995410442352,-0.00282581732608378,-0.00118346197996289,-0.999995410442352,-0.00282581732608378,-0.00118346197996289,-0.999995410442352,-0.00282581732608378,-0.00118346197996289,0.99978095293045,0.0209292136132717,0.000220090048969723,0.999812006950378,0.0178840085864067,0.00748988380655646,0.99978095293045,0.0209292136132717,0.000220090048969723,0.999867022037506,0.0150474086403847,0.00630190642550588,0.999835848808289,0.0180925782769918,-0.000968371401540935,0.999867022037506,0.0150474086403847,0.00630190642550588,0.999997138977051,-0.00220732693560421,-0.000924436142668128,0.999997138977051,-0.00220732693560421,-0.000924436142668128,0.999997138977051,-0.00220732693560421,-0.000924436142668128,0.999988794326782,-0.00436967378482223,-0.00183003430720419,
  800. 0.999988794326782,-0.00436967378482223,-0.00183003430720419,0.999988794326782,-0.00436967378482223,-0.00183003430720419,0.999745070934296,0.0225608497858047,0.000903731444850564,0.999776124954224,0.0195157937705517,0.00817328132688999,0.999745070934296,0.0225608497858047,0.000903731444850564,0.999780058860779,0.019344724714756,0.00810163747519255,0.999749004840851,0.0223894994705915,0.000831936311442405,0.999780058860779,0.019344724714756,0.00810163747519255,0.999994277954102,-0.00314830127172172,-0.00131851935293525,0.999994277954102,-0.00314830127172172,-0.00131851935293525,0.999994277954102,-0.00314830127172172,-0.00131851935293525,0.999994337558746,-0.00310568511486053,-0.00130067160353065,0.999994337558746,-0.00310568511486053,-0.00130067160353065,0.999994337558746,-0.00310568511486053,-0.00130067160353065,0.999720394611359,0.0219544917345047,0.00878542196005583,0.999999940395355,0.000145824989886023,-0.000348195491824299,0.999720394611359,0.0219544917345047,0.00878542196005583,0.999999582767487,0.000361618614988402,-0.000863457680679858,0.999720096588135,0.0221702605485916,0.00827019941061735,0.999999582767487,0.000361618614988402,-0.000863457680679858,0.999968707561493,-0.00751903606578708,-0.00245390739291906,0.999999821186066,-0.000247663730988279,0.000591360498219728,0.999999821186066,-0.000247663730988279,0.000591360498219728,0.999999642372131,-0.000366241758456454,0.000874495832249522,0.999968469142914,-0.00763761019334197,-0.00217077718116343,0.999968469142914,-0.00763761019334197,-0.00217077718116343,0.999719142913818,0.0211645513772964,0.0106715308502316,0.99999862909317,-0.00064423686126247,0.00153827865142375,0.999719142913818,0.0211645513772964,0.0106715308502316,0.999996244907379,0.00105632527265698,-0.00252224691212177,0.999716818332672,0.0228648148477077,0.00661157071590424,0.999996244907379,0.00105632527265698,-0.00252224691212177,0.999999284744263,-0.000463135773316026,0.00110585486982018,0.999968230724335,-0.00773450685665011,-0.0019394060363993,0.999999284744263,-0.000463135773316026,0.00110585486982018,
  801. 0.999968767166138,-0.00749755231663585,-0.0025052058044821,0.999999821186066,-0.000226182717597112,0.00054006912978366,0.999968767166138,-0.00749755231663585,-0.0025052058044821
  802. }
  803. TangentsW: *1296 {
  804. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  805. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  806. }
  807. }
  808. LayerElementTangent: 1 {
  809. Version: 102
  810. Name: "LightMapUV"
  811. MappingInformationType: "ByPolygonVertex"
  812. ReferenceInformationType: "Direct"
  813. Tangents: *3888 {
  814. a: -0.00787376426160336,-0.9999680519104,-0.001453259261325,0.00787376519292593,-0.9999680519104,-0.00145432108547539,-0.00787376426160336,-0.9999680519104,-0.001453259261325,-0.00787264946848154,-0.999826431274414,0.0168854966759682,0.00787265039980412,-0.999826610088348,0.016875434666872,0.0157438386231661,-0.999733686447144,0.0168719757348299,-0.998842418193817,0.00673978496342897,-0.047630038112402,-0.998795747756958,-0.00824535079300404,-0.0483637079596519,-0.998842418193817,0.00673978496342897,-0.047630038112402,-0.99995368719101,0.00800044648349285,0.00536781828850508,-0.999948382377625,-0.00782252755016088,0.0064872968941927,-0.999855518341064,-0.0156941954046488,0.00654706824570894,-0.00787287671118975,0.99985533952713,-0.0150774661451578,0.00787287577986717,0.999855220317841,-0.0150861386209726,-0.0157442893832922,0.999762415885925,-0.0150745352730155,0.00787377078086138,0.999968886375427,0.000471324950922281,-0.00787377171218395,0.999968886375427,0.000471677980385721,0.00787377078086138,0.999968886375427,0.000471324950922281,0.999968945980072,-0.00787826627492905,-0.000190175531315617,0.999875903129578,0.0157495141029358,0.000434450659668073,0.999968945980072,-0.00787826627492905,-0.000190175531315617,0.99993896484375,-0.00805220007896423,-0.00756357936188579,0.999841272830963,0.0156788714230061,-0.00846530683338642,0.999841272830963,0.0156788714230061,-0.00846530683338642,0.999255180358887,0.023843364790082,0.0303417462855577,0.999371111392975,0.0167229790240526,0.0312690660357475,0.999267816543579,0.0236047450453043,0.0301101058721542,0.999876260757446,0.0157304778695107,-0.000495448126457632,0.999721229076386,0.0236139986664057,-0.000185936994967051,0.999876260757446,0.0157304778695107,-0.000495448126457632,0.971151649951935,-0.133834213018417,-0.197364881634712,0.996370017528534,-0.0560326986014843,0.0640870928764343,0.993029415607452,0.0307100415229797,-0.11379562318325,0.994163632392883,0.0423184037208557,-0.0992364212870598,0.997166335582733,-0.039929885417223,0.0637568756937981,
  815. 0.996640741825104,-0.0817880257964134,0.00426558731123805,-0.997246205806732,-0.0224870704114437,0.0706709995865822,-0.997222304344177,0.0370495691895485,-0.0646157786250114,-0.996695578098297,-0.0331109091639519,-0.0741730108857155,-0.997486650943756,0.0514937490224838,-0.0486701987683773,-0.997497141361237,-0.0016587640857324,0.070688784122467,-0.994758248329163,-0.0864626988768578,0.0545914694666862,0.962168872356415,-0.200537532567978,-0.184433683753014,0.995341062545776,-0.0898797735571861,0.0348996445536613,0.991287887096405,0.00574130192399025,-0.131588041782379,0.992444813251495,0.0112256975844502,-0.122177392244339,0.995988786220551,-0.0829858034849167,0.0334645807743073,0.989473521709442,-0.141399264335632,-0.030799513682723,-0.997364103794098,-0.0682492256164551,0.0246345736086369,-0.99738073348999,-0.0281269103288651,-0.0666376352310181,-0.991005301475525,-0.0808616504073143,-0.10662966966629,-0.998326361179352,-0.0177271943539381,-0.0550477989017963,-0.998271703720093,-0.0534525774419308,0.0244229938834906,-0.991824805736542,-0.125181719660759,0.0247613023966551,0.967774868011475,-0.159650757908821,-0.194739446043968,0.997351229190826,-0.0223592258989811,0.0692137852311134,0.988460004329681,0.097419798374176,-0.116001695394516,0.989090144634247,0.10398880392313,-0.104341872036457,0.997641563415527,-0.0134876361116767,0.0673007965087891,0.995410442352295,-0.0948364585638046,0.0128121441230178,-0.986284792423248,-0.165047407150269,0.00129958661273122,-0.98603767156601,-0.11030501127243,-0.124749712646008,-0.971974074840546,-0.177125185728073,-0.154573798179626,-0.989137411117554,-0.0973692983388901,-0.110120043158531,-0.989304184913635,-0.145862698554993,0.00114852574188262,-0.973977863788605,-0.226274266839027,-0.0129250902682543,-0.143418237566948,-0.63409161567688,-0.759841442108154,-0.401854813098907,-0.413867145776749,-0.816839456558228,-0.111996449530125,-0.992917656898499,0.0396403931081295,-0.0941319391131401,-0.994866907596588,0.0371347293257713,-0.17616493999958,-0.984360337257385,0.000815248407889158,
  816. -0.123968869447708,-0.636977970600128,-0.760848701000214,0.994985520839691,-0.0316482484340668,0.0948798358440399,0.956007242202759,0.293238610029221,0.00782840605825186,0.997447073459625,0.0344325713813305,-0.062560185790062,0.997889816761017,0.0167752169072628,-0.062727116048336,0.975381791591644,0.142458617687225,0.168332874774933,0.995716750621796,-0.0437211990356445,0.0814653858542442,0.998140811920166,-0.0295107401907444,0.0533314496278763,0.9970463514328,0.016164492815733,-0.0750820115208626,0.991212666034698,0.0961243957281113,0.0908710658550262,0.997615516185761,0.00182419142220169,-0.0689925998449326,0.998693585395813,-0.0365608669817448,0.0357016958296299,0.988668501377106,0.149175137281418,-0.0167753919959068,-0.997271955013275,-0.0391423925757408,0.0625823810696602,-0.99528306722641,0.0966896489262581,0.00793364644050598,-0.999474048614502,0.00708070630207658,-0.0316467583179474,-0.999500155448914,-0.00377138378098607,-0.0313912332057953,-0.997462511062622,0.0062173786573112,0.0709219947457314,-0.997482597827911,-0.0503182299435139,0.0499656088650227,-0.0767656490206718,-0.997037529945374,0.00483564892783761,-0.062605082988739,-0.673237323760986,-0.736771404743195,-0.165576115250587,-0.981894910335541,0.0920161679387093,0.0394687242805958,-0.68114697933197,-0.731082081794739,0.0267196018248796,-0.999641537666321,-0.0016831069951877,-0.0691237449645996,-0.592462956905365,-0.80262678861618,-0.986950159072876,0.158292159438133,-0.0295457616448402,-0.963593304157257,0.185418322682381,0.192634299397469,-0.985594213008881,0.0793589130043983,0.14935328066349,-0.986242175102234,0.162617206573486,-0.0296993143856525,-0.985319018363953,0.0803789123892784,0.150617569684982,-0.965063273906708,0.260833948850632,0.0248701702803373,0.972832500934601,-0.12723733484745,-0.193410471081734,0.997084558010101,-0.0520702041685581,0.0557774193584919,0.993418276309967,0.0343123264610767,-0.109283313155174,0.994337916374207,0.0444942153990269,-0.0965016335248947,0.997753858566284,-0.0373869724571705,0.0555830784142017,0.996821880340576,-0.0793631970882416,0.00690463604405522,
  817. -0.997254848480225,-0.0215514954179525,0.0708412975072861,-0.997252464294434,0.0379591174423695,-0.0636131167411804,-0.996696352958679,-0.0330725386738777,-0.0741795226931572,-0.997483849525452,0.0506397113204002,-0.0496143698692322,-0.997489631175995,-0.00369843584485352,0.0707173645496368,-0.994756698608398,-0.0869472399353981,0.0538468025624752,0.971127212047577,-0.170578822493553,-0.16677762567997,0.996816515922546,-0.0608228221535683,0.0515506416559219,0.992970108985901,0.0304605048149824,-0.114379055798054,0.993725895881653,0.0358137004077435,-0.105954013764858,0.997099876403809,-0.0566962882876396,0.0507696866989136,0.99306732416153,-0.117190040647984,-0.00915477983653545,-0.993805050849915,-0.0898762568831444,-0.0653744712471962,-0.992645859718323,-0.12073690444231,0.00876679364591837,-0.981417417526245,-0.191639631986618,0.00970346946269274,-0.990517199039459,-0.137101739645004,0.00887888949364424,-0.991922318935394,-0.10053301602602,-0.077351413667202,-0.981536567211151,-0.149262830615044,-0.119610190391541,0.998709201812744,0.0191707704216242,0.0470363758504391,0.946020543575287,0.30930832028389,-0.0968178287148476,0.993971168994904,0.0730244442820549,-0.0817843973636627,0.999856412410736,-0.00797484070062637,0.0149530870839953,0.996401846408844,0.0274996999651194,-0.0801707655191422,0.995043516159058,0.0301297325640917,0.0947660505771637,0.99577009677887,-0.0276274252682924,0.0876276567578316,0.958141565322876,0.286103904247284,0.010455884039402,0.997506022453308,0.0326459594070911,-0.0625779703259468,0.997891306877136,0.0166763495653868,-0.0627279877662659,0.977027356624603,0.139583334326744,0.161041095852852,0.99639767408371,-0.0384586304426193,0.0755817368626595,0.996895670890808,-0.0719556361436844,0.0319598950445652,0.994608402252197,-0.026573408395052,-0.100239761173725,0.994660258293152,0.0635566115379334,0.0813115760684013,0.994713008403778,-0.039182934910059,-0.0949250459671021,0.996813952922821,-0.0784631371498108,0.0143415089696646,0.990881741046906,0.125289738178253,-0.0495567508041859,-0.9834805727005,-0.105059519410133,-0.14740589261055,
  818. -0.994438827037811,0.0374222211539745,0.0984428077936172,-0.997540593147278,0.0689594224095345,0.0125537505373359,-0.99744701385498,0.0699388533830643,0.0144241154193878,-0.994574069976807,0.03166114538908,0.09909687936306,-0.993695020675659,-0.0598068162798882,0.0948331356048584,-0.0190989505499601,-0.663297772407532,-0.748111844062805,0.204982727766037,-0.160355940461159,-0.965540289878845,0.00326133938506246,-0.999713480472565,0.023718012496829,-0.0135325975716114,-0.999639570713043,0.0231873244047165,0.0508511774241924,-0.989075839519501,0.138358816504478,-0.0309011582285166,-0.663728773593903,-0.747334778308868,-0.979763031005859,0.19230780005455,-0.0555169247090817,-0.987791895866394,0.126524224877357,0.0908789187669754,-0.967580020427704,0.252083748579025,-0.0155782354995608,-0.987884759902954,0.126116588711739,0.090433768928051,-0.979930996894836,0.191449299454689,-0.0555194243788719,-0.96842747926712,0.202902674674988,0.144840374588966,-0.0235774498432875,0.999710619449615,-0.00479577900841832,-0.0235390737652779,0.999711334705353,-0.00483583426102996,-0.0235774498432875,0.999710619449615,-0.00479577900841832,-0.0279709622263908,0.913459956645966,0.405966132879257,-0.0247760228812695,0.913461923599243,0.406169235706329,-0.0279709622263908,0.913459956645966,0.405966132879257,0.972803175449371,-0.128085225820541,-0.192997947335243,0.99705582857132,-0.0526115410029888,0.0557843632996082,0.994218945503235,0.0286507774144411,-0.103478610515594,0.995106518268585,0.0384740196168423,-0.0910098776221275,0.99765682220459,-0.039848268032074,0.0556164905428886,0.996813476085663,-0.0794791281223297,0.00677849026396871,0.00326014892198145,0.910253345966339,0.414038926362991,0.00326014892198145,0.910253345966339,0.414038926362991,0.00326014892198145,0.910253345966339,0.414038926362991,0.00659627420827746,0.546049952507019,0.837726771831512,0.00659627420827746,0.546049952507019,0.837726771831512,0.00659627420827746,0.546049952507019,0.837726771831512,-0.997950494289398,-0.00935478694736958,0.0633049830794334,-0.997987687587738,0.041899386793375,-0.0475924611091614,
  819. -0.99741268157959,-0.0239119883626699,-0.067796491086483,-0.997980535030365,0.0521883703768253,-0.0362133905291557,-0.998001277446747,0.0100340098142624,0.0623921751976013,-0.995482563972473,-0.0726803541183472,0.0610919781029224,0.964340686798096,-0.193434834480286,-0.18063773214817,0.995863378047943,-0.084949716925621,0.0322441831231117,0.992019772529602,0.00449988571926951,-0.126002848148346,0.993075788021088,0.010150576941669,-0.117036119103432,0.996379017829895,-0.0791176557540894,0.0311326757073402,0.989546716213226,-0.142702355980873,-0.0208161473274231,-0.99771249294281,-0.0629813596606255,0.0245598442852497,-0.997728228569031,-0.0246047452092171,-0.0627133622765541,-0.992193818092346,-0.0748429745435715,-0.0997495725750923,-0.998531401157379,-0.0150366658344865,-0.0520479753613472,-0.998486876487732,-0.0493015795946121,0.0243627075105906,-0.99289083480835,-0.11667138338089,0.0235711261630058,0.999377489089966,0.00800376757979393,0.0343595631420612,0.954074621200562,0.290706038475037,-0.072329968214035,0.995895683765411,0.0617850981652737,-0.0661390647292137,0.999788582324982,-0.00368263060227036,0.0202306117862463,0.997059643268585,0.0405215695500374,-0.0650403797626495,0.994541227817535,0.0468618646264076,0.0932305231690407,0.994052052497864,-0.0346314609050751,0.103253178298473,0.953534245491028,0.300922483205795,0.0147764524444938,0.99681556224823,0.0375575684010983,-0.0703447386622429,0.99733978509903,0.018403647467494,-0.0705327093601227,0.97363293170929,0.149049699306488,0.172694280743599,0.994918644428253,-0.0478498004376888,0.0885850265622139,-0.981047630310059,0.0933976471424103,0.169771626591682,-0.934948980808258,0.346275210380554,0.0772262662649155,-0.98416405916214,0.17491489648819,-0.0287389233708382,-0.989778459072113,0.140971913933754,-0.0215765628963709,-0.961544871330261,0.184875190258026,0.203107327222824,-0.986519157886505,0.075555719435215,0.145159423351288,-0.994710326194763,0.00521812820807099,-0.102587424218655,-0.997402727603912,-0.0603152178227901,0.0393689684569836,-0.996161639690399,0.0619898661971092,-0.061800055205822,
  820. -0.997408330440521,-0.0599615685641766,0.0397653169929981,-0.994707942008972,0.00574771454557776,-0.102582983672619,-0.998854637145996,0.0107423886656761,0.0466266758739948,-1,0,-0,-1,0,-0,-1,0,-0,-1,0,0,-1,0,0,-1,0,0,-0.000459706003312021,-0.409055858850479,0.912509262561798,-0.000459706003312021,-0.409055858850479,0.912509262561798,-0.000459706003312021,-0.409055858850479,0.912509262561798,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,0,-0.409055888652802,0.912509322166443,-0,0.964929282665253,0.262510061264038,-0,0.964929282665253,0.262510061264038,-0,0.964929282665253,0.262510061264038,0,0.964122653007507,0.265457183122635,0,0.964122653007507,0.265457183122635,0,0.964122653007507,0.265457183122635,0,-0.964122653007507,-0.265457183122635,0,-0.964122653007507,-0.265457183122635,0,-0.964122653007507,-0.265457183122635,0,-0.964929282665253,-0.262510061264038,0,-0.964929282665253,-0.262510061264038,0,-0.964929282665253,-0.262510061264038,-0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,-0,-0.965842843055725,-0.259128570556641,-0,-0.965842843055725,-0.259128570556641,-0,-0.965842843055725,-0.259128570556641,-0,-0.965842843055725,-0.259128570556641,-0,-0.965842843055725,-0.259128570556641,-0,-0.965842843055725,-0.259128570556641,-1,7.61863266234286e-005,-0.000166747413459234,-1,7.61863266234286e-005,-0.000166747413459234,-1,7.61863266234286e-005,-0.000166747413459234,-1,4.06496546929702e-005,-8.89690636540763e-005,-1,4.06496546929702e-005,-8.89690636540763e-005,-1,4.06496546929702e-005,-8.89690636540763e-005,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.40385439991951,0.914823293685913,0,-0.40385439991951,0.914823293685913,0,-0.40385439991951,0.914823293685913,-0,-0.414817214012146,0.909904778003693,-0,-0.414817214012146,0.909904778003693,-0,-0.414817214012146,0.909904778003693,0,-0.402519762516022,0.915411412715912,
  821. 0,-0.402519762516022,0.915411412715912,0,-0.402519762516022,0.915411412715912,0,-0.412066757678986,0.911153674125671,0,-0.412066757678986,0.911153674125671,0,-0.412066757678986,0.911153674125671,4.96664688398596e-005,-0.969677090644836,-0.244390159845352,4.96664688398596e-005,-0.969677090644836,-0.244390159845352,4.96664688398596e-005,-0.969677090644836,-0.244390159845352,-0.000310187780996785,-0.969676971435547,-0.24439013004303,-0.000310187780996785,-0.969676971435547,-0.24439013004303,-0.000310187780996785,-0.969676971435547,-0.24439013004303,0.000126170620205812,-0.969677090644836,-0.244390159845352,0.000126170620205812,-0.969677090644836,-0.244390159845352,0.000126170620205812,-0.969677090644836,-0.244390159845352,0.0392513535916805,-0.968929827213287,-0.244201824069023,0.0392513535916805,-0.968929827213287,-0.244201824069023,0.0392513535916805,-0.968929827213287,-0.244201824069023,-1,7.89299156167544e-006,-1.76074427145068e-005,-1,7.89299156167544e-006,-1.76074427145068e-005,-1,7.89299156167544e-006,-1.76074427145068e-005,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.961408913135529,0.275123476982117,0,0.961408913135529,0.275123476982117,0,0.961408913135529,0.275123476982117,-0,0.962511479854584,0.271241039037704,-0,0.962511479854584,0.271241039037704,-0,0.962511479854584,0.271241039037704,0,-0.962511479854584,-0.271241039037704,0,-0.962511479854584,-0.271241039037704,0,-0.962511479854584,-0.271241039037704,0,-0.961417257785797,-0.275094628334045,0,-0.961417257785797,-0.275094628334045,0,-0.961417257785797,-0.275094628334045,0.0494837462902069,-0.960048615932465,-0.275423765182495,0.0494837462902069,-0.960048615932465,-0.275423765182495,0.0494837462902069,-0.960048615932465,-0.275423765182495,1.82176900125341e-005,-0.961226165294647,-0.275761604309082,1.82176900125341e-005,-0.961226165294647,-0.275761604309082,1.82176900125341e-005,-0.961226165294647,-0.275761604309082,0.0502675697207451,-0.962073504924774,-0.26811882853508,0.0502675697207451,-0.962073504924774,-0.26811882853508,0.0502675697207451,-0.962073504924774,-0.26811882853508,
  822. -0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,-0,-0.963291347026825,-0.268458217382431,-0,0.385583728551865,-0.922672867774963,-0,0.385583728551865,-0.922672867774963,-0,0.385583728551865,-0.922672867774963,0,0.418909728527069,-0.90802788734436,0,0.418909728527069,-0.90802788734436,0,0.418909728527069,-0.90802788734436,0,0.40888899564743,-0.912584125995636,0,0.40888899564743,-0.912584125995636,0,0.40888899564743,-0.912584125995636,0,0.381474256515503,-0.924379467964172,0,0.381474256515503,-0.924379467964172,0,0.381474256515503,-0.924379467964172,0,-0.385584682226181,0.92267245054245,0,-0.385584682226181,0.92267245054245,0,-0.385584682226181,0.92267245054245,0,-0.385584682226181,0.92267245054245,0,-0.385584682226181,0.92267245054245,0,-0.385584682226181,0.92267245054245,0,-0.377925038337708,0.925836205482483,0,-0.377925038337708,0.925836205482483,0,-0.377925038337708,0.925836205482483,0,-0.37944233417511,0.925215363502502,0,-0.37944233417511,0.925215363502502,0,-0.37944233417511,0.925215363502502,0.969502866268158,0.244958892464638,-0.00771524151787162,0.969471752643585,0.245203137397766,5.44374840310538e-017,0.969539880752563,0.244660601019859,-0.0115587692707777,1,-0,0,1,0,0,1,-0,0,-0.0236154161393642,-0.999718964099884,-0.0021280157379806,0,-0.999997735023499,-0.00212738988921046,-0.0393395125865936,-0.999223649501801,-0.00212909164838493,0,-0.999990224838257,-0.00442553916946054,-0.0236152336001396,-0.999711334705353,-0.00442689843475819,0,-0.999990224838257,-0.00442553916946054,-1,0,-0,-1,0,-0,-1,0,-0,-0.978072047233582,-0.208266854286194,-4.60710682957822e-017,-0.978070080280304,-0.208269506692886,-0.00163991737645119,-0.978070795536041,-0.208246901631355,-0.00327947875484824,0,-0.999989628791809,-0.0045519839040935,0.00787368975579739,-0.999958634376526,-0.0045520830899477,0,-0.999989628791809,-0.0045519839040935,0.0157460309565067,-0.999872982501984,-0.00247575831599534,0,-0.999996960163116,-0.00247552036307752,0.00787374749779701,-0.999965965747833,-0.00247556250542402,0,-0.00283280480653048,-0.9999960064888,
  823. 8.98160215001553e-005,-0.00285165943205357,-0.999995946884155,0,-0.00283280480653048,-0.9999960064888,-0.000426324928412214,0.00773474853485823,-0.999970018863678,0,0.00737370923161507,-0.999972820281982,-0.000238926353631541,0.00758591992780566,-0.999971210956573,0.90251100063324,-0.430186986923218,0.0203237943351269,0.902359306812286,-0.43098458647728,-9.57467117683846e-017,0.902459859848022,-0.43044051527977,0.0169464778155088,1,0,0,1,-0,0,1,-0,0,-0.0157453417778015,-0.999829232692719,-0.00967546179890633,0,-0.999953210353851,-0.00967410672456026,-0.0393377579748631,-0.999179065227509,-0.00968198850750923,0,-0.999969184398651,-0.00785377994179726,-0.0157455950975418,-0.999845266342163,-0.00785499252378941,0,-0.999969184398651,-0.00785377994179726,-1,0,0,-1,0,-0,-1,0,-0,-0.91574364900589,-0.401763111352921,-8.90182261425312e-017,-0.915761172771454,-0.401710659265518,0.00316307623870671,-0.915735244750977,-0.401769787073135,-0.00316354166716337,0.0189238395541906,2.22058872136237e-016,-0.999820947647095,0.0189238395541906,2.22058872136237e-016,-0.999820947647095,0.0189238395541906,2.22058872136237e-016,-0.999820947647095,0.00579792354255915,2.22002888552379e-016,-0.999983191490173,0.00579792354255915,2.22002888552379e-016,-0.999983191490173,0.00579792354255915,2.22002888552379e-016,-0.999983191490173,-0.99926370382309,-7.83353854003947e-018,0.0383672416210175,-0.99926370382309,-7.83353854003947e-018,0.0383672416210175,-0.99926370382309,-7.83353854003947e-018,0.0383672416210175,-0.999999582767487,0,-0.00101349735632539,-0.999999582767487,0,-0.00101349735632539,-0.999999582767487,0,-0.00101349735632539,-0,0.385582387447357,-0.922673523426056,-0,0.385582387447357,-0.922673523426056,-0,0.385582387447357,-0.922673523426056,0,0.418909728527069,-0.90802788734436,0,0.418909728527069,-0.90802788734436,0,0.418909728527069,-0.90802788734436,0,0.408888906240463,-0.912584185600281,0,0.408888906240463,-0.912584185600281,0,0.408888906240463,-0.912584185600281,0,0.381469786167145,-0.92438131570816,0,0.381469786167145,-0.92438131570816,
  824. 0,0.381469786167145,-0.92438131570816,0.00521564297378063,0.425144463777542,-0.905110478401184,0.00521564297378063,0.425144463777542,-0.905110478401184,0.00538624776527286,0.418667137622833,-0.908123791217804,-0.000347387802321464,0.40904837846756,-0.912512600421906,-0.000593272794503719,0.418544471263886,-0.908196091651917,-0.000762194395065308,0.42502236366272,-0.905182540416718,-0.00337785249575973,0.41848224401474,-0.908218681812286,-0.00313024828210473,0.408986479043961,-0.912535071372986,-0.00313024828210473,0.408986479043961,-0.912535071372986,-0.999701201915741,-0.0242123436182737,-0.00339305121451616,-0.999980628490448,-0.00240424345247447,0.00574074545875192,-0.99994957447052,-0.00967526622116566,0.00269503309391439,-0.99998539686203,0.00208964943885803,-0.0049895728006959,-0.99998539686203,0.00208964943885803,-0.0049895728006959,-0.999954402446747,-0.00518107460811734,-0.00803609471768141,-0.999999821186066,0.000241421177634038,-0.000576454447582364,-0.999999821186066,0.000241421177634038,-0.000576454447582364,-0.999968826770782,-0.00702994782477617,-0.0036217337474227,-0.999998867511749,0.000583651592023671,-0.0013936166651547,-0.999998867511749,0.000583651592023671,-0.0013936166651547,-0.999998867511749,0.000583651592023671,-0.0013936166651547,-0.999999165534973,-0.000498008739668876,0.0011891215108335,-0.999719619750977,0.021310817450285,0.0103223090991378,-0.999999165534973,-0.000498008739668876,0.0011891215108335,-0.999720454216003,0.0218343753367662,0.00907223392277956,-1,2.5687648303574e-005,-6.13370939390734e-005,-0.999720454216003,0.0218343753367662,0.00907223392277956,0.0157460793852806,-0.999876022338867,-2.27654300033464e-006,0.0236154682934284,-0.999721229076386,-2.27689588427893e-006,0.0157460793852806,-0.999876022338867,-2.27654300033464e-006,0.0236068163067102,-0.999355137348175,0.027055099606514,0.0157403144985437,-0.999509990215302,0.0270555317401886,0.0236068163067102,-0.999355137348175,0.027055099606514,0.031468577682972,-0.999127388000488,0.027463523671031,0.0236065573990345,-0.999344170093536,0.0274625848978758,
  825. 0.0236065573990345,-0.999344170093536,0.0274625848978758,-0.0236154682934284,0.999721229076386,2.27689588427893e-006,-0.0157460793852806,0.999876022338867,2.27654300033464e-006,-0.0157460793852806,0.999876022338867,2.27654300033464e-006,-0.0236123874783516,0.999591112136841,-0.0161276161670685,-0.0157440304756165,0.999745965003967,-0.0161283724009991,-0.0236123874783516,0.999591112136841,-0.0161276161670685,-0.0236132461577654,0.999627411365509,-0.0136915603652596,-0.0314775034785271,0.999410688877106,-0.0136915491893888,-0.0236132461577654,0.999627411365509,-0.0136915603652596,-0.999876260757446,-0.0157304778695107,0.000495448126457632,-0.99972128868103,-0.0236096084117889,0.000371804868336767,-0.999876260757446,-0.0157304778695107,0.000495448126457632,-0.999721169471741,-0.0236174892634153,-0.000128794155898504,-0.999875664710999,-0.0157620217651129,-0.000506415322888643,-0.999721169471741,-0.0236174892634153,-0.000128794155898504,-0.999721169471741,-0.0236174892634153,-0.000128794155898504,-0.999504387378693,-0.0314804874360561,4.44714760305942e-006,-0.999721169471741,-0.0236174892634153,-0.000128794155898504,-0.999504387378693,-0.0314804874360561,4.44654233433539e-006,-0.999721169471741,-0.0236174892634153,-0.000128770829178393,-0.999504387378693,-0.0314804874360561,4.44654233433539e-006,1.37282841023989e-005,0.402473747730255,-0.915431559085846,2.94288402074017e-005,0.415574252605438,-0.90955924987793,1.37282841023989e-005,0.402473747730255,-0.915431559085846,-0.00144802406430244,0.402515560388565,-0.91541200876236,-0.00112603628076613,0.415582239627838,-0.909554898738861,-0.00112603628076613,0.415582239627838,-0.909554898738861,0.00224928348325193,0.415557384490967,-0.909564197063446,0.00185619329567999,0.434593439102173,-0.900624871253967,0.00224928348325193,0.415557384490967,-0.909564197063446,0.000579520827159286,0.415570259094238,-0.909560918807983,0.00136048556305468,0.434576213359833,-0.900634169578552,0.00136048556305468,0.434576213359833,-0.900634169578552,-0.00375985167920589,0.402579933404922,-0.915377140045166,
  826. -0.00381198362447321,0.415598630905151,-0.909540116786957,-0.00375985167920589,0.402579933404922,-0.915377140045166,0.00189954857341945,0.415560156106949,-0.909563720226288,0.0016441639745608,0.402426064014435,-0.915450990200043,0.00189954857341945,0.415560156106949,-0.909563720226288,0.000285754911601543,0.415572464466095,-0.909560143947601,-0.000122267592814751,0.440899550914764,-0.89755642414093,0.000285754911601543,0.415572464466095,-0.909560143947601,-0.000420640746597201,0.440888971090317,-0.897561550140381,-0.00122205156367272,0.415582925081253,-0.909554600715637,-0.000420640746597201,0.440888971090317,-0.897561550140381,-0.027032757177949,-0.915986955165863,-0.400296568870544,-0.0103663615882397,-0.916401147842407,-0.400126874446869,-0.027032757177949,-0.915986955165863,-0.400296568870544,-0.0103766368702054,-0.915383458137512,-0.402449369430542,-0.0270695686340332,-0.915329992771149,-0.401793777942657,-0.0103766368702054,-0.915383458137512,-0.402449369430542,-0.0103766368702054,-0.915383458137512,-0.402449369430542,0.0302229598164558,-0.915350079536438,-0.401523143053055,-0.0103766368702054,-0.915383458137512,-0.402449369430542,0.0327946990728378,-0.875018000602722,-0.482978254556656,-0.0106945335865021,-0.875984132289886,-0.482221573591232,0.0327946990728378,-0.875018000602722,-0.482978254556656,-0.00330487079918385,0.907648265361786,0.419718593358994,-0.0423060692846775,0.906807065010071,0.4194176197052,-0.00330487079918385,0.907648265361786,0.419718593358994,-0.0423405952751637,0.914559245109558,0.402229636907578,-0.00316940131597221,0.915408372879028,0.402513951063156,-0.0423405952751637,0.914559245109558,0.402229636907578,-0.0423405952751637,0.914559245109558,0.402229636907578,-0.081309400498867,0.912044405937195,0.401950031518936,-0.0423405952751637,0.914559245109558,0.402229636907578,-0.0813045203685761,0.91184937953949,0.402393192052841,-0.0423379018902779,0.913821578025818,0.403903275728226,-0.0813045203685761,0.91184937953949,0.402393192052841,0.0031584573443979,-0.916018426418304,-0.401124089956284,
  827. 0.0423427894711494,-0.915188610553741,-0.400795608758926,0.0031584573443979,-0.916018426418304,-0.401124089956284,0.0423407442867756,-0.914600968360901,-0.402134746313095,0.00316866603679955,-0.915449440479279,-0.402420580387115,0.0423407442867756,-0.914600968360901,-0.402134746313095,0.0423407442867756,-0.914600968360901,-0.402134746313095,0.0813104659318924,-0.912086844444275,-0.401853501796722,0.0423407442867756,-0.914600968360901,-0.402134746313095,0.0813300237059593,-0.912873148918152,-0.40006011724472,0.0423415750265121,-0.914838194847107,-0.401594936847687,0.0813300237059593,-0.912873148918152,-0.40006011724472,-0.999994933605194,-0.00135213334579021,0.00287954322993755,-0.999496579170227,0.0273540504276752,0.016080578789115,-0.999994933605194,-0.00135213334579021,0.00287954322993755,-0.982819736003876,0.104347720742226,-0.152239784598351,-0.983322560787201,0.0773020833730698,-0.16462479531765,-0.981299698352814,0.1317278444767,-0.140352010726929,-0.989132702350616,-0.0317556373775005,0.143555253744125,-0.987561702728271,-0.00238796696066856,0.157213658094406,-0.987048804759979,0.00474115135148168,0.160350129008293,0.00696072587743402,0.427477449178696,-0.903999209403992,0.00626600719988346,0.418099641799927,-0.908379554748535,0.00696072587743402,0.427477449178696,-0.903999209403992,0.00581459235399961,0.427579164505005,-0.903959214687347,0.00484747253358364,0.418204754590988,-0.908339977264404,0.00484747253358364,0.418204754590988,-0.908339977264404,0.025109400972724,0.416623622179031,-0.908732235431671,0.0236116573214531,0.400826156139374,-0.915849804878235,0.025109400972724,0.416623622179031,-0.908732235431671,0.0239236988127232,0.416720896959305,-0.908719599246979,0.0227265954017639,0.400891989469528,-0.915843367576599,0.0227265954017639,0.400891989469528,-0.915843367576599,0.00439132004976273,0.402755737304688,-0.915296971797943,0.00439132004976273,0.402755737304688,-0.915296971797943,0.00349162635393441,0.418730050325394,-0.908104062080383,-0.00958692841231823,0.424609363079071,-0.905325889587402,-0.00758400373160839,0.401969373226166,-0.915621697902679,
  828. -0.0091082789003849,0.418082624673843,-0.908363342285156,-0.00473057851195335,0.40216201543808,-0.915556311607361,-0.00620808033272624,0.424765229225159,-0.905282378196716,-0.00620808033272624,0.424765229225159,-0.905282378196716,-0.00124240142758936,0.923754036426544,0.382984519004822,0.0628496333956718,0.922118902206421,0.381767749786377,-0.00124240142758936,0.923754036426544,0.382984519004822,0.00692108646035194,0.587828695774078,-0.808955848217011,-0.017356313765049,0.590390980243683,-0.806930780410767,-0.00515766302123666,0.589448213577271,-0.80778968334198,0.0269772727042437,-0.0799460411071777,0.996434092521667,0.0216144789010286,-0.0814310908317566,0.996444582939148,0.0263766255229712,-0.0795134603977203,0.996484875679016,0.0107244877144694,0.426985740661621,-0.9041947722435,0.00983583368360996,0.417690366506577,-0.908536195755005,0.0107244877144694,0.426985740661621,-0.9041947722435,0.0102420225739479,0.417653679847717,-0.908548593521118,0.0113668208941817,0.426918238401413,-0.904218792915344,0.0102420225739479,0.417653679847717,-0.908548593521118,0.024739446118474,0.416298806667328,-0.908891201019287,0.0227125883102417,0.400893032550812,-0.915843307971954,0.024739446118474,0.416298806667328,-0.908891201019287,0.0218637641519308,0.400955855846405,-0.915836453437805,0.0229352694004774,0.416472256183624,-0.908859074115753,0.0218637641519308,0.400955855846405,-0.915836453437805,-0.102406695485115,-0.94155353307724,-0.320920288562775,-0.0869013145565987,-0.942949593067169,-0.321394234895706,-0.102406695485115,-0.94155353307724,-0.320920288562775,-0.0875595137476921,-0.864753663539886,-0.494504451751709,-0.101844593882561,-0.863691866397858,-0.493623405694962,-0.0875595137476921,-0.864753663539886,-0.494504451751709,-0.0875568315386772,-0.864483058452606,-0.494977653026581,-0.0740256756544113,-0.865203559398651,-0.495926380157471,-0.0875568315386772,-0.864483058452606,-0.494977653026581,-0.0739857107400894,-0.871221423149109,-0.485282719135284,-0.0876062214374542,-0.869959652423859,-0.485278844833374,-0.0739857107400894,-0.871221423149109,-0.485282719135284,
  829. 0.023391367867589,0.00406436808407307,-0.999718129634857,0.0233489293605089,0.00423025526106358,-0.999718427658081,0.0233489293605089,0.00423025526106358,-0.999718427658081,0.0282922107726336,-0.71217554807663,0.701431155204773,0.0114941792562604,-0.712747871875763,0.701326131820679,0.0226999912410975,-0.712431669235229,0.701374232769012,0.045722458511591,-0.894421696662903,-0.444881230592728,0.0597625486552715,-0.8936408162117,-0.444785922765732,0.045722458511591,-0.894421696662903,-0.444881230592728,-0.99847412109375,0.049981027841568,0.0234815143048763,-0.998475432395935,0.0503634177148342,0.0225950013846159,-0.99847412109375,0.049981027841568,0.0234815143048763,-0.998145759105682,0.0608629621565342,0.0008843865361996,-0.998197972774506,0.0599834434688091,0.00168472388759255,-0.998197972774506,0.0599834434688091,0.00168472388759255,-0.998225033283234,0.0594910606741905,0.00275667733512819,-0.998271524906158,0.0586624816060066,0.00358924199827015,-0.998225033283234,0.0594910606741905,0.00275667733512819,-0.998338103294373,0.0570657923817635,0.00803397223353386,-0.998339831829071,0.0571757480502129,0.0069802813231945,-0.998339831829071,0.0571757480502129,0.0069802813231945,1.70075782079948e-005,0.434527277946472,-0.900658667087555,-0.00095617410261184,0.418605148792267,-0.908167839050293,1.70075782079948e-005,0.434527277946472,-0.900658667087555,-0.00161149119958282,0.418637692928314,-0.908151924610138,-0.000638071971479803,0.43455982208252,-0.9006427526474,-0.00161149119958282,0.418637692928314,-0.908151924610138,0.0129680754616857,0.417870938777924,-0.908413827419281,0.0119912922382355,0.401838719844818,-0.915631949901581,0.0129680754616857,0.417870938777924,-0.908413827419281,0.0120259430259466,0.401836782693863,-0.915632307529449,0.0129950838163495,0.417869448661804,-0.908414125442505,0.0120259430259466,0.401836782693863,-0.915632307529449,-0.0558419898152351,-0.913831949234009,-0.402234792709351,-0.0630114525556564,-0.913386881351471,-0.40218648314476,-0.0558419898152351,-0.913831949234009,-0.402234792709351,
  830. -0.0630344226956367,-0.911949813365936,-0.405430883169174,-0.0558799169957638,-0.912239134311676,-0.405829042196274,-0.0630344226956367,-0.911949813365936,-0.405430883169174,-0.0630344226956367,-0.911949813365936,-0.405430883169174,-0.0598541125655174,-0.912291765213013,-0.405143439769745,-0.0630344226956367,-0.911949813365936,-0.405430883169174,-0.0598585419356823,-0.915656745433807,-0.397479087114334,-0.0629730224609375,-0.915663063526154,-0.396983057260513,-0.0598585419356823,-0.915656745433807,-0.397479087114334,0.99987518787384,0.0137298265472054,0.0078286686912179,0.999874711036682,-0.0149733638390899,-0.0051537100225687,0.999874711036682,-0.0149733638390899,-0.0051537100225687,0.999875068664551,-0.0140845393761992,-0.00717536453157663,0.999875962734222,0.0147260492667556,0.00560635281726718,0.999875962734222,0.0147260492667556,0.00560635281726718,0.996896147727966,0.0714589506387711,0.0330411642789841,0.999876260757446,0.0143105005845428,0.00653335638344288,0.999876260757446,0.0143105005845428,0.00653335638344288,0.999873876571655,0.0134565085172653,0.00843831151723862,0.996895909309387,0.0712147355079651,0.0335710272192955,0.996895909309387,0.0712147355079651,0.0335710272192955,0.0209164600819349,0.906493127346039,0.421702206134796,-0.0142756700515747,0.906505048274994,0.421953588724136,0.0209164600819349,0.906493127346039,0.421702206134796,-0.0144147537648678,0.915336847305298,0.402430891990662,0.0207478366792202,0.915339529514313,0.402148127555847,-0.0144147537648678,0.915336847305298,0.402430891990662,-0.0144147537648678,0.915336847305298,0.402430891990662,-0.0773172602057457,0.912736892700195,0.401165366172791,-0.0144147537648678,0.915336847305298,0.402430891990662,-0.0773168206214905,0.913227379322052,0.400047600269318,-0.014428585767746,0.916215181350708,0.400426745414734,-0.0773168206214905,0.913227379322052,0.400047600269318,-0.0163536351174116,-0.922910511493683,-0.384667068719864,0.0175624061375856,-0.922936081886292,-0.384552389383316,-0.0163536351174116,-0.922910511493683,-0.384667068719864,0.0175826214253902,-0.915286958217621,-0.402418524026871,
  831. -0.0167075488716364,-0.915423512458801,-0.402145117521286,0.0175826214253902,-0.915286958217621,-0.402418524026871,0.0175826214253902,-0.915286958217621,-0.402418524026871,0.0754994377493858,-0.913875639438629,-0.398912459611893,0.0175826214253902,-0.915286958217621,-0.402418524026871,0.0756968781352043,-0.91160786151886,-0.404031068086624,0.0175831373780966,-0.915031015872955,-0.403000056743622,0.0756968781352043,-0.91160786151886,-0.404031068086624,-0.0382938347756863,0.915554761886597,0.400366216897964,0.00721451686695218,0.916243553161621,0.400556743144989,-0.0382938347756863,0.915554761886597,0.400366216897964,0.00686616543680429,0.872003018856049,0.489452362060547,-0.0389965996146202,0.871469795703888,0.488896369934082,0.0107195070013404,0.872014224529266,0.489363163709641,0.0107160452753305,0.872574806213379,0.488362938165665,0.0846051648259163,0.869755446910858,0.486176282167435,0.0068706450983882,0.872571885585785,0.488437384366989,0.0846656560897827,0.864949643611908,0.49466535449028,0.0107435211539268,0.86802750825882,0.496399879455566,0.0846656560897827,0.864949643611908,0.49466535449028,0.00787617359310389,0.41871377825737,-0.908084094524384,0.00770541373640299,0.425190895795822,-0.905071020126343,0.00770541373640299,0.425190895795822,-0.905071020126343,-0.00235304073430598,0.418505519628525,-0.908211231231689,-0.0021071273367852,0.409009665250778,-0.912527740001678,-0.0025218827649951,0.424983561038971,-0.90519767999649,-0.00106933305505663,0.409032642841339,-0.912519156932831,-0.00131673144642264,0.41852867603302,-0.908202767372131,-0.00106933305505663,0.409032642841339,-0.912519156932831,0.0154912285506725,0.418951451778412,-0.907876491546631,0.0148950917646289,0.415209650993347,-0.909603774547577,0.0154912285506725,0.418951451778412,-0.907876491546631,0.0151583394035697,0.415202379226685,-0.909602761268616,0.0150420730933547,0.41894143819809,-0.907888650894165,0.0151583394035697,0.415202379226685,-0.909602761268616,0.0219747200608253,0.41500398516655,-0.909554302692413,0.0205313563346863,0.407347917556763,-0.913042366504669,
  832. 0.0219747200608253,0.41500398516655,-0.909554302692413,0.021171685308218,0.407291799783707,-0.913052678108215,0.0200027897953987,0.415063321590424,-0.909572601318359,0.021171685308218,0.407291799783707,-0.913052678108215,0.0247387066483498,-0.90749180316925,-0.419340759515762,0.0247387066483498,-0.90749180316925,-0.419340759515762,0.0247387066483498,-0.90749180316925,-0.419340759515762,0.0247656442224979,-0.911734938621521,-0.410031765699387,0.0247656442224979,-0.911734938621521,-0.410031765699387,0.0247656442224979,-0.911734938621521,-0.410031765699387,0.0247656442224979,-0.911734938621521,-0.410031765699387,0.0247656442224979,-0.911734938621521,-0.410031765699387,0.0247656442224979,-0.911734938621521,-0.410031765699387,0.0246514193713665,-0.895349979400635,-0.444680511951447,0.0246514193713665,-0.895349979400635,-0.444680511951447,0.0246514193713665,-0.895349979400635,-0.444680511951447,-0.999958336353302,-0.00379351084120572,0.00830277800559998,-0.999958395957947,-0.00381824374198914,0.00828486680984497,-0.999958336353302,-0.00379351084120572,0.00830277800559998,-0.973280489444733,-0.0961091220378876,0.208538636565208,-0.973271906375885,-0.0954391062259674,0.208885595202446,-0.973300755023956,-0.0975606665015221,0.207768082618713,-0.987630903720856,0.0656283274292946,-0.142401084303856,-0.987642288208008,0.0666142255067825,-0.141863614320755,-0.987642288208008,0.0666142255067825,-0.141863614320755,0.99993884563446,-0.00463298009708524,0.0100526912137866,0.999938726425171,-0.00460031861439347,0.010068622417748,0.999938726425171,-0.00460031861439347,0.010068622417748,0.971734821796417,0.0981067344546318,-0.214724168181419,0.971744179725647,0.0987948179244995,-0.214366093277931,0.971766531467438,0.100285522639751,-0.213571012020111,0.987811863422394,-0.066158652305603,0.140893429517746,0.987797319889069,-0.0651881843805313,0.14144603908062,0.987811863422394,-0.066158652305603,0.140893429517746,-0.00310364807955921,-0.919035196304321,-0.394163310527802,0,-0.919003784656525,-0.394249022006989,-0.00310364807955921,-0.919035196304321,-0.394163310527802,
  833. 0,-0.913601279258728,-0.406611233949661,-0.0032014602329582,-0.913607120513916,-0.406585454940796,0,-0.913601279258728,-0.406611233949661,0,-0.913601279258728,-0.406611233949661,0.00320150214247406,-0.91360479593277,-0.406590759754181,0,-0.913601279258728,-0.406611233949661,0.0031398287974298,-0.917050719261169,-0.398758262395859,0,-0.917047798633575,-0.398777276277542,0.0031398287974298,-0.917050719261169,-0.398758262395859,0.000202578972675838,0.402468323707581,-0.915434002876282,0.000194087871932425,0.415573090314865,-0.909559786319733,0.000202578972675838,0.402468323707581,-0.915434002876282,-0.00158468191511929,0.402519434690475,-0.915410101413727,-0.00128536368720233,0.415583282709122,-0.909554243087769,-0.00125911831855774,0.418566077947617,-0.908185601234436,0.0018224217928946,0.415560781955719,-0.909563601016998,0.00131777150090784,0.440950065851212,-0.897530674934387,0.00184755376540124,0.418543338775635,-0.908194959163666,0.000855432357639074,0.418551027774811,-0.908192873001099,0.00149488705210388,0.440956205129623,-0.897527396678925,0.00149488705210388,0.440956205129623,-0.897527396678925,-0.0042366343550384,0.402592957019806,-0.9153693318367,-0.00428635394200683,0.418584227561951,-0.908167898654938,-0.0042366343550384,0.402592957019806,-0.9153693318367,0.00183818116784096,0.418543487787247,-0.908195018768311,0.00157999887596816,0.402427971363068,-0.915450274944305,0.00183818116784096,0.418543487787247,-0.908195018768311,0.000575063051655889,0.418553113937378,-0.908192157745361,0.000306448782794178,0.440914690494537,-0.897548973560333,0.000575063051655889,0.418553113937378,-0.908192157745361,0.000574107922147959,0.440924108028412,-0.897544205188751,-0.000368023727787659,0.418559938669205,-0.908189117908478,0.000574107922147959,0.440924108028412,-0.897544205188751,-0.034132968634367,-0.917928159236908,-0.395275682210922,-0.0103448713198304,-0.918490290641785,-0.395308464765549,-0.034132968634367,-0.917928159236908,-0.395275682210922,-0.0103766368702054,-0.915383458137512,-0.402449369430542,-0.0342683233320713,-0.915148437023163,-0.40165787935257,
  834. -0.0103766368702054,-0.915383458137512,-0.402449369430542,-0.0103766368702054,-0.915383458137512,-0.402449369430542,0.0405613444745541,-0.915203034877777,-0.400946915149689,-0.0103766368702054,-0.915383458137512,-0.402449369430542,0.0434845574200153,-0.874423146247864,-0.483211606740952,-0.0106961894780397,-0.875726044178009,-0.48268985748291,0.0434845574200153,-0.874423146247864,-0.483211606740952,0.00357325258664787,0.424934208393097,-0.905217170715332,0.00273470394313335,0.408956229686737,-0.912549912929535,0.00357325258664787,0.424934208393097,-0.905217170715332,0.00313369394280016,0.42494735121727,-0.905212640762329,0.00259415293112397,0.408961415290833,-0.912548005580902,0.00259415293112397,0.408961415290833,-0.912548005580902,0.0246889796108007,0.408044904470444,-0.912627995014191,0.0244105793535709,0.394468784332275,-0.918585062026978,0.0246889796108007,0.408044904470444,-0.912627995014191,0.0327159315347672,0.407662391662598,-0.912546455860138,0.0317698195576668,0.394012212753296,-0.918556094169617,0.0317698195576668,0.394012212753296,-0.918556094169617,0.000913620460778475,0.870015919208527,0.493022829294205,0.0283042825758457,0.869686782360077,0.492791831493378,0.000913620460778475,0.870015919208527,0.493022829294205,0.0279725138098001,0.913328289985657,0.406262248754501,-0.00079202459892258,0.913638949394226,0.406525880098343,0.0279725138098001,0.913328289985657,0.406262248754501,0.0279725138098001,0.913328289985657,0.406262248754501,0.0638149753212929,0.911460876464844,0.406407088041306,0.0279725138098001,0.913328289985657,0.406262248754501,0.063748374581337,0.90907222032547,0.411732763051987,0.0280097033828497,0.910064339637756,0.413519740104675,0.063748374581337,0.90907222032547,0.411732763051987,0.0124848196282983,0.424471884965897,-0.905355036258698,0.0113893542438746,0.408457010984421,-0.91270649433136,0.0124848196282983,0.424471884965897,-0.905355036258698,0.0108884163200855,0.408484518527985,-0.912700414657593,0.0117064630612731,0.424509227275848,-0.905348062515259,0.0108884163200855,0.408484518527985,-0.912700414657593,
  835. 0.0244458559900522,0.407704949378967,-0.912786424160004,0.0238115508109331,0.394331812858582,-0.918659567832947,0.0244458559900522,0.407704949378967,-0.912786424160004,0.0374475345015526,0.393372654914856,-0.91861617565155,0.0384526327252388,0.406820297241211,-0.912698566913605,0.0374475345015526,0.393372654914856,-0.91861617565155,-0.00120384525507689,-0.386311322450638,0.922367691993713,-0.000803889008238912,-0.386293977499008,0.922375380992889,-0.00140348717104644,-0.386324316263199,0.922361969947815,0.0241436809301376,-0.385830342769623,0.922253787517548,0.0200315229594707,-0.386216580867767,0.922190606594086,0.0200315229594707,-0.386216580867767,0.922190606594086,-0.000441233540186659,-0.386294066905975,0.922375559806824,-0.000441233540186659,-0.386294066905975,0.922375559806824,-0.0010166164720431,-0.386308670043945,0.922369003295898,0.00444615352898836,-0.386290282011032,0.922366559505463,0.00444615352898836,-0.386290282011032,0.922366559505463,0.00444615352898836,-0.386290282011032,0.922366559505463,0.00407983921468258,-0.38629087805748,0.922367990016937,0.00379511783830822,-0.386374086141586,0.922334372997284,0.00407983921468258,-0.38629087805748,0.922367990016937,-1.81768864422338e-005,-0.386293679475784,0.922375857830048,0,-0.386294096708298,0.922375679016113,-1.81768864422338e-005,-0.386293679475784,0.922375857830048,0.00150938634760678,0.386293649673462,-0.922374606132507,0.00150956166908145,0.399584978818893,-0.916694939136505,0.00150938634760678,0.386293649673462,-0.922374606132507,-0.00493112858384848,0.38628938794136,-0.922364473342896,-0.00493168877437711,0.39958056807518,-0.916684806346893,-0.00493168877437711,0.39958056807518,-0.916684806346893,0.00179285753984004,0.399584800004959,-0.916694462299347,0.0017926391446963,0.41557377576828,-0.909557700157166,0.00179285753984004,0.399584800004959,-0.916694462299347,-0.00754167698323727,0.415562629699707,-0.909533321857452,-0.00754254125058651,0.3995740711689,-0.916669905185699,-0.00754167698323727,0.415562629699707,-0.909533321857452,0.999939024448395,-0.00426922785118222,0.0101938704028726,
  836. 0.999939024448395,-0.00441658915951848,0.0101321749389172,0.999939024448395,-0.00426922785118222,0.0101938704028726,0.999978840351105,0.00260493182577193,-0.00597601989284158,0.99997889995575,0.0025107020046562,-0.00599494157359004,0.999978840351105,0.00260493182577193,-0.00597601989284158,0.999978601932526,0.00271828798577189,-0.00594946090131998,0.999978840351105,0.00260493182577193,-0.00597601989284158,0.999978840351105,0.00260493182577193,-0.00597601989284158,0.999984920024872,-0.00220229756087065,0.00505232950672507,0.999984979629517,-0.00227793212980032,0.00498566264286637,0.999984979629517,-0.00227793212980032,0.00498566264286637,0,0.909773051738739,0.415106028318405,0.00326850218698382,0.909770011901855,0.415099769830704,0,0.909773051738739,0.415106028318405,0.00320148817263544,0.913605570793152,0.406588971614838,0,0.913600265979767,0.40661358833313,0.00320148817263544,0.913605570793152,0.406588971614838,0.00320148817263544,0.913605570793152,0.406588971614838,-0.000790164165664464,0.913595914840698,0.406622529029846,0.00320148817263544,0.913605570793152,0.406588971614838,-0.000804789131507277,0.913933634757996,0.405862808227539,0.00319499499164522,0.913972139358521,0.405764371156693,-0.000804789131507277,0.913933634757996,0.405862808227539,-0.00315224193036556,-0.916363596916199,-0.400334715843201,0,-0.916335880756378,-0.400410532951355,-0.00315224193036556,-0.916363596916199,-0.400334715843201,0,-0.913597226142883,-0.406620353460312,-0.00320153264328837,-0.913603186607361,-0.406594634056091,0,-0.913597226142883,-0.406620353460312,0,-0.913597226142883,-0.406620353460312,0.00320157408714294,-0.913600742816925,-0.406599909067154,0,-0.913597226142883,-0.406620353460312,0.00316681060940027,-0.915553092956543,-0.402184933423996,0,-0.915553629398346,-0.402195960283279,0.00316681060940027,-0.915553092956543,-0.402184933423996,0.0280533395707607,0.905938327312469,0.422479569911957,0.0104637322947383,0.906222581863403,0.422671437263489,0.0280533395707607,0.905938327312469,0.422479569911957,0.0103761581704021,0.915431141853333,0.402340888977051,
  837. 0.027950543910265,0.91516125202179,0.402117729187012,0.0103761581704021,0.915431141853333,0.402340888977051,0.0103761581704021,0.915431141853333,0.402340888977051,-0.0351486839354038,0.914921641349792,0.40209823846817,0.0103761581704021,0.915431141853333,0.402340888977051,-0.0351484939455986,0.914965093135834,0.401999294757843,0.0103743318468332,0.915612876415253,0.401927202939987,-0.0351484939455986,0.914965093135834,0.401999294757843,0.00456840684637427,0.418552964925766,-0.908180892467499,0.00458922237157822,0.418717503547668,-0.908104956150055,0.00456840684637427,0.418552964925766,-0.908180892467499,0.00523662613704801,0.418551594018936,-0.90817791223526,0.00528614642098546,0.418741047382355,-0.90809029340744,0.00528614642098546,0.418741047382355,-0.90809029340744,0.00259419390931726,0.418648958206177,-0.908144414424896,0.00332433567382395,0.41879341006279,-0.908075451850891,0.00259419390931726,0.418648958206177,-0.908144414424896,0.00288444967009127,0.418762445449829,-0.908091247081757,0.00341295590624213,0.418677300214767,-0.908128678798676,0.00288444967009127,0.418762445449829,-0.908091247081757,-0.0011456289794296,0.418557047843933,-0.90818977355957,-0.00113225099630654,0.418516516685486,-0.908208608627319,-0.0011456289794296,0.418557047843933,-0.90818977355957,-0.000426563434302807,0.418541997671127,-0.908197343349457,-0.000454992317827418,0.418557286262512,-0.908190310001373,-0.000426563434302807,0.418541997671127,-0.908197343349457,-0.00236438866704702,0.418471366167068,-0.908226907253265,-0.00162104947958142,0.418440490961075,-0.908242762088776,-0.00236438866704702,0.418471366167068,-0.908226907253265,-0.00143193581607193,0.418505609035492,-0.908213198184967,-0.00192141369916499,0.418418794870377,-0.90825229883194,-0.00192141369916499,0.418418794870377,-0.90825229883194,-0.0307828336954117,-0.925399959087372,-0.377739727497101,0.00430990289896727,-0.92566853761673,-0.378310889005661,0.00430990289896727,-0.92566853761673,-0.378310889005661,0.00399321131408215,-0.913640737533569,-0.406502932310104,-0.0311646182090044,-0.913373291492462,-0.405928611755371,
  838. -0.0311646182090044,-0.913373291492462,-0.405928611755371,-0.0311646182090044,-0.913373291492462,-0.405928611755371,-0.0701816827058792,-0.911500513553619,-0.405267268419266,-0.0311646182090044,-0.913373291492462,-0.405928611755371,-0.070214532315731,-0.906582593917847,-0.416146457195282,-0.0313204489648342,-0.907912909984589,-0.417987108230591,-0.070214532315731,-0.906582593917847,-0.416146457195282,0.999971508979797,-0.00320930941961706,0.00683463970199227,0.999472737312317,-0.0318466797471046,-0.00633061956614256,0.999971508979797,-0.00320930941961706,0.00683463970199227,0.999993979930878,-0.00147674418985844,0.00314491800963879,0.999495387077332,-0.0301330741494894,-0.0100505277514458,0.999495387077332,-0.0301330741494894,-0.0100505277514458,0.999495387077332,-0.0301330741494894,-0.0100505277514458,0.997461020946503,-0.0662529692053795,-0.0261164959520102,0.999495387077332,-0.0301330741494894,-0.0100505277514458,0.997466087341309,-0.065404437482357,-0.0279939249157906,0.999498426914215,-0.0297008361667395,-0.0109886201098561,0.997466087341309,-0.065404437482357,-0.0279939249157906,0.0954516008496284,0.91138619184494,0.400330394506454,0.0875868797302246,0.912084102630615,0.40053853392601,0.0954516008496284,0.91138619184494,0.400330394506454,0.0875771790742874,0.866609871387482,0.491240829229355,0.0950855687260628,0.866082429885864,0.490774869918823,0.0875771790742874,0.866609871387482,0.491240829229355,0.0875754877924919,0.866426527500153,0.491564482450485,0.0740140452980995,0.867151260375977,0.492514550685883,0.0875754877924919,0.866426527500153,0.491564482450485,0.0719320774078369,0.947835505008698,0.310537993907928,0.0867579430341721,0.946663320064545,0.310325115919113,0.0719320774078369,0.947835505008698,0.310537993907928,0.00748159922659397,0.402949243783951,-0.915191769599915,0.00637253280729055,0.418868750333786,-0.908024430274963,0.00748159922659397,0.402949243783951,-0.915191769599915,-0.00601944047957659,0.402075409889221,-0.915586769580841,-0.0069178300909698,0.418199956417084,-0.908328652381897,-0.0069178300909698,0.418199956417084,-0.908328652381897,
  839. -0.00714020105078816,0.418188214302063,-0.908332467079163,-0.0076264338567853,0.424700379371643,-0.905301868915558,-0.00714020105078816,0.418188214302063,-0.908332467079163,-0.00772901019081473,0.424695700407028,-0.905303299427032,-0.00742717646062374,0.418172866106033,-0.908337116241455,-0.00772901019081473,0.424695700407028,-0.905303299427032,-0.0669966787099838,0.910838901996613,0.407288551330566,-0.0598520375788212,0.911299645900726,0.407370448112488,-0.0669966787099838,0.910838901996613,0.407288551330566,-0.0598535239696503,0.911992788314819,0.40581613779068,-0.0670043677091599,0.911609292030334,0.405559957027435,-0.0598535239696503,0.911992788314819,0.40581613779068,-0.0598535239696503,0.911992788314819,0.40581613779068,-0.045527521520853,0.912563741207123,0.406392276287079,-0.0598535239696503,0.911992788314819,0.40581613779068,-0.0455252826213837,0.912727892398834,0.406023770570755,-0.0598533786833286,0.911919176578522,0.405981510877609,-0.0455252826213837,0.912727892398834,0.406023770570755,0.0559575483202934,0.908815681934357,0.413428157567978,0.063087522983551,0.908369302749634,0.41338261961937,0.0559575483202934,0.908815681934357,0.413428157567978,0.0630344897508621,0.911945521831512,0.40544056892395,0.0558800250291824,0.912234604358673,0.405839264392853,0.0630344897508621,0.911945521831512,0.40544056892395,0.0630344897508621,0.911945521831512,0.40544056892395,0.0598541051149368,0.912288010120392,0.405151933431625,0.0630344897508621,0.911945521831512,0.40544056892395,0.0598560348153114,0.913399279117584,0.402640342712402,0.0630111917853355,0.913403332233429,0.402149498462677,0.0598560348153114,0.913399279117584,0.402640342712402,-0.999875962734222,0.0147214755415916,0.00561655312776566,-0.999875962734222,-0.0139874489977956,-0.0072540040127933,-0.999875962734222,0.0147214755415916,0.00561655312776566,-0.999875545501709,-0.0138602936640382,-0.00753763690590858,-0.999875545501709,0.014849022962153,0.00533200986683369,-0.999875545501709,-0.0138602936640382,-0.00753763690590858,-0.99987131357193,-0.0130649255588651,-0.00931175705045462,
  840. -0.996870815753937,-0.0706683248281479,-0.0354202017188072,-0.99987131357193,-0.0130649255588651,-0.00931175705045462,-0.999872624874115,-0.0132476110011339,-0.00890426710247993,-0.996873319149017,-0.0710526555776596,-0.0345707200467587,-0.996873319149017,-0.0710526555776596,-0.0345707200467587,0.0350907817482948,-0.925176203250885,-0.377912193536758,0.0321171134710312,-0.92517101764679,-0.378189235925674,0.0350907817482948,-0.925176203250885,-0.377912193536758,0.0319505967199802,-0.912442445755005,-0.407955825328827,0.0351593866944313,-0.912255167961121,-0.408110707998276,0.0319505967199802,-0.912442445755005,-0.407955825328827,0.0319505967199802,-0.912442445755005,-0.407955825328827,0.0319505967199802,-0.912442445755005,-0.407955825328827,0.0319505967199802,-0.912442445755005,-0.407955825328827,0.0315769948065281,-0.887767851352692,-0.459207057952881,0.0315769948065281,-0.887767851352692,-0.459207057952881,0.0315769948065281,-0.887767851352692,-0.459207057952881,-0.999500095844269,-0.0296976398676634,-0.0108446097001433,-0.999499261379242,-0.0295436605811119,-0.0113297402858734,-0.999500095844269,-0.0296976398676634,-0.0108446097001433,-0.999394774436951,-0.0347863286733627,5.37551823072135e-005,-0.99940949678421,-0.0343606024980545,-0.000231519574299455,-0.999394774436951,-0.0347863286733627,5.37551823072135e-005,-0.999333500862122,-0.0364029109477997,0.00272496184334159,-0.999355316162109,-0.0358269549906254,0.0023146930616349,-0.999355316162109,-0.0358269549906254,0.0023146930616349,-0.999424278736115,-0.033873412758112,-0.00192933052312583,-0.99942684173584,-0.0337449461221695,-0.00269256997853518,-0.99942684173584,-0.0337449461221695,-0.00269256997853518,0.0123110180720687,0.402799427509308,-0.915205597877502,0.0117560178041458,0.418865621089935,-0.907972097396851,0.0123110180720687,0.402799427509308,-0.915205597877502,-0.000739980081561953,0.402452647686005,-0.915440499782562,-0.00129709450993687,0.418519735336304,-0.908206760883331,-0.00129709450993687,0.418519735336304,-0.908206760883331,-0.00728894397616386,0.41833707690239,-0.908262610435486,
  841. -0.00806733779609203,0.440661460161209,-0.897637128829956,-0.00728894397616386,0.41833707690239,-0.908262610435486,-0.00903690326958895,0.440630406141281,-0.897643148899078,-0.00825756788253784,0.418306171894073,-0.908268690109253,-0.00903690326958895,0.440630406141281,-0.897643148899078,0.0115316975861788,0.418446779251099,-0.908168137073517,0.0118279000744224,0.425514608621597,-0.904874265193939,0.0118279000744224,0.425514608621597,-0.904874265193939,0.0112458374351263,0.425492584705353,-0.904892027378082,0.0117805572226644,0.418443828821182,-0.908166408538818,0.0117805572226644,0.418443828821182,-0.908166408538818,0.0195079445838928,0.418337792158127,-0.908082127571106,0.020590528845787,0.407490640878677,-0.912977337837219,0.0195079445838928,0.418337792158127,-0.908082127571106,0.0207485463470221,0.40747794508934,-0.912979423999786,0.021969560533762,0.418298721313477,-0.908043801784515,0.0207485463470221,0.40747794508934,-0.912979423999786,-0.0363478623330593,0.923235654830933,0.382511049509048,-0.0320966951549053,0.923517227172852,0.382211595773697,-0.0363478623330593,0.923235654830933,0.382511049509048,-0.0359211303293705,0.912396788597107,0.407727599143982,-0.0319500789046288,0.912405073642731,0.408039450645447,-0.0319500789046288,0.912405073642731,0.408039450645447,-0.0319500789046288,0.912405073642731,0.408039450645447,-0.0311993956565857,0.912184596061707,0.408590137958527,-0.0319500789046288,0.912405073642731,0.408039450645447,-0.0311528500169516,0.913771569728851,0.405032128095627,-0.0319654829800129,0.913520097732544,0.405536025762558,-0.0311528500169516,0.913771569728851,0.405032128095627,0.0384201072156429,-0.909661889076233,-0.413568794727325,-0.017591904848814,-0.910329222679138,-0.413510888814926,0.0384201072156429,-0.909661889076233,-0.413568794727325,-0.0175827275961638,-0.915237784385681,-0.402530252933502,0.0383100286126137,-0.914830029010773,-0.402017891407013,-0.0175827275961638,-0.915237784385681,-0.402530252933502,-0.0175827275961638,-0.915237784385681,-0.402530252933502,-0.0835776031017303,-0.912677884101868,-0.400042623281479,
  842. -0.0175827275961638,-0.915237784385681,-0.402530252933502,-0.0819146707653999,-0.945192217826843,-0.316072285175323,-0.017425861209631,-0.948708951473236,-0.315670490264893,-0.0819146707653999,-0.945192217826843,-0.316072285175323,0.0280668083578348,0.904591023921967,0.425355821847916,0.0104757724329829,0.9048752784729,0.425547897815704,0.0280668083578348,0.904591023921967,0.425355821847916,0.0103761572390795,0.915431201457977,0.402340680360794,0.027950543910265,0.915161371231079,0.402117490768433,0.0103761572390795,0.915431201457977,0.402340680360794,0.0103761572390795,0.915431201457977,0.402340680360794,-0.0351486839354038,0.914921581745148,0.402098327875137,0.0103761572390795,0.915431201457977,0.402340680360794,-0.0351484045386314,0.91498589515686,0.401951938867569,0.0103739956393838,0.915646314620972,0.401850968599319,-0.0351484045386314,0.91498589515686,0.401951938867569,-0.0278031472116709,-0.925998389720917,-0.376502305269241,0.00432601245120168,-0.926261126995087,-0.376857578754425,0.00432601245120168,-0.926261126995087,-0.376857578754425,0.00399330770596862,-0.913644552230835,-0.406494438648224,-0.0279720928519964,-0.913364112377167,-0.406181752681732,-0.0279720928519964,-0.913364112377167,-0.406181752681732,-0.0279720928519964,-0.913364112377167,-0.406181752681732,-0.0670033320784569,-0.911502122879028,-0.405801236629486,-0.0279720928519964,-0.913364112377167,-0.406181752681732,-0.0668081045150757,-0.895803928375244,-0.439399600028992,-0.0281346067786217,-0.897162079811096,-0.440804541110992,-0.0668081045150757,-0.895803928375244,-0.439399600028992,-0.99999338388443,-0.00154804915655404,0.00329677131958306,-0.999495029449463,0.0271616708487272,0.016497889533639,-0.99999338388443,-0.00154804915655404,0.00329677131958306,-0.999460995197296,0.0249084774404764,0.0213843267410994,-0.999959528446198,-0.00382532272487879,0.00814652070403099,-0.999460995197296,0.0249084774404764,0.0213843267410994,-0.997430205345154,0.0600522235035896,0.0390729457139969,-0.999448120594025,0.0243499707430601,0.0225952044129372,-0.999448120594025,0.0243499707430601,0.0225952044129372,
  843. -0.999477386474609,0.0257705897092819,0.019514923915267,-0.997459948062897,0.0614948235452175,0.035947822034359,-0.997459948062897,0.0614948235452175,0.035947822034359,-0.00137336540501565,0.425038367509842,-0.905174314975739,-0.00156158697791398,0.418601661920547,-0.908168733119965,-0.00137336540501565,0.425038367509842,-0.905174314975739,-0.00249324413016438,0.42503747344017,-0.905172348022461,-0.00269167777150869,0.418633013963699,-0.908151507377625,-0.00269167777150869,0.418633013963699,-0.908151507377625,0.0128105711191893,0.418155461549759,-0.9082852602005,0.0122809149324894,0.417732834815979,-0.908486902713776,0.0128105711191893,0.418155461549759,-0.9082852602005,0.0109588988125324,0.417824655771255,-0.908461570739746,0.0103490054607391,0.41823798418045,-0.908278524875641,0.0109588988125324,0.417824655771255,-0.908461570739746,0.0319319516420364,0.911106646060944,0.410931944847107,0.0455469340085983,0.911114156246185,0.409629732370377,0.0319319516420364,0.911106646060944,0.410931944847107,0.0455280840396881,0.912522494792938,0.406484842300415,0.0319641306996346,0.913421332836151,0.405758559703827,0.0455280840396881,0.912522494792938,0.406484842300415,0.0455280840396881,0.912522494792938,0.406484842300415,0.0662283226847649,0.91130268573761,0.406375676393509,0.0455280840396881,0.912522494792938,0.406484842300415,0.06453937292099,0.9477299451828,0.312478274106979,0.0447508357465267,0.948486506938934,0.313641011714935,0.06453937292099,0.9477299451828,0.312478274106979,0.0527320392429829,-0.903571665287018,-0.425179719924927,0.0175990574061871,-0.904715180397034,-0.425653278827667,0.0527320392429829,-0.903571665287018,-0.425179719924927,0.0175862386822701,-0.913532853126526,-0.40638455748558,0.0526930801570416,-0.912481129169464,-0.405711323022842,0.0175862386822701,-0.913532853126526,-0.40638455748558,0.0175862386822701,-0.913532853126526,-0.40638455748558,-0.024775629863143,-0.913395166397095,-0.406319439411163,0.0175862386822701,-0.913532853126526,-0.40638455748558,-0.0247797295451164,-0.914092659950256,-0.404747813940048,
  844. 0.0175847616046667,-0.91426682472229,-0.404730707406998,-0.0247797295451164,-0.914092659950256,-0.404747813940048,-6.08413165537058e-006,-0.922375679016113,-0.386294037103653,-0,-0.922375679016113,-0.386294096708298,-6.08413165537058e-006,-0.922375679016113,-0.386294037103653,0.0187066569924355,-0.922214269638062,-0.386226505041122,0.0185819566249847,-0.922159790992737,-0.3863625228405,0.0187066569924355,-0.922214269638062,-0.386226505041122,0.0194605831056833,-0.922200977802277,-0.386220932006836,0.0194605831056833,-0.922200977802277,-0.386220932006836,0.0194605831056833,-0.922200977802277,-0.386220932006836,0.00130943325348198,-0.922374904155731,-0.386293768882751,0.00130943325348198,-0.922374904155731,-0.386293768882751,0.00130943325348198,-0.922374904155731,-0.386293768882751,6.05921604801551e-006,0.922375679016113,0.386294037103653,-0,0.922375679016113,0.386294096708298,6.05921604801551e-006,0.922375679016113,0.386294037103653,-0.0273327939212322,0.922031164169312,0.386149823665619,-0.0271476786583662,0.921953022480011,0.386349111795425,-0.0273327939212322,0.922031164169312,0.386149823665619,-0.0273327939212322,0.922031164169312,0.386149823665619,-0.0273327939212322,0.922031164169312,0.386149823665619,-0.0273327939212322,0.922031164169312,0.386149823665619,0.0107309436425567,0.922322571277618,0.386271864175797,0.0107309436425567,0.922322571277618,0.386271864175797,0.0107309436425567,0.922322571277618,0.386271864175797,1.82013773155632e-005,-0.386293679475784,0.922375857830048,-0,-0.386294096708298,0.922375679016113,1.82013773155632e-005,-0.386293679475784,0.922375857830048,0.00221715215593576,-0.386293143033981,0.922373414039612,0.00197208672761917,-0.38625031709671,0.922391891479492,0.00221715215593576,-0.386293143033981,0.922373414039612,0.00237381947226822,-0.386310249567032,0.922365844249725,0.00221552327275276,-0.386293143033981,0.922373414039612,0.00221552327275276,-0.386293143033981,0.922373414039612,-0.00200224108994007,-0.386293321847916,0.922373831272125,-0.00204326445236802,-0.386278420686722,0.922379970550537,
  845. -0.00204326445236802,-0.386278420686722,0.922379970550537,-1.82610310730524e-005,0.386293679475784,-0.922375857830048,-0,0.386294096708298,-0.922375679016113,-1.82610310730524e-005,0.386293679475784,-0.922375857830048,0.0013478072360158,0.386293739080429,-0.922374844551086,0.00165143399499357,0.386329591274261,-0.922359347343445,0.0013478072360158,0.386293739080429,-0.922374844551086,0.000323031330481172,0.386294066905975,-0.922375619411469,0.000166120793437585,0.386292934417725,-0.922376275062561,0.000323031330481172,0.386294066905975,-0.922375619411469,-0.00193313707131892,0.386307418346405,-0.922368049621582,-0.00200131768360734,0.386293321847916,-0.922373831272125,-0.00193313707131892,0.386307418346405,-0.922368049621582,0,-0.922375679016113,-0.386294096708298,-6.05782724960591e-006,-0.922375679016113,-0.386294037103653,-6.05782724960591e-006,-0.922375679016113,-0.386294037103653,0.0293368734419346,-0.921889305114746,-0.386341124773026,0.029344180598855,-0.92197847366333,-0.38612774014473,0.029344180598855,-0.92197847366333,-0.38612774014473,0.029344180598855,-0.92197847366333,-0.38612774014473,0.029344180598855,-0.92197847366333,-0.38612774014473,0.029344180598855,-0.92197847366333,-0.38612774014473,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,-6.0407933233364e-006,-0.922375679016113,-0.386294037103653,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,0,-0.922375679016113,-0.386294096708298,-6.10058759775711e-006,-0.922375679016113,-0.386294037103653,-6.10058759775711e-006,-0.922375679016113,-0.386294037103653,-6.10058759775711e-006,-0.922375679016113,-0.386294037103653,0,-0.922375679016113,-0.386294096708298,-6.10058759775711e-006,-0.922375679016113,-0.386294037103653,0.0020319102331996,-0.92237377166748,-0.386293292045593,0.00204856903292239,-0.922367513179779,-0.386308163404465,0.0020319102331996,-0.92237377166748,-0.386293292045593,6.05782724960591e-006,0.922375679016113,0.386294037103653,0,0.922375679016113,0.386294096708298,
  846. 6.05782724960591e-006,0.922375679016113,0.386294037103653,-0.0616641156375408,0.920620441436768,0.385559022426605,-0.0616301968693733,0.920434474945068,0.386007875204086,-0.0616641156375408,0.920620441436768,0.385559022426605,-0.0623314864933491,0.920582115650177,0.385542958974838,-0.0623314864933491,0.920582115650177,0.385542958974838,-0.0623314864933491,0.920582115650177,0.385542958974838,-0.0260915961116552,0.922061741352081,0.386162638664246,-0.0260915961116552,0.922061741352081,0.386162638664246,-0.0260915961116552,0.922061741352081,0.386162638664246,-6.08413165537058e-006,-0.922375679016113,-0.386294037103653,-0,-0.922375679016113,-0.386294096708298,-6.08413165537058e-006,-0.922375679016113,-0.386294037103653,0.017035948112607,-0.922241806983948,-0.386238038539886,0.0169113054871559,-0.922192275524139,-0.386361807584763,0.017035948112607,-0.922241806983948,-0.386238038539886,0.0172115471214056,-0.922239065170288,-0.386236876249313,0.0172115471214056,-0.922239065170288,-0.386236876249313,0.0172115471214056,-0.922239065170288,-0.386236876249313,0.0013243641005829,-0.922374963760376,-0.386293798685074,0.0013243641005829,-0.922374963760376,-0.386293798685074,0.0013243641005829,-0.922374963760376,-0.386293798685074,6.14482132732519e-006,0.922375679016113,0.386294037103653,-0,0.922375679016113,0.386294096708298,6.14482132732519e-006,0.922375679016113,0.386294037103653,-0.027449332177639,0.922028124332428,0.386148542165756,-0.0272641275078058,0.921949744224548,0.386348724365234,-0.027449332177639,0.922028124332428,0.386148542165756,-0.027449332177639,0.922028124332428,0.386148542165756,-0.027449332177639,0.922028124332428,0.386148542165756,-0.027449332177639,0.922028124332428,0.386148542165756,0.01073391828686,0.922322630882263,0.386271893978119,0.01073391828686,0.922322630882263,0.386271893978119,0.01073391828686,0.922322630882263,0.386271893978119,1.82365401997231e-005,-0.386293679475784,0.922375857830048,-0,-0.386294096708298,0.922375679016113,1.82365401997231e-005,-0.386293679475784,0.922375857830048,0.00776049122214317,-0.386282473802567,0.922347903251648,
  847. 0.00751257780939341,-0.386119335889816,0.922418355941772,0.00776049122214317,-0.386282473802567,0.922347903251648,0.00791368260979652,-0.386339545249939,0.922322690486908,0.00775582296773791,-0.386282533407211,0.922348022460938,0.00775582296773791,-0.386282533407211,0.922348022460938,-0.00199141493067145,-0.386293321847916,0.922373831272125,-0.00203247717581689,-0.386278510093689,0.922379970550537,-0.00203247717581689,-0.386278510093689,0.922379970550537,-1.82610310730524e-005,0.386293679475784,-0.922375857830048,-0,0.386294096708298,-0.922375679016113,-1.82610310730524e-005,0.386293679475784,-0.922375857830048,0.0138874845579267,0.386256843805313,-0.922286689281464,0.0141907213255763,0.3865647315979,-0.922153115272522,0.0138874845579267,0.386256843805313,-0.922286689281464,0.0128985606133938,0.386261969804764,-0.922298908233643,0.0127413095906377,0.386170089244843,-0.922339618206024,0.0128985606133938,0.386261969804764,-0.922298908233643,-0.00194986432325095,0.386307537555695,-0.922367990016937,-0.00201804656535387,0.386293292045593,-0.92237377166748,-0.00194986432325095,0.386307537555695,-0.922367990016937
  848. }
  849. TangentsW: *1296 {
  850. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
  851. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  852. }
  853. }
  854. LayerElementUV: 0 {
  855. Version: 101
  856. Name: "UVmap_0"
  857. MappingInformationType: "ByPolygonVertex"
  858. ReferenceInformationType: "IndexToDirect"
  859. UV: *1440 {
  860. a: -0.483154296875,1.02938842773438,0.2021484375,1.03091430664063,-0.384033203125,1.0904541015625,0.202392578125,1.0897216796875,-0.480712890625,1.2763671875,0.2003173828125,1.27685546875,-0.480712890625,1.3271484375,0.20166015625,1.32958984375,0.2027587890625,1.2130126953125,-0.38330078125,1.1527099609375,0.2032470703125,1.15380859375,-0.48193359375,1.215087890625,-0.38037109375,2.3095703125,0.2025146484375,2.3115234375,-0.380126953125,2.3603515625,0.202392578125,2.36328125,-0.97216796875,2.4013671875,-0.427734375,2.455078125,-0.97314453125,2.4541015625,-0.427734375,2.4013671875,-1.37890625,-1.3671875,-1.47265625,-1.375,-1.3779296875,-1.39453125,-1.47265625,-1.400390625,-0.84033203125,-0.400390625,-0.94677734375,-0.375,-0.94677734375,-0.4033203125,-0.83984375,-0.376953125,-0.666015625,0.532958984375,-0.794921875,0.522216796875,-0.6650390625,0.502197265625,-0.79443359375,0.494140625,-0.6474609375,0.870849609375,-0.78759765625,0.89593505859375,-0.78759765625,0.869873046875,-0.6474609375,0.8955078125,-0.83642578125,-0.2783203125,-0.94287109375,-0.287109375,-0.83544921875,-0.310546875,-0.9423828125,-0.31640625,-0.67626953125,0.21630859375,-0.7900390625,0.2421875,-0.7900390625,0.21484375,-0.67626953125,0.24169921875,-1.4609375,-1.216796875,-1.3681640625,-1.212890625,-1.3701171875,-1.181640625,-1.4638671875,-1.18359375,-1.46484375,-1.119140625,-1.3681640625,-1.123046875,-1.3681640625,-1.09375,-1.46484375,-1.091796875,-0.80517578125,0.40283203125,-0.6767578125,0.43212890625,-0.8056640625,0.4345703125,-0.6767578125,0.4013671875,-0.53125,1.0675048828125,-0.67529296875,1.0703125,-0.67529296875,1.04226684570313,-0.53076171875,1.04226684570313,-0.78857421875,-0.1376953125,-0.896484375,-0.109375,-0.89697265625,-0.1357421875,-0.7880859375,-0.111328125,-1.4404296875,-0.576171875,-1.337890625,-0.5810546875,-1.3388671875,-0.5537109375,-1.4404296875,-0.548828125,-1.3701171875,-0.90625,-1.466796875,-0.9150390625,-1.369140625,-0.935546875,-1.466796875,-0.94140625,-0.84033203125,-0.48828125,-0.9453125,-0.4619140625,
  861. -0.9453125,-0.490234375,-0.84033203125,-0.462890625,-0.666015625,0.716064453125,-0.79833984375,0.704833984375,-0.66455078125,0.684814453125,-0.7978515625,0.67626953125,-0.77734375,0.982177734375,-0.63525390625,0.956268310546875,-0.63525390625,0.981658935546875,-0.77734375,0.954925537109375,-1.4609375,-1.310546875,-1.3681640625,-1.306640625,-1.369140625,-1.275390625,-1.4638671875,-1.27734375,-1.4365234375,-0.666015625,-1.337890625,-0.6708984375,-1.3388671875,-0.6396484375,-1.4375,-0.6376953125,-0.80126953125,0.3056640625,-0.67529296875,0.33447265625,-0.8017578125,0.337890625,-0.67529296875,0.30712890625,-0.90087890625,-0.0478515625,-0.79248046875,-0.05078125,-0.8994140625,-0.0185546875,-0.791015625,-0.0244140625,-0.6640625,0.61669921875,-0.796875,0.619873046875,-0.79638671875,0.59130859375,-0.6640625,0.591796875,-0.94287109375,-0.220703125,-0.83447265625,-0.197265625,-0.94287109375,-0.1943359375,-0.83447265625,-0.22265625,0.16552734375,-0.09765625,1.3212890625,-0.0751953125,0.1787109375,-0.0771484375,1.3212890625,-0.1064453125,-1.3408203125,-0.8154296875,-1.4365234375,-0.82421875,-1.3388671875,-0.8447265625,-1.4365234375,-0.8505859375,0.2496337890625,0.972915649414063,1.23828125,0.993869781494141,0.2498779296875,0.993259429931641,1.25390625,0.9664306640625,-0.791015625,0.0419921875,-0.90185546875,0.0693359375,-0.90185546875,0.04052734375,-0.791015625,0.06689453125,-0.6494140625,0.8126220703125,-0.78369140625,0.8013916015625,-0.64794921875,0.78125,-0.783203125,0.7723388671875,-0.53076171875,1.128662109375,-0.6767578125,1.15478515625,-0.6767578125,1.1275634765625,-0.53076171875,1.154296875,-1.4619140625,-1.033203125,-1.3681640625,-1.03125,-1.3720703125,-1,-1.46484375,-1.001953125,-1.6123046875,-1.44921875,-1.51953125,-1.455078125,-1.5205078125,-1.42578125,-1.61328125,-1.423828125,-1.3388671875,-0.7333984375,-1.4365234375,-0.7265625,-1.4365234375,-0.7548828125,-1.33984375,-0.7587890625,-0.90185546875,0.12939453125,-0.791015625,0.154296875,-0.9013671875,0.15625,-0.79150390625,0.1279296875,0.1983642578125,0.548583984375,
  862. -0.6162109375,0.458984375,0.1983642578125,0.458984375,-0.6162109375,0.548583984375,0.1983642578125,0.6953125,-0.6162109375,0.6953125,0.1983642578125,0.605224609375,-0.6162109375,0.605224609375,-0.434814453125,1.75439453125,0.22314453125,1.75439453125,-0.434814453125,1.83544921875,0.22314453125,1.83544921875,0.21923828125,1.97412109375,-0.438720703125,1.89306640625,0.21923828125,1.89306640625,-0.438720703125,1.97412109375,-1.5791015625,-0.8330078125,-1.5810546875,-0.890625,-1.515625,-0.890625,-1.5146484375,-0.8330078125,-1.484375,-0.7744140625,-1.486328125,-0.716796875,-1.5478515625,-0.775390625,-1.5498046875,-0.7177734375,1.30859375,-0.3388671875,0.2403564453125,-0.4189453125,1.30859375,-0.4189453125,0.2403564453125,-0.3388671875,-0.281982421875,-1.267578125,-1.3203125,-1.271484375,-0.2822265625,-1.353515625,-1.3203125,-1.349609375,0.19091796875,0.765380859375,-0.59130859375,0.82861328125,-0.60009765625,0.751708984375,0.1993408203125,0.82861328125,-0.587890625,0.970046997070313,-0.57958984375,0.89404296875,0.1944580078125,0.95501708984375,0.20263671875,0.89056396484375,-1.56640625,-1.0703125,-1.564453125,-1.13671875,-1.5126953125,-1.072265625,-1.5146484375,-1.13671875,-1.515625,-0.9482421875,-1.5654296875,-0.94921875,-1.5146484375,-1.01171875,-1.56640625,-1.013671875,0.195068359375,0.3955078125,-0.6279296875,0.3046875,0.195068359375,0.3046875,-0.6279296875,0.3955078125,0.1947021484375,0.2412109375,-0.62841796875,0.2412109375,0.1947021484375,0.150390625,-0.62841796875,0.150390625,-0.41455078125,2.109375,0.21923828125,2.0322265625,0.21923828125,2.109375,-0.41455078125,2.0322265625,0.2119140625,2.2490234375,-0.421875,2.2490234375,-0.421875,2.1708984375,0.2119140625,2.1708984375,-1.552734375,-0.6591796875,-1.4892578125,-0.6591796875,-1.48828125,-0.603515625,-1.5517578125,-0.6025390625,-1.5517578125,-0.48828125,-1.55078125,-0.5439453125,-1.48828125,-0.54296875,-1.490234375,-0.4873046875,-0.99072265625,-0.1904296875,-1.0341796875,-0.189453125,-0.9912109375,-0.2275390625,-1.03515625,-0.2265625,-0.9931640625,0.01171875,-0.94921875,
  863. -0.0244140625,-0.94970703125,0.01318359375,-0.9921875,-0.025390625,-0.99462890625,-0.3876953125,-1.0419921875,-0.38671875,-0.99560546875,-0.427734375,-1.04296875,-0.427734375,-1.04296875,-0.2861328125,-0.99462890625,-0.3232421875,-0.99462890625,-0.283203125,-1.0419921875,-0.3271484375,-0.56884765625,1.5439453125,-0.9521484375,1.471435546875,-0.55517578125,1.472412109375,-0.9521484375,1.54296875,-0.49658203125,2.0009765625,-0.9365234375,1.9013671875,-0.4970703125,1.8984375,-0.97412109375,2.00390625,-0.92041015625,1.2147216796875,-0.5693359375,1.214111328125,-0.92041015625,1.287109375,-0.55908203125,1.28564453125,-0.9794921875,1.7294921875,-0.5029296875,1.73193359375,-0.94140625,1.83251953125,-0.50146484375,1.83544921875,-0.9755859375,2.2314453125,-0.48486328125,2.23828125,-0.94384765625,2.33203125,-0.48583984375,2.33984375,-0.53564453125,1.671875,-0.96337890625,1.67333984375,-0.5576171875,1.60205078125,-0.96337890625,1.60302734375,-0.486328125,2.16796875,-0.94384765625,2.0732421875,-0.482421875,2.064453125,-0.9755859375,2.1748046875,-0.5791015625,1.344970703125,-0.955078125,1.41357421875,-0.955078125,1.343017578125,-0.5595703125,1.4140625,-1.6025390625,-1.25,-1.505859375,-1.25,-1.6025390625,-1.189453125,-1.505859375,-1.189453125,-1.61328125,-1.36328125,-1.5146484375,-1.302734375,-1.61328125,-1.3046875,-1.5146484375,-1.36328125,-0.9482421875,-0.08984375,-0.9921875,-0.0888671875,-0.94921875,-0.126953125,-0.9931640625,-0.126953125,-0.9931640625,0.11181640625,-0.94970703125,0.076171875,-0.9501953125,0.11328125,-0.99267578125,0.07470703125,0.2364501953125,-0.474609375,0.255615234375,-0.60546875,0.77880859375,-0.4775390625,1.298828125,-0.603515625,1.2998046875,-0.4755859375,0.86083984375,-1.322265625,1.2998046875,-1.322265625,0.861328125,-1.25390625,1.48046875,-1.322265625,2.2421875,-1.251953125,2.26953125,-1.322265625,2.55078125,-1.322265625,2.55078125,-1.251953125,0.203369140625,1.4521484375,-0.196044921875,1.39208984375,0.203369140625,1.391845703125,-0.3505859375,1.452880859375,-0.474609375,1.392822265625,-0.1771240234375,
  864. 1.5751953125,0.22216796875,1.51513671875,0.22216796875,1.57568359375,-0.332763671875,1.515625,-0.455810546875,1.57470703125,0.22216796875,1.6923828125,-0.1702880859375,1.638671875,0.22216796875,1.638671875,-0.1702880859375,1.69189453125,-0.444091796875,1.63916015625,-0.444091796875,1.69189453125,1.4130859375,1.611328125,2.251953125,1.60791015625,1.4140625,1.73193359375,2.25390625,1.72119140625,2.55078125,1.60888671875,2.552734375,1.7314453125,1.416015625,1.79296875,2.255859375,1.91845703125,1.4140625,1.916015625,2.2578125,1.806640625,2.55078125,1.91845703125,2.552734375,1.7978515625,1.419921875,2.1484375,2.140625,2.1513671875,1.419921875,2.169921875,2.140625,2.1708984375,2.55078125,2.1474609375,2.552734375,2.1767578125,0.25146484375,2.3486328125,0.79052734375,2.3681640625,0.251953125,2.369140625,0.79052734375,2.3466796875,1.3740234375,2.3701171875,1.3740234375,2.3427734375,1.41796875,1.9775390625,1.99609375,1.9794921875,1.41796875,1.9990234375,1.99609375,2,2.55078125,1.97802734375,2.552734375,2.00390625,-0.24951171875,-0.7587890625,0.3505859375,-0.6630859375,-0.25244140625,-0.662109375,0.82666015625,-0.7646484375,0.81396484375,-0.6669921875,1.3759765625,0.56591796875,2.162109375,0.563720703125,1.3798828125,0.656982421875,2.166015625,0.6552734375,2.55078125,0.551025390625,2.55078125,0.64306640625,0.303466796875,1.45068359375,0.250244140625,1.316650390625,0.82568359375,1.314453125,1.3388671875,1.31982421875,1.3388671875,1.455322265625,0.246826171875,0.621826171875,1.2451171875,0.6435546875,0.246337890625,0.642822265625,0.7294921875,0.620361328125,1.3291015625,0.614013671875,1.37890625,0.38134765625,2.1640625,0.47509765625,1.375,0.47314453125,2.166015625,0.3837890625,2.55078125,0.49072265625,2.552734375,0.39892578125,0.2705078125,1.8486328125,0.87744140625,1.8466796875,0.270263671875,1.86865234375,0.8779296875,1.869140625,1.3671875,1.84375,1.3681640625,1.87158203125,0.65283203125,0.26513671875,0.24267578125,0.26416015625,0.1932373046875,0.24365234375,1.3203125,0.2412109375,1.322265625,0.27197265625,-0.787109375,-0.353515625,
  865. -0.2568359375,-0.3564453125,-0.78564453125,-0.24609375,-0.256103515625,-0.248046875,0.1925048828125,-0.3583984375,0.19384765625,-0.2509765625,-0.791015625,-0.5361328125,-0.262451171875,-0.42578125,-0.79296875,-0.4287109375,-0.26171875,-0.5341796875,0.1868896484375,-0.419921875,0.1883544921875,-0.5283203125,0.2474365234375,-0.279296875,0.74658203125,-0.2783203125,0.2474365234375,-0.259765625,0.74658203125,-0.2578125,1.3203125,-0.283203125,1.3193359375,-0.25,2.244140625,1.236083984375,1.3857421875,1.34765625,1.3876953125,1.22216796875,2.244140625,1.35009765625,2.552734375,1.22705078125,2.548828125,1.3515625,0.25244140625,2.4326171875,0.97021484375,2.4306640625,0.2529296875,2.4541015625,0.97021484375,2.451171875,1.3779296875,2.42578125,1.3779296875,2.455078125,1.423828125,2.4033203125,2.142578125,2.4052734375,1.4248046875,2.4248046875,2.142578125,2.42578125,2.55078125,2.40234375,2.552734375,2.4306640625,0.26171875,2.1767578125,0.87646484375,2.201171875,0.261474609375,2.19921875,0.8779296875,2.1767578125,1.373046875,2.203125,1.373046875,2.17578125,0.293701171875,-1.109375,-0.2264404296875,-0.98046875,-0.24560546875,-1.115234375,0.81103515625,-0.984375,0.81298828125,-1.111328125,1.3720703125,0.0498046875,2.16015625,0.14404296875,1.3681640625,0.1416015625,2.162109375,0.05224609375,2.55078125,0.1552734375,2.548828125,0.0634765625,0.241943359375,0.15771484375,0.65185546875,0.158203125,0.2415771484375,0.177734375,0.65185546875,0.1787109375,1.3193359375,0.15478515625,1.3203125,0.185546875,-1.291015625,-0.70703125,-0.7548828125,-0.6005859375,-1.2900390625,-0.5986328125,-0.317626953125,-0.712890625,-0.299072265625,-0.5966796875,-0.7548828125,-0.8876953125,-1.291015625,-0.7802734375,-1.2900390625,-0.888671875,-0.31689453125,-0.7744140625,-0.299072265625,-0.8916015625,0.250732421875,0.87890625,0.755859375,0.88037109375,0.2509765625,0.8994140625,0.755859375,0.90057373046875,1.3349609375,0.87530517578125,1.3359375,0.90869140625,1.3662109375,-0.32421875,2.240234375,-0.328125,1.3671875,-0.1982421875,2.240234375,-0.2099609375,2.55078125,
  866. -0.3271484375,2.552734375,-0.19921875,1.369140625,-0.142578125,2.244140625,-0.01171875,1.3671875,-0.0146484375,2.244140625,-0.12890625,2.55078125,-0.01171875,2.552734375,-0.1376953125,1.419921875,2.0634765625,2.140625,2.06640625,1.419921875,2.0849609375,2.140625,2.0859375,2.55078125,2.0625,2.552734375,2.091796875,1.34765625,-0.65234375,2.154296875,-0.654296875,1.3525390625,-0.55859375,2.15625,-0.560546875,2.55078125,-0.6669921875,2.552734375,-0.5732421875,0.2467041015625,0.708984375,0.7294921875,0.72900390625,0.2462158203125,0.72998046875,0.72900390625,0.707763671875,1.3291015625,0.732666015625,1.3291015625,0.701171875,1.359375,-0.498046875,2.158203125,-0.40234375,1.35546875,-0.404296875,2.16015625,-0.4951171875,2.55078125,-0.38671875,2.55078125,-0.4794921875,0.86083984375,-1.453125,1.2998046875,-1.3828125,0.8603515625,-1.3828125,1.48046875,-1.3828125,2.234375,-1.455078125,2.267578125,-1.3828125,2.55078125,-1.3828125,2.55078125,-1.455078125,-0.7431640625,-0.013671875,-0.236572265625,-0.015625,-0.7421875,0.08935546875,-0.2359619140625,0.087890625,0.195556640625,0.09130859375,0.195556640625,-0.01953125,-0.73974609375,-0.1875,-0.2342529296875,-0.08203125,-0.7412109375,-0.083984375,-0.2335205078125,-0.185546875,0.197998046875,-0.189453125,0.1978759765625,-0.078125,0.2420654296875,0.33642578125,0.7451171875,0.33544921875,0.2423095703125,0.3564453125,0.7451171875,0.35546875,1.322265625,0.3603515625,1.322265625,0.32763671875,0.2423095703125,0.06982421875,0.74462890625,0.09130859375,0.2423095703125,0.09033203125,0.74462890625,0.0712890625,1.3212890625,0.06640625,1.3212890625,0.09912109375,1.419921875,2.3232421875,2.140625,2.322265625,1.4208984375,2.3447265625,2.140625,2.341796875,2.55078125,2.345703125,2.552734375,2.3173828125,1.3818359375,0.8785400390625,2.08984375,0.8792724609375,1.3837890625,0.9786376953125,2.08984375,0.979156494140625,2.552734375,0.975067138671875,2.552734375,0.875,1.3828125,0.716796875,2.08984375,0.81298828125,1.380859375,0.81689453125,2.08984375,0.713134765625,2.55078125,0.71875,2.552734375,0.81884765625,
  867. 0.73583984375,1.05703735351563,0.253662109375,1.07904052734375,0.2529296875,1.05819702148438,0.73583984375,1.07830810546875,1.3388671875,1.08428955078125,1.3388671875,1.05239868164063,-0.251220703125,-0.9248046875,0.350830078125,-0.9189453125,-0.2493896484375,-0.828125,0.35107421875,-0.8193359375,0.81298828125,-0.8203125,0.81396484375,-0.91796875,0.266357421875,2.0107421875,0.87744140625,2.0341796875,0.26611328125,2.0322265625,0.87890625,2.0107421875,1.37109375,2.009765625,1.37109375,2.037109375,0.2467041015625,0.416015625,0.81884765625,0.42236328125,0.2454833984375,0.558349609375,0.81640625,0.55712890625,1.326171875,0.55078125,1.3271484375,0.41650390625,0.243896484375,-0.01171875,0.65283203125,-0.0126953125,0.243896484375,0.0087890625,0.65283203125,0.00732421875,1.3203125,0.01025390625,1.3212890625,-0.01953125,0.2459716796875,-0.185546875,0.74560546875,-0.1669921875,0.2462158203125,-0.166015625,0.74560546875,-0.1865234375,1.318359375,-0.1943359375,1.3203125,-0.162109375,1.3857421875,1.04095458984375,2.240234375,1.1527099609375,1.3857421875,1.1636962890625,2.240234375,1.037109375,2.548828125,1.03854370117188,2.552734375,1.16455078125,0.251220703125,1.2325439453125,0.7353515625,1.252685546875,0.251953125,1.25341796875,0.7353515625,1.2313232421875,1.337890625,1.227294921875,1.33984375,1.259033203125,0.27392578125,1.68408203125,0.919921875,1.7861328125,0.27099609375,1.7880859375,0.9208984375,1.6796875,1.365234375,1.6884765625,1.3662109375,1.7880859375,0.270263671875,1.5107421875,0.91845703125,1.517578125,0.2724609375,1.61474609375,0.9189453125,1.6240234375,1.36328125,1.615234375,1.365234375,1.515625,2.158203125,0.22705078125,1.373046875,0.32080078125,1.369140625,0.22900390625,2.16015625,0.31884765625,2.548828125,0.3037109375,2.55078125,0.2119140625,0.2509765625,0.7960205078125,0.734375,0.794677734375,0.25048828125,0.8170166015625,0.734375,0.8160400390625,1.333984375,0.8197021484375,1.3349609375,0.788330078125,0.2666015625,1.931640625,0.87548828125,1.9296875,0.2666015625,1.95166015625,0.87646484375,1.9521484375,1.3671875,
  868. 1.9541015625,1.3671875,1.9267578125,1.419921875,2.23828125,2.140625,2.2373046875,1.4208984375,2.259765625,2.140625,2.2568359375,2.55078125,2.2607421875,2.552734375,2.232421875,0.73583984375,1.144287109375,0.253662109375,1.166259765625,0.2529296875,1.1453857421875,0.73583984375,1.16552734375,1.337890625,1.17138671875,1.3388671875,1.1395263671875,-1.3125,-1.201171875,-0.7373046875,-1.111328125,-1.3154296875,-1.109375,-0.73681640625,-1.205078125,-0.29345703125,-1.20703125,-0.29296875,-1.11328125,-1.3203125,-1.052734375,-0.74267578125,-1.046875,-1.318359375,-0.9599609375,-0.74267578125,-0.9521484375,-0.299560546875,-0.953125,-0.29931640625,-1.044921875,0.259033203125,2.2607421875,0.87548828125,2.2841796875,0.2587890625,2.2822265625,0.876953125,2.259765625,1.373046875,2.2587890625,1.3740234375,2.287109375,0.267333984375,2.09765625,0.8798828125,2.1181640625,0.26708984375,2.1171875,0.87939453125,2.095703125,1.373046875,2.0927734375,1.373046875,2.1201171875,0.81298828125,-1.357421875,0.6103515625,-1.357421875,0.81298828125,-1.39453125,0.61669921875,-1.396484375,-0.234619140625,-1.39453125,-0.234619140625,-1.357421875,0.81298828125,-1.263671875,0.63232421875,-1.302734375,0.81298828125,-1.30078125,0.6328125,-1.265625,-0.234619140625,-1.263671875,-0.2344970703125,-1.30078125,2.55078125,-0.7265625,2.224609375,-0.7978515625,2.55078125,-0.7978515625,2.259765625,-0.7265625,0.86083984375,-0.7294921875,0.86083984375,-0.798828125,2.55078125,-1.12109375,2.234375,-1.119140625,2.55078125,-1.19140625,2.259765625,-1.19140625,0.86083984375,-1.189453125,0.86083984375,-1.119140625,2.361328125,1.54833984375,2.55078125,1.50732421875,2.55078125,1.54833984375,2.361328125,1.5078125,1.830078125,1.5078125,1.830078125,1.54833984375,1.7080078125,1.54833984375,1.7080078125,1.5078125,1.412109375,1.5078125,1.412109375,1.54833984375,2.55078125,1.4482421875,2.34375,1.4072265625,2.55078125,1.4072265625,2.337890625,1.447998046875,1.412109375,1.4501953125,1.412109375,1.4072265625,-0.281982421875,-1.416015625,-0.484619140625,-1.416015625,-0.281982421875,-1.455078125,
  869. -0.478271484375,-1.45703125,-1.330078125,-1.453125,-1.330078125,-1.41796875,0.81298828125,-1.169921875,0.63232421875,-1.208984375,0.81298828125,-1.20703125,0.6328125,-1.171875,-0.234619140625,-1.169921875,-0.2344970703125,-1.20703125,2.55078125,-0.8583984375,2.224609375,-0.9287109375,2.55078125,-0.9287109375,2.259765625,-0.8583984375,0.86083984375,-0.8603515625,0.86083984375,-0.9296875,2.55078125,-0.990234375,2.234375,-0.9892578125,2.55078125,-1.060546875,2.259765625,-1.060546875,0.86083984375,-1.05859375,0.86083984375,-0.9892578125
  870. }
  871. UVIndex: *1296 {
  872. a: 0,1,2,2,1,3,4,5,6,6,5,7,8,9,10,9,8,11,12,13,14,14,13,15,16,17,18,17,16,19,20,21,22,22,21,23,24,25,26,25,24,27,28,29,30,30,29,31,32,33,34,33,32,35,36,37,38,38,37,39,40,41,42,41,40,43,44,45,46,46,47,44,48,49,50,50,51,48,52,53,54,53,52,55,56,57,58,58,59,56,60,61,62,61,60,63,64,65,66,64,66,67,68,69,70,70,69,71,72,73,74,73,72,75,76,77,78,78,77,79,80,81,82,81,80,83,84,85,86,84,86,87,88,89,90,90,91,88,92,93,94,93,92,95,96,97,98,98,97,99,100,101,102,102,103,100,104,105,106,105,104,107,108,109,110,109,108,111,112,113,114,114,113,115,116,117,118,117,116,119,120,121,122,121,120,123,124,125,126,126,125,127,128,129,130,129,128,131,132,133,134,132,134,135,136,137,138,138,139,136,140,141,142,142,143,140,144,145,146,145,144,147,148,149,150,149,148,151,152,153,154,154,153,155,156,157,158,159,158,157,160,161,162,161,160,163,164,165,166,164,166,167,168,169,170,169,171,170,172,173,174,173,172,175,176,177,178,178,177,179,180,181,182,183,181,180,184,185,186,185,187,186,188,189,190,189,191,190,192,193,194,194,193,195,196,197,198,197,196,199,200,201,202,202,201,203,204,205,206,207,205,204,208,209,210,210,211,208,212,213,214,212,214,215,216,217,218,218,219,216,220,221,222,223,222,221,224,225,226,225,224,227,228,229,230,231,230,229,232,233,234,233,232,235,236,237,238,237,236,239,240,241,242,241,240,243,244,245,246,246,245,247,248,249,250,251,250,249,252,253,254,255,254,253,256,257,258,258,257,259,260,261,262,261,260,263,264,265,266,265,264,267,268,269,270,270,269,271,272,273,274,273,272,275,276,277,278,279,278,277,280,281,282,281,280,283,284,285,286,287,286,285,286,287,288,289,290,291,290,292,291,292,293,291,293,292,294,294,295,293,296,293,295,297,298,299,298,297,300,301,298,300,302,303,304,305,303,302,302,306,305,307,308,309,308,307,310,310,311,308,311,310,312,313,314,315,315,314,316,314,317,316,316,317,318,319,320,321,320,319,322,322,323,320,323,322,324,325,326,327,328,327,326,326,329,328,330,328,329,331,332,333,332,331,334,334,335,332,335,334,336,337,338,339,340,339,338,338,341,340,342,340,341,343,344,345,344,343,
  873. 346,344,346,347,348,349,350,350,349,351,349,352,351,351,352,353,354,355,356,357,354,356,354,357,358,359,360,361,360,359,362,360,362,363,364,365,366,365,364,367,367,368,365,368,367,369,370,371,372,373,372,371,371,374,373,375,373,374,376,377,378,378,379,376,380,376,379,381,382,383,383,382,384,382,385,384,384,385,386,387,388,389,388,387,390,390,391,388,391,390,392,393,394,395,396,395,394,394,397,396,398,396,397,399,400,401,400,399,402,403,402,399,402,403,404,405,406,407,408,407,406,406,409,408,410,408,409,411,412,413,414,413,412,412,415,414,416,414,415,417,418,419,418,417,420,420,421,418,421,420,422,423,424,425,423,426,424,426,423,427,428,429,430,429,428,431,431,432,429,432,431,433,434,435,436,437,436,435,435,438,437,439,437,438,440,441,442,441,440,443,441,443,444,445,446,447,446,445,448,448,445,449,450,451,452,453,452,451,451,454,453,455,453,454,456,457,458,458,457,459,457,460,459,459,460,461,462,463,464,463,462,465,465,466,463,466,465,467,468,469,470,471,470,469,469,472,471,473,471,472,474,475,476,476,475,477,475,478,477,477,478,479,480,481,482,481,480,483,483,484,481,484,483,485,486,487,488,487,486,489,489,490,487,490,489,491,492,493,494,492,495,493,496,495,492,495,496,497,496,498,497,498,496,499,500,501,502,502,501,503,501,504,503,504,501,505,506,507,508,507,506,509,510,507,509,507,510,511,512,513,514,515,514,513,513,516,515,516,513,517,518,519,520,519,518,521,521,522,519,523,519,522,524,525,526,527,526,525,525,528,527,528,525,529,530,531,532,532,531,533,531,534,533,534,531,535,536,537,538,537,536,539,539,540,537,537,540,541,542,543,544,543,542,545,542,546,545,546,542,547,548,549,550,550,549,551,549,552,551,552,549,553,554,555,556,555,554,557,557,558,555,559,555,558,560,561,562,562,561,563,561,564,563,564,561,565,566,567,568,569,568,567,567,570,569,570,567,571,572,573,574,573,572,575,575,576,573,577,573,576,578,579,580,579,578,581,581,582,579,579,582,583,584,585,586,585,584,587,588,585,587,585,588,589,590,591,592,591,590,593,594,591,593,591,594,595,596,597,598,598,597,599,597,600,599,600,597,601,602,603,604,603,602,
  874. 605,602,606,605,606,602,607,608,609,610,610,609,611,609,612,611,612,609,613,614,615,616,617,616,615,615,618,617,618,615,619,620,621,622,623,622,621,621,624,623,624,621,625,626,627,628,627,626,629,626,630,629,630,626,631,632,633,634,633,632,635,636,633,635,633,636,637,638,639,640,640,639,641,639,642,641,642,639,643,644,645,646,645,644,647,647,648,645,649,645,648,650,651,652,651,650,653,653,654,651,655,651,654,656,657,658,659,658,657,657,660,659,660,657,661,662,663,664,663,662,665,665,666,663,667,663,666,668,669,670,669,668,671,672,669,671,669,672,673,674,675,676,677,676,675,675,678,677,678,675,679,680,681,682,681,680,683,680,684,683,684,680,685,686,684,685,684,686,687,686,688,687,688,686,689,690,691,692,691,690,693,694,691,693,691,694,695,696,697,698,699,698,697,697,700,699,700,697,701,702,703,704,703,702,705,705,706,703,707,703,706,708,709,710,709,708,711,712,709,711,709,712,713,714,715,716,717,716,715,715,718,717,718,715,719
  875. }
  876. }
  877. LayerElementUV: 1 {
  878. Version: 101
  879. Name: "LightMapUV"
  880. MappingInformationType: "ByPolygonVertex"
  881. ReferenceInformationType: "IndexToDirect"
  882. UV: *1440 {
  883. a: 0.261962890625,0.3876953125,0.26171875,0.524169921875,0.25,0.40771484375,0.25,0.524169921875,0.47021484375,0.35546875,0.469970703125,0.49169921875,0.4599609375,0.35595703125,0.459716796875,0.49169921875,0.2181396484375,0.524169921875,0.2301025390625,0.40771484375,0.2298583984375,0.524169921875,0.2176513671875,0.3876953125,0.921875,0.1982421875,0.92138671875,0.314453125,0.91162109375,0.1982421875,0.9111328125,0.314453125,0.5830078125,0.107421875,0.572265625,0.2177734375,0.572265625,0.10693359375,0.5830078125,0.2177734375,0.67236328125,0.0888671875,0.65283203125,0.08740234375,0.67236328125,0.08349609375,0.65283203125,0.08251953125,0.787109375,0.099609375,0.76611328125,0.1044921875,0.76611328125,0.09912109375,0.787109375,0.1044921875,0.79296875,0.16943359375,0.76611328125,0.16748046875,0.79296875,0.16357421875,0.76611328125,0.162109375,0.79345703125,0.1318359375,0.76611328125,0.13720703125,0.76611328125,0.1318359375,0.79345703125,0.13671875,0.3212890625,0.13720703125,0.29833984375,0.1357421875,0.321533203125,0.13134765625,0.29833984375,0.13037109375,0.30517578125,0.099609375,0.2822265625,0.1044921875,0.2822265625,0.09912109375,0.305419921875,0.1044921875,0.740234375,0.10009765625,0.73974609375,0.12109375,0.73388671875,0.12060546875,0.734375,0.099609375,0.95947265625,0.08349609375,0.9794921875,0.08251953125,0.9794921875,0.08837890625,0.95947265625,0.0888671875,0.685546875,0.17919921875,0.71435546875,0.1845703125,0.685546875,0.18505859375,0.71435546875,0.17919921875,0.230712890625,0.13671875,0.2015380859375,0.13720703125,0.2015380859375,0.1318359375,0.230712890625,0.1318359375,0.70703125,0.0888671875,0.70166015625,0.06787109375,0.70703125,0.0673828125,0.7021484375,0.0888671875,0.20166015625,0.09912109375,0.222412109375,0.09814453125,0.22216796875,0.103515625,0.2017822265625,0.1044921875,0.62548828125,0.10498046875,0.6044921875,0.103515625,0.62548828125,0.099609375,0.6044921875,0.0986328125,0.5615234375,0.08349609375,0.5400390625,0.08837890625,0.5400390625,0.0830078125,0.5615234375,0.08837890625,
  884. 0.9716796875,0.185546875,0.943359375,0.18359375,0.9716796875,0.1796875,0.943359375,0.17822265625,0.25,0.13720703125,0.278564453125,0.1318359375,0.27880859375,0.13671875,0.25,0.1318359375,0.91162109375,0.11474609375,0.9326171875,0.115234375,0.93212890625,0.12109375,0.9111328125,0.1201171875,0.379150390625,0.08349609375,0.400146484375,0.08251953125,0.39990234375,0.08837890625,0.37890625,0.0888671875,0.814453125,0.1630859375,0.841796875,0.16845703125,0.81396484375,0.1689453125,0.84130859375,0.16357421875,0.814453125,0.13134765625,0.8359375,0.13037109375,0.814453125,0.13671875,0.83642578125,0.1357421875,0.54052734375,0.13720703125,0.5400390625,0.1103515625,0.5458984375,0.1103515625,0.54541015625,0.13720703125,0.9111328125,0.08349609375,0.9326171875,0.08837890625,0.9111328125,0.0888671875,0.9326171875,0.0830078125,0.480224609375,0.11279296875,0.4755859375,0.3310546875,0.47607421875,0.115234375,0.48193359375,0.3310546875,0.46435546875,0.10498046875,0.443603515625,0.103515625,0.464599609375,0.099609375,0.443603515625,0.0986328125,0.52880859375,0.2890625,0.5244140625,0.47412109375,0.52490234375,0.2890625,0.5302734375,0.47705078125,0.70849609375,0.115234375,0.685546875,0.12060546875,0.685546875,0.115234375,0.70849609375,0.1201171875,0.71435546875,0.2177734375,0.685546875,0.2158203125,0.71435546875,0.2119140625,0.685546875,0.21044921875,0.97265625,0.14794921875,0.943359375,0.1533203125,0.943359375,0.14794921875,0.97265625,0.15283203125,0.86328125,0.130859375,0.884765625,0.13134765625,0.8837890625,0.13671875,0.86279296875,0.13623046875,0.20166015625,0.0673828125,0.22021484375,0.06640625,0.22021484375,0.072265625,0.2015380859375,0.07275390625,0.8818359375,0.103515625,0.86279296875,0.10498046875,0.86279296875,0.09912109375,0.88134765625,0.0986328125,0.814453125,0.099609375,0.8369140625,0.1044921875,0.814453125,0.10498046875,0.8369140625,0.09912109375,0.1854248046875,0.70166015625,0.1995849609375,0.49658203125,0.1995849609375,0.70166015625,0.1854248046875,0.49658203125,0.423095703125,0.66943359375,0.2176513671875,0.66943359375,
  885. 0.423095703125,0.6552734375,0.2176513671875,0.6552734375,0.405517578125,0.36767578125,0.405517578125,0.57275390625,0.39501953125,0.36767578125,0.39501953125,0.57275390625,0.42724609375,0.57275390625,0.437744140625,0.36767578125,0.437744140625,0.57275390625,0.42724609375,0.36767578125,0.379150390625,0.12109375,0.37890625,0.10693359375,0.389404296875,0.10693359375,0.3896484375,0.12109375,0.421630859375,0.10693359375,0.42138671875,0.12109375,0.411376953125,0.10693359375,0.4111328125,0.12109375,0.10479736328125,0.70166015625,0.121826171875,0.503662109375,0.121826171875,0.70166015625,0.10479736328125,0.503662109375,0.056427001953125,0.70166015625,0.057342529296875,0.503662109375,0.0743408203125,0.70166015625,0.07342529296875,0.503662109375,0.41748046875,0.594970703125,0.2197265625,0.60498046875,0.2176513671875,0.5927734375,0.419677734375,0.60498046875,0.2176513671875,0.63720703125,0.2197265625,0.625244140625,0.41748046875,0.634765625,0.41943359375,0.624755859375,0.88330078125,0.185546875,0.8837890625,0.16845703125,0.8916015625,0.185546875,0.89111328125,0.16845703125,0.74609375,0.16943359375,0.73828125,0.16943359375,0.74609375,0.15283203125,0.73828125,0.15234375,0.1531982421875,0.70166015625,0.1676025390625,0.49658203125,0.1676025390625,0.70166015625,0.1531982421875,0.49658203125,0.55615234375,0.7662353515625,0.55615234375,0.560791015625,0.57080078125,0.7662353515625,0.57080078125,0.560791015625,0.9111328125,0.33251953125,0.9208984375,0.54052734375,0.9111328125,0.54052734375,0.9208984375,0.33251953125,0.87890625,0.54052734375,0.87890625,0.33251953125,0.88818359375,0.33251953125,0.88818359375,0.54052734375,0.95947265625,0.10693359375,0.96923828125,0.1064453125,0.96923828125,0.12109375,0.95947265625,0.12109375,0.25,0.10498046875,0.25,0.09033203125,0.259521484375,0.0908203125,0.25927734375,0.10498046875,0.328857421875,0.07275390625,0.314697265625,0.07275390625,0.32861328125,0.06787109375,0.314453125,0.068359375,0.58837890625,0.07275390625,0.6025390625,0.068359375,0.6025390625,0.0732421875,0.5888671875,0.068359375,0.26416015625,
  886. 0.07275390625,0.25,0.07275390625,0.263916015625,0.0673828125,0.25,0.0673828125,0.281982421875,0.07275390625,0.296142578125,0.06787109375,0.296142578125,0.0732421875,0.2822265625,0.0673828125,0.87890625,0.3037109375,0.89111328125,0.212890625,0.89111328125,0.306640625,0.87939453125,0.212890625,0.84912109375,0.572021484375,0.7578125,0.552978515625,0.84912109375,0.552490234375,0.75,0.57275390625,0.61669921875,0.12451171875,0.61669921875,0.20849609375,0.6044921875,0.12451171875,0.60498046875,0.2109375,0.45947265625,0.51953125,0.55859375,0.520263671875,0.467529296875,0.539306640625,0.55908203125,0.539794921875,0.368408203125,0.466796875,0.366943359375,0.569580078125,0.34912109375,0.4736328125,0.34765625,0.5693359375,0.6533203125,0.4365234375,0.65283203125,0.33837890625,0.6650390625,0.43115234375,0.6650390625,0.33837890625,0.31982421875,0.5712890625,0.2242431640625,0.553466796875,0.32080078125,0.5517578125,0.2176513671875,0.57275390625,0.55224609375,0.25439453125,0.54052734375,0.16796875,0.552734375,0.16796875,0.54052734375,0.25927734375,0.68505859375,0.142578125,0.7041015625,0.14208984375,0.68505859375,0.154296875,0.7041015625,0.154296875,0.921875,0.1513671875,0.91015625,0.17041015625,0.91015625,0.15087890625,0.921875,0.17041015625,0.441650390625,0.07275390625,0.427490234375,0.07275390625,0.44140625,0.06787109375,0.42724609375,0.068359375,0.459716796875,0.07275390625,0.4736328125,0.068359375,0.4736328125,0.0732421875,0.4599609375,0.068359375,0.685546875,0.943572998046875,0.689453125,0.91705322265625,0.791015625,0.94293212890625,0.892578125,0.91741943359375,0.892578125,0.943359375,0.2337646484375,0.7841796875,0.3212890625,0.7843017578125,0.2340087890625,0.7979736328125,0.357177734375,0.7843017578125,0.5087890625,0.79833984375,0.51416015625,0.7843017578125,0.5703125,0.7843017578125,0.5703125,0.7984619140625,0.2822265625,0.5244140625,0.2939453125,0.44482421875,0.294189453125,0.5244140625,0.281982421875,0.41357421875,0.2939453125,0.38916015625,0.314453125,0.44482421875,0.326416015625,0.5244140625,0.314453125,0.5244140625,0.326416015625,
  887. 0.41357421875,0.314697265625,0.38916015625,0.49169921875,0.4921875,0.501953125,0.41259765625,0.501953125,0.4921875,0.491943359375,0.41259765625,0.501953125,0.35693359375,0.491943359375,0.35693359375,0.45947265625,0.91766357421875,0.61376953125,0.9168701171875,0.459716796875,0.943603515625,0.6142578125,0.9412841796875,0.6689453125,0.91705322265625,0.6689453125,0.943450927734375,0.00830841064453125,0.91656494140625,0.1629638671875,0.943572998046875,0.00792694091796875,0.943023681640625,0.1630859375,0.91949462890625,0.2171630859375,0.94354248046875,0.21728515625,0.91754150390625,0.4169921875,0.13818359375,0.41650390625,0.271484375,0.41259765625,0.13818359375,0.412353515625,0.271484375,0.417236328125,0.3466796875,0.4111328125,0.34716796875,0.5126953125,0.05712890625,0.50830078125,0.15771484375,0.5078125,0.05712890625,0.5126953125,0.15771484375,0.5078125,0.2666015625,0.513671875,0.2666015625,0.175048828125,0.04052734375,0.1746826171875,0.1474609375,0.17041015625,0.04052734375,0.1700439453125,0.1474609375,0.1749267578125,0.25048828125,0.1693115234375,0.25048828125,0.91455078125,0.556640625,0.89501953125,0.675048828125,0.89501953125,0.55615234375,0.91552734375,0.7689208984375,0.89599609375,0.766357421875,0.2337646484375,0.826171875,0.371337890625,0.82568359375,0.2344970703125,0.8468017578125,0.37158203125,0.846435546875,0.439208984375,0.82275390625,0.439208984375,0.8436279296875,0.6953125,0.991043090820313,0.68505859375,0.963165283203125,0.794921875,0.96270751953125,0.892578125,0.963836669921875,0.892578125,0.99200439453125,0.62548828125,0.23876953125,0.62109375,0.42822265625,0.62109375,0.23876953125,0.6259765625,0.330078125,0.626953125,0.44384765625,0.68603515625,0.870361328125,0.8232421875,0.89166259765625,0.68505859375,0.89117431640625,0.8232421875,0.8709716796875,0.890625,0.89520263671875,0.890625,0.8743896484375,0.351318359375,0.013671875,0.351806640625,0.12646484375,0.34716796875,0.01318359375,0.346923828125,0.126953125,0.3525390625,0.2177734375,0.3466796875,0.21826171875,0.44482421875,0.205078125,0.445068359375,0.12744140625,
  888. 0.44921875,0.1181640625,0.44970703125,0.33056640625,0.443359375,0.3310546875,0.5283203125,0.560302734375,0.52880859375,0.671630859375,0.5078125,0.560546875,0.50830078125,0.671875,0.529296875,0.7659912109375,0.5087890625,0.766357421875,0.2340087890625,0.744140625,0.344970703125,0.7650146484375,0.2337646484375,0.7645263671875,0.34521484375,0.74462890625,0.439453125,0.7662353515625,0.439697265625,0.745849609375,0.1591796875,0.27587890625,0.158935546875,0.369140625,0.155029296875,0.27587890625,0.15478515625,0.369140625,0.159912109375,0.47607421875,0.153076171875,0.47607421875,0.9365234375,0.93707275390625,0.91162109375,0.7835693359375,0.939453125,0.783935546875,0.9111328125,0.93701171875,0.9384765625,0.992034912109375,0.9111328125,0.991661071777344,0.72216796875,0.236328125,0.72265625,0.36865234375,0.7177734375,0.236328125,0.71826171875,0.36865234375,0.7236328125,0.44384765625,0.71728515625,0.44384765625,0.2236328125,0.1552734375,0.22314453125,0.28759765625,0.2191162109375,0.1552734375,0.2188720703125,0.28759765625,0.223876953125,0.36328125,0.2176513671875,0.36328125,0.078125,0.04248046875,0.07305908203125,0.1572265625,0.073486328125,0.04248046875,0.078125,0.15771484375,0.072509765625,0.25,0.078369140625,0.25048828125,0.339599609375,0.91766357421875,0.23779296875,0.943695068359375,0.2340087890625,0.91644287109375,0.44091796875,0.94287109375,0.441162109375,0.91729736328125,0.00872039794921875,0.822998046875,0.1468505859375,0.84423828125,0.0080108642578125,0.84375,0.147216796875,0.823486328125,0.2154541015625,0.8468017578125,0.2149658203125,0.8260498046875,0.384765625,0.1435546875,0.384521484375,0.22119140625,0.38037109375,0.1435546875,0.38037109375,0.22119140625,0.38525390625,0.3466796875,0.37890625,0.34716796875,0.8671875,0.589599609375,0.84716796875,0.70263671875,0.8466796875,0.589599609375,0.86865234375,0.794677734375,0.8466796875,0.798583984375,0.8193359375,0.702392578125,0.79931640625,0.58935546875,0.81982421875,0.58984375,0.79833984375,0.7947998046875,0.8203125,0.798583984375,0.56201171875,0.2890625,0.56201171875,
  889. 0.3837890625,0.55810546875,0.2890625,0.5576171875,0.3837890625,0.56298828125,0.4921875,0.55615234375,0.4921875,0.45947265625,0.9638671875,0.61376953125,0.962982177734375,0.459716796875,0.991973876953125,0.6142578125,0.989471435546875,0.6689453125,0.963226318359375,0.6689453125,0.991798400878906,0.00830841064453125,0.962677001953125,0.1629638671875,0.991935729980469,0.00792694091796875,0.991363525390625,0.1630859375,0.9658203125,0.21728515625,0.991920471191406,0.2174072265625,0.963775634765625,0.3203125,0.154296875,0.31982421875,0.28759765625,0.315673828125,0.154296875,0.3154296875,0.28759765625,0.320556640625,0.36279296875,0.314208984375,0.36328125,0.2337646484375,0.8739013671875,0.3740234375,0.8734130859375,0.2344970703125,0.89520263671875,0.37451171875,0.894775390625,0.443115234375,0.8704833984375,0.443359375,0.8919677734375,0.59326171875,0.23876953125,0.58935546875,0.330078125,0.5888671875,0.23828125,0.59375,0.330078125,0.58837890625,0.44384765625,0.5947265625,0.44384765625,0.0087127685546875,0.8701171875,0.1485595703125,0.89166259765625,0.00799560546875,0.89111328125,0.14892578125,0.87060546875,0.2174072265625,0.89520263671875,0.217529296875,0.8741455078125,0.6025390625,0.4619140625,0.58837890625,0.54931640625,0.58837890625,0.4619140625,0.58837890625,0.58544921875,0.6025390625,0.7353515625,0.58837890625,0.7421875,0.58837890625,0.7984619140625,0.6025390625,0.7984619140625,0.00801849365234375,0.731201171875,0.1197509765625,0.73095703125,0.00827789306640625,0.749755859375,0.11993408203125,0.74951171875,0.215087890625,0.7501220703125,0.215087890625,0.730224609375,0.962890625,0.5595703125,0.94384765625,0.671142578125,0.9443359375,0.55908203125,0.96240234375,0.671142578125,0.96337890625,0.766357421875,0.943359375,0.7662353515625,0.0936279296875,0.2744140625,0.0938720703125,0.36865234375,0.08941650390625,0.2744140625,0.0897216796875,0.36865234375,0.088623046875,0.47607421875,0.095458984375,0.47607421875,0.126953125,0.27490234375,0.12249755859375,0.36865234375,0.12274169921875,0.27490234375,0.1265869140625,0.36865234375,
  890. 0.127685546875,0.47607421875,0.12091064453125,0.47607421875,0.286865234375,0.154296875,0.287353515625,0.28759765625,0.282470703125,0.154296875,0.282958984375,0.28759765625,0.281982421875,0.36328125,0.288330078125,0.36328125,0.00800323486328125,0.776123046875,0.135009765625,0.7763671875,0.00829315185546875,0.79833984375,0.134765625,0.7984619140625,0.217529296875,0.7974853515625,0.217529296875,0.775390625,0.685546875,0.82421875,0.81201171875,0.8455810546875,0.68505859375,0.846435546875,0.81201171875,0.823486328125,0.89453125,0.82470703125,0.89501953125,0.8468017578125,0.1910400390625,0.36181640625,0.1865234375,0.2705078125,0.1907958984375,0.2705078125,0.1866455078125,0.36181640625,0.1854248046875,0.47607421875,0.19189453125,0.47607421875,0.480712890625,0.556396484375,0.4794921875,0.675048828125,0.461181640625,0.556640625,0.45947265625,0.675048828125,0.459716796875,0.7662353515625,0.479248046875,0.766357421875,0.142578125,0.04443359375,0.1375732421875,0.158203125,0.137939453125,0.04443359375,0.142578125,0.15869140625,0.142822265625,0.25,0.136962890625,0.25048828125,0.2340087890625,0.962493896484375,0.343505859375,0.96380615234375,0.2337646484375,0.991966247558594,0.343017578125,0.991714477539063,0.440673828125,0.990402221679688,0.44091796875,0.962615966796875,0.65771484375,0.111328125,0.65771484375,0.1884765625,0.6533203125,0.111328125,0.65380859375,0.1884765625,0.65283203125,0.31494140625,0.6591796875,0.31494140625,0.0614013671875,0.27587890625,0.0574951171875,0.369140625,0.057220458984375,0.27587890625,0.061614990234375,0.369140625,0.063232421875,0.47607421875,0.056396484375,0.47607421875,0.98681640625,0.7833251953125,0.9619140625,0.9364013671875,0.95947265625,0.783447265625,0.98779296875,0.936279296875,0.9873046875,0.991645812988281,0.95947265625,0.992042541503906,0.35205078125,0.23779296875,0.347900390625,0.32958984375,0.34765625,0.23779296875,0.352294921875,0.32958984375,0.35302734375,0.443359375,0.346435546875,0.44384765625,0.77099609375,0.589111328125,0.75,0.712890625,0.75,0.588623046875,0.77197265625,0.713134765625,
  891. 0.7705078125,0.79833984375,0.74951171875,0.7984619140625,0.459716796875,0.823486328125,0.583984375,0.824951171875,0.460205078125,0.844970703125,0.583984375,0.8468017578125,0.66943359375,0.8450927734375,0.66943359375,0.824462890625,0.59814453125,0.8740234375,0.460205078125,0.89520263671875,0.45947265625,0.87451171875,0.59814453125,0.894775390625,0.66650390625,0.89141845703125,0.6669921875,0.87060546875,0.68994140625,0.23828125,0.6904296875,0.330078125,0.685546875,0.23828125,0.68603515625,0.330078125,0.68505859375,0.44384765625,0.69140625,0.44384765625,0.0128326416015625,0.0283203125,0.0132522583007813,0.14208984375,0.0086212158203125,0.0283203125,0.00844573974609375,0.14208984375,0.00804901123046875,0.23388671875,0.01385498046875,0.234375,0.254638671875,0.154296875,0.2548828125,0.28759765625,0.25,0.154296875,0.250732421875,0.28759765625,0.2498779296875,0.36328125,0.256103515625,0.36328125,0.0136260986328125,0.345703125,0.0091094970703125,0.25439453125,0.0133819580078125,0.25439453125,0.00926971435546875,0.345703125,0.00806427001953125,0.4599609375,0.0146026611328125,0.4599609375,0.0258941650390625,0.4921875,0.00836181640625,0.6103515625,0.00806427001953125,0.49169921875,0.0265960693359375,0.610595703125,0.02691650390625,0.701904296875,0.00901031494140625,0.701904296875,0.2340087890625,0.698486328125,0.352783203125,0.69970703125,0.234375,0.71630859375,0.352783203125,0.7177734375,0.44384765625,0.7177734375,0.44384765625,0.699951171875,0.045867919921875,0.04052734375,0.040863037109375,0.15673828125,0.041259765625,0.04052734375,0.0458984375,0.15673828125,0.046142578125,0.25,0.040283203125,0.25048828125,0.10955810546875,0.0419921875,0.10516357421875,0.1572265625,0.10540771484375,0.0419921875,0.1099853515625,0.1572265625,0.110595703125,0.25048828125,0.10479736328125,0.25048828125,0.8466796875,0.5244140625,0.8466796875,0.45947265625,0.85107421875,0.5244140625,0.8515625,0.46142578125,0.85107421875,0.18798828125,0.8466796875,0.18798828125,0.75,0.5244140625,0.75439453125,0.46630859375,0.75439453125,0.5244140625,0.75,0.46630859375,
  892. 0.75,0.18798828125,0.75439453125,0.18798828125,0.62060546875,0.7984619140625,0.634765625,0.7333984375,0.634765625,0.7984619140625,0.62060546875,0.740478515625,0.62109375,0.46240234375,0.634765625,0.46240234375,0.7177734375,0.7984619140625,0.71728515625,0.7353515625,0.73193359375,0.7984619140625,0.7314453125,0.740478515625,0.7314453125,0.46240234375,0.71728515625,0.46240234375,0.9755859375,0.484375,0.98095703125,0.54052734375,0.9755859375,0.54052734375,0.98095703125,0.484375,0.98095703125,0.32763671875,0.9755859375,0.32763671875,0.9755859375,0.29150390625,0.98095703125,0.29150390625,0.98095703125,0.2041015625,0.9755859375,0.2041015625,0.943359375,0.54052734375,0.94873046875,0.47900390625,0.94873046875,0.54052734375,0.943359375,0.4775390625,0.94287109375,0.2041015625,0.94873046875,0.2041015625,0.7822265625,0.5244140625,0.7822265625,0.45947265625,0.78662109375,0.5244140625,0.787109375,0.46142578125,0.78662109375,0.18798828125,0.7822265625,0.18798828125,0.814453125,0.5244140625,0.81884765625,0.46630859375,0.81884765625,0.5244140625,0.814453125,0.46630859375,0.814453125,0.18798828125,0.81884765625,0.18798828125,0.65283203125,0.7984619140625,0.6669921875,0.7333984375,0.6669921875,0.7984619140625,0.65283203125,0.740478515625,0.6533203125,0.46240234375,0.6669921875,0.46240234375,0.685546875,0.7984619140625,0.68505859375,0.735595703125,0.69970703125,0.7984619140625,0.69921875,0.740478515625,0.69921875,0.46240234375,0.68505859375,0.46240234375
  893. }
  894. UVIndex: *1296 {
  895. a: 0,1,2,2,1,3,4,5,6,6,5,7,8,9,10,9,8,11,12,13,14,14,13,15,16,17,18,17,16,19,20,21,22,22,21,23,24,25,26,25,24,27,28,29,30,30,29,31,32,33,34,33,32,35,36,37,38,38,37,39,40,41,42,41,40,43,44,45,46,46,47,44,48,49,50,50,51,48,52,53,54,53,52,55,56,57,58,58,59,56,60,61,62,61,60,63,64,65,66,64,66,67,68,69,70,70,69,71,72,73,74,73,72,75,76,77,78,78,77,79,80,81,82,81,80,83,84,85,86,84,86,87,88,89,90,90,91,88,92,93,94,93,92,95,96,97,98,98,97,99,100,101,102,102,103,100,104,105,106,105,104,107,108,109,110,109,108,111,112,113,114,114,113,115,116,117,118,117,116,119,120,121,122,121,120,123,124,125,126,126,125,127,128,129,130,129,128,131,132,133,134,132,134,135,136,137,138,138,139,136,140,141,142,142,143,140,144,145,146,145,144,147,148,149,150,149,148,151,152,153,154,154,153,155,156,157,158,159,158,157,160,161,162,161,160,163,164,165,166,164,166,167,168,169,170,169,171,170,172,173,174,173,172,175,176,177,178,178,177,179,180,181,182,183,181,180,184,185,186,185,187,186,188,189,190,189,191,190,192,193,194,194,193,195,196,197,198,197,196,199,200,201,202,202,201,203,204,205,206,207,205,204,208,209,210,210,211,208,212,213,214,212,214,215,216,217,218,218,219,216,220,221,222,223,222,221,224,225,226,225,224,227,228,229,230,231,230,229,232,233,234,233,232,235,236,237,238,237,236,239,240,241,242,241,240,243,244,245,246,246,245,247,248,249,250,251,250,249,252,253,254,255,254,253,256,257,258,258,257,259,260,261,262,261,260,263,264,265,266,265,264,267,268,269,270,270,269,271,272,273,274,273,272,275,276,277,278,279,278,277,280,281,282,281,280,283,284,285,286,287,286,285,286,287,288,289,290,291,290,292,291,292,293,291,293,292,294,294,295,293,296,293,295,297,298,299,298,297,300,301,298,300,302,303,304,305,303,302,302,306,305,307,308,309,308,307,310,310,311,308,311,310,312,313,314,315,315,314,316,314,317,316,316,317,318,319,320,321,320,319,322,322,323,320,323,322,324,325,326,327,328,327,326,326,329,328,330,328,329,331,332,333,332,331,334,334,335,332,335,334,336,337,338,339,340,339,338,338,341,340,342,340,341,343,344,345,344,343,
  896. 346,344,346,347,348,349,350,350,349,351,349,352,351,351,352,353,354,355,356,357,354,356,354,357,358,359,360,361,360,359,362,360,362,363,364,365,366,365,364,367,367,368,365,368,367,369,370,371,372,373,372,371,371,374,373,375,373,374,376,377,378,378,379,376,380,376,379,381,382,383,383,382,384,382,385,384,384,385,386,387,388,389,388,387,390,390,391,388,391,390,392,393,394,395,396,395,394,394,397,396,398,396,397,399,400,401,400,399,402,403,402,399,402,403,404,405,406,407,408,407,406,406,409,408,410,408,409,411,412,413,414,413,412,412,415,414,416,414,415,417,418,419,418,417,420,420,421,418,421,420,422,423,424,425,423,426,424,426,423,427,428,429,430,429,428,431,431,432,429,432,431,433,434,435,436,437,436,435,435,438,437,439,437,438,440,441,442,441,440,443,441,443,444,445,446,447,446,445,448,448,445,449,450,451,452,453,452,451,451,454,453,455,453,454,456,457,458,458,457,459,457,460,459,459,460,461,462,463,464,463,462,465,465,466,463,466,465,467,468,469,470,471,470,469,469,472,471,473,471,472,474,475,476,476,475,477,475,478,477,477,478,479,480,481,482,481,480,483,483,484,481,484,483,485,486,487,488,487,486,489,489,490,487,490,489,491,492,493,494,492,495,493,496,495,492,495,496,497,496,498,497,498,496,499,500,501,502,502,501,503,501,504,503,504,501,505,506,507,508,507,506,509,510,507,509,507,510,511,512,513,514,515,514,513,513,516,515,516,513,517,518,519,520,519,518,521,521,522,519,523,519,522,524,525,526,527,526,525,525,528,527,528,525,529,530,531,532,532,531,533,531,534,533,534,531,535,536,537,538,537,536,539,539,540,537,537,540,541,542,543,544,543,542,545,542,546,545,546,542,547,548,549,550,550,549,551,549,552,551,552,549,553,554,555,556,555,554,557,557,558,555,559,555,558,560,561,562,562,561,563,561,564,563,564,561,565,566,567,568,569,568,567,567,570,569,570,567,571,572,573,574,573,572,575,575,576,573,577,573,576,578,579,580,579,578,581,581,582,579,579,582,583,584,585,586,585,584,587,588,585,587,585,588,589,590,591,592,591,590,593,594,591,593,591,594,595,596,597,598,598,597,599,597,600,599,600,597,601,602,603,604,603,602,
  897. 605,602,606,605,606,602,607,608,609,610,610,609,611,609,612,611,612,609,613,614,615,616,617,616,615,615,618,617,618,615,619,620,621,622,623,622,621,621,624,623,624,621,625,626,627,628,627,626,629,626,630,629,630,626,631,632,633,634,633,632,635,636,633,635,633,636,637,638,639,640,640,639,641,639,642,641,642,639,643,644,645,646,645,644,647,647,648,645,649,645,648,650,651,652,651,650,653,653,654,651,655,651,654,656,657,658,659,658,657,657,660,659,660,657,661,662,663,664,663,662,665,665,666,663,667,663,666,668,669,670,669,668,671,672,669,671,669,672,673,674,675,676,677,676,675,675,678,677,678,675,679,680,681,682,681,680,683,680,684,683,684,680,685,686,684,685,684,686,687,686,688,687,688,686,689,690,691,692,691,690,693,694,691,693,691,694,695,696,697,698,699,698,697,697,700,699,700,697,701,702,703,704,703,702,705,705,706,703,707,703,706,708,709,710,709,708,711,712,709,711,709,712,713,714,715,716,717,716,715,715,718,717,718,715,719
  898. }
  899. }
  900. LayerElementSmoothing: 0 {
  901. Version: 102
  902. Name: ""
  903. MappingInformationType: "ByEdge"
  904. ReferenceInformationType: "Direct"
  905. Smoothing: *660 {
  906. 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,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,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,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,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
  907. }
  908. }
  909. LayerElementMaterial: 0 {
  910. Version: 101
  911. Name: ""
  912. MappingInformationType: "AllSame"
  913. ReferenceInformationType: "IndexToDirect"
  914. Materials: *1 {
  915. a: 0
  916. }
  917. }
  918. Layer: 0 {
  919. Version: 100
  920. LayerElement: {
  921. Type: "LayerElementNormal"
  922. TypedIndex: 0
  923. }
  924. LayerElement: {
  925. Type: "LayerElementBinormal"
  926. TypedIndex: 0
  927. }
  928. LayerElement: {
  929. Type: "LayerElementTangent"
  930. TypedIndex: 0
  931. }
  932. LayerElement: {
  933. Type: "LayerElementMaterial"
  934. TypedIndex: 0
  935. }
  936. LayerElement: {
  937. Type: "LayerElementSmoothing"
  938. TypedIndex: 0
  939. }
  940. LayerElement: {
  941. Type: "LayerElementUV"
  942. TypedIndex: 0
  943. }
  944. }
  945. Layer: 1 {
  946. Version: 100
  947. LayerElement: {
  948. Type: "LayerElementBinormal"
  949. TypedIndex: 1
  950. }
  951. LayerElement: {
  952. Type: "LayerElementTangent"
  953. TypedIndex: 1
  954. }
  955. LayerElement: {
  956. Type: "LayerElementUV"
  957. TypedIndex: 1
  958. }
  959. }
  960. }
  961. Geometry: 2267733762208, "Geometry::", "Mesh" {
  962. Vertices: *192 {
  963. a: 197.28076171875,1.25,172.036926269531,197.898193359375,-1.04716491699219,19.2659454345703,197.998046875,14.4256286621094,149.646514892578,197.400634765625,12.0970153808594,19.0440979003906,185.847900390625,1.92828369140625,172.024948120117,186.296997070313,-1.691162109375,19.3456420898438,186.5654296875,15.1039123535156,149.634796142578,185.809326171875,11.6593627929688,19.1442260742188,-185.52685546875,17.03173828125,142.371215820313,-197.0439453125,13.5959777832031,18.5198669433594,-197.14697265625,16.4241333007813,142.567306518555,-185.321044921875,13.5959777832031,18.5198669433594,200.128631591797,3.02267456054688,201.802825927734,-199.90625,2.89352416992188,202.121734619141,200.172332763672,-1.9808349609375,199.616500854492,-199.920776367188,-2.08447265625,199.850463867188,-201.59033203125,94.9423522949219,-15.65576171875,200.089813232422,100.011016845703,-13.4085998535156,200.099578857422,94.997802734375,-15.6108703613281,-201.554077148438,99.973388671875,-13.42236328125,-183.299560546875,1.88943481445313,195.838272094727,-199.07080078125,95.45849609375,-14.2222290039063,-199.176513671875,1.88943481445313,195.838272094727,-183.299560546875,95.45849609375,-14.2222290039063,-199.176513671875,-9.43081665039063,192.721405029297,-199.07080078125,84.3519592285156,-17.2437744140625,-183.299560546875,-9.43081665039063,192.721405029297,-183.299560546875,84.3519592285156,-17.2437744140625,8.956787109375,3.8558349609375,187.834762573242,-10.007568359375,95.6069641113281,-13.97216796875,-10.1514892578125,3.85549926757813,187.830764770508,8.9600830078125,95.6049194335938,-13.9710388183594,-10.15576171875,-9.69329833984375,184.474182128906,-10.005859375,82.26806640625,-17.2437744140625,8.95751953125,-9.69329833984375,184.474182128906,8.95751953125,82.26806640625,-17.2437744140625,199.1455078125,1.03756713867188,195.717132568359,183.052001953125,94.6109619140625,-14.352783203125,182.94677734375,1.03759765625,195.716735839844,199.145751953125,94.6109619140625,-14.352783203125,182.9462890625,-9.4307861328125,192.721374511719,
  964. 183.052001953125,84.3519287109375,-17.2438354492188,199.145751953125,-9.4307861328125,192.721374511719,199.145751953125,84.3519287109375,-17.2438354492188,185.270141601563,-34.9561767578125,-1.54461669921875,198.534423828125,78.7276916503906,-1.83761596679688,198.669555664063,-35.1261291503906,-1.53103637695313,185.1376953125,78.7276916503906,-1.83761596679688,198.534423828125,69.6153259277344,20.0041809082031,198.599487304688,-35.0591125488281,20.3279724121094,185.1376953125,69.6153259277344,20.0041809082031,185.324096679688,-34.9286346435547,20.2912750244141,-198.276123046875,79.0201721191406,-2.27285766601563,-198.054931640625,-39.3998260498047,-1.56199645996094,-198.276123046875,71.2047729492188,19.1365356445313,-197.906616210938,-39.2758178710938,19.8416137695313,-184.499389648438,-39.3993225097656,-1.57223510742188,-184.725830078125,79.0201721191406,-2.27285766601563,-184.725830078125,71.2047729492188,19.1365356445313,-184.624267578125,-39.3636016845703,19.9499969482422,-185.321044921875,0.1890869140625,18.5198364257813,-185.2109375,2.85128784179688,170.065811157227,-197.0439453125,0.1890869140625,18.5198364257813,-196.746826171875,2.48336791992188,170.065826416016
  965. }
  966. PolygonVertexIndex: *168 {
  967. a: 2,0,1,-4,0,4,5,-2,6,7,5,-5,6,2,3,-8,9,10,8,-12,14,12,13,-16,17,18,16,-20,21,22,20,-24,26,24,25,-28,27,23,20,-27,25,24,22,-22,20,22,24,-27,23,27,25,-22,29,30,28,-32,34,32,33,-36,35,31,28,-35,30,29,33,-33,34,28,30,-33,35,33,29,-32,37,38,36,-40,42,40,41,-44,36,42,43,-40,38,37,41,-41,38,40,42,-37,37,39,43,-42,45,46,44,-48,48,49,46,-46,48,50,51,-50,50,47,44,-52,54,52,53,-56,56,53,52,-58,58,59,56,-58,58,54,55,-60,59,55,53,-57,46,49,51,-45,60,11,8,-62,10,9,62,-64,63,62,60,-62,14,15,16,-19,13,12,17,-20,16,15,13,-20,17,12,14,-19
  968. }
  969. Edges: *96 {
  970. a: 1,0,2,3,5,4,6,8,9,11,12,14,16,17,18,19,21,20,22,23,24,25,26,27,28,29,30,31,33,32,34,35,36,38,41,43,52,53,54,55,57,56,58,59,60,62,65,67,76,77,78,79,81,80,82,83,84,86,89,91,100,101,102,103,104,105,107,109,108,110,112,114,117,116,119,118,120,122,123,124,125,127,128,130,140,143,142,145,146,147,149,151,153,155,157,159
  971. }
  972. GeometryVersion: 124
  973. LayerElementNormal: 0 {
  974. Version: 102
  975. Name: ""
  976. MappingInformationType: "ByPolygonVertex"
  977. ReferenceInformationType: "Direct"
  978. Normals: *504 {
  979. a: 0.999966621398926,-0.00817281473428011,0.000204056617803872,0.999966621398926,-0.00817281380295753,0.000204056603251956,0.999966681003571,-0.00817281473428011,0.000204056617803872,0.999966621398926,-0.00817281473428011,0.000204056617803872,-0.00143132673110813,-0.999811470508575,0.019361475482583,-0.00143132661469281,-0.99981153011322,0.019361475482583,-0.00143132661469281,-0.99981153011322,0.0193614773452282,-0.00143132661469281,-0.999811470508575,0.019361475482583,-0.999955534934998,0.00938864424824715,0.000849915842991322,-0.999955475330353,0.00938864331692457,0.000849915726576,-0.999955594539642,0.00938864517956972,0.000849915901198983,-0.999955594539642,0.00938864517956972,0.000849915784783661,0.0103631382808089,0.999700784683228,-0.0221586488187313,0.0103631382808089,0.999700784683228,-0.0221586469560862,0.0103631373494864,0.999700784683228,-0.0221586488187313,0.0103631382808089,0.999700784683228,-0.0221586469560862,-0.0262245275080204,0.999336242675781,-0.0252839159220457,-0.0262245275080204,0.999336242675781,-0.0252839177846909,-0.0262245256453753,0.999336242675781,-0.0252839177846909,-0.0262245275080204,0.999336302280426,-0.0252839159220457,0.000749571365304291,-0.407768368721008,0.913085103034973,0.000749571423511952,-0.407768368721008,0.913085162639618,0.00074957130709663,-0.407768368721008,0.913085103034973,0.000749571423511952,-0.407768398523331,0.913085162639618,1.99842233996606e-005,0.403973907232285,-0.914770483970642,1.99842233996606e-005,0.403973877429962,-0.914770483970642,1.99842270376394e-005,0.403973937034607,-0.914770603179932,1.99842233996606e-005,0.40397384762764,-0.914770543575287,0,0.913474261760712,0.406896471977234,0,0.913474261760712,0.406896501779556,0,0.913474261760712,0.406896471977234,0,0.913474261760712,0.406896471977234,0,-0.913059711456299,-0.407825797796249,0,-0.913059771060944,-0.407825797796249,0,-0.913059711456299,-0.407825797796249,0,-0.913059711456299,-0.407825797796249,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,-0.99999988079071,0.00012361936387606,-0.000448595790658146,
  980. -0.999999940395355,0.000123619349324144,-0.000448595819761977,-0.99999988079071,0.000123619334772229,-0.000448595761554316,-0.999999940395355,0.000123619349324144,-0.000448595761554316,0,-0.265457034111023,0.964122712612152,0,-0.265457034111023,0.964122712612152,0,-0.265457034111023,0.964122712612152,0,-0.265457034111023,0.964122712612152,0,0.262509912252426,-0.964929342269897,0,0.262509912252426,-0.964929342269897,0,0.262509912252426,-0.964929342269897,0,0.262509912252426,-0.964929342269897,-1.48662265928579e-005,0.910330772399902,0.413881540298462,-1.48662247738685e-005,0.910330712795258,0.413881450891495,-1.48662247738685e-005,0.910330712795258,0.413881480693817,-1.48662256833632e-005,0.910330772399902,0.41388151049614,0,-0.909904778003693,-0.414817243814468,0,-0.909904837608337,-0.414817243814468,0,-0.909904778003693,-0.414817184209824,0,-0.909904778003693,-0.414817243814468,1,-6.3039296946954e-005,-2.0531622794806e-005,1,-6.30393042229116e-005,-2.05316246137954e-005,0.999999940395355,-6.3039296946954e-005,-2.05316209758166e-005,1,-6.3039296946954e-005,-2.05316246137954e-005,-0.999999821186066,0.000247126095928252,-0.000615647702943534,-0.999999761581421,0.000247126037720591,-0.000615647586528212,-0.999999761581421,0.000247126066824421,-0.000615647644735873,-0.999999761581421,0.000247126066824421,-0.000615647644735873,-0.000100669778476004,-0.240602791309357,0.970623672008514,-0.000100669771200046,-0.240602746605873,0.970623672008514,-0.000100669771200046,-0.240602731704712,0.97062361240387,-0.000100669763924088,-0.240602746605873,0.97062361240387,4.17702685808763e-005,0.238263934850693,-0.971200406551361,4.17702685808763e-005,0.238263919949532,-0.971200466156006,4.17702649428975e-005,0.238263919949532,-0.971200406551361,4.17702649428975e-005,0.23826390504837,-0.971200406551361,-3.9450505937566e-006,0.913473844528198,0.406897455453873,-3.9450505937566e-006,0.913473784923553,0.406897455453873,-3.94505104850396e-006,0.913473844528198,0.406897485256195,-3.9450505937566e-006,0.913473844528198,0.406897485256195,0,-0.913059771060944,-0.407825708389282,
  981. 0,-0.913059830665588,-0.407825708389282,0,-0.913059771060944,-0.407825708389282,0,-0.913059771060944,-0.407825708389282,1,1.11502931758878e-005,5.17900025442941e-006,0.999999940395355,1.11502940853825e-005,5.17900025442941e-006,1,1.11502940853825e-005,5.17899979968206e-006,1,1.11502931758878e-005,5.17900025442941e-006,-0.999999940395355,0.000147045473568141,-0.000436401838669553,-0.99999988079071,0.000147045473568141,-0.000436401838669553,-0.99999988079071,0.000147045488120057,-0.000436401809565723,-0.99999988079071,0.000147045488120057,-0.000436401838669553,-1.17162144306349e-005,-0.275111377239227,0.961412489414215,-1.17162117021508e-005,-0.275111347436905,0.961412310600281,-1.17162117021508e-005,-0.275111347436905,0.961412310600281,-1.17162126116455e-005,-0.275111317634583,0.961412310600281,0,0.271241128444672,-0.962511420249939,0,0.271241128444672,-0.962511420249939,0,0.271241128444672,-0.962511420249939,0,0.271241128444672,-0.962511420249939,0.000490084465127438,-0.00263448804616928,-0.999996423721313,0.000490084465127438,-0.00263448781333864,-0.999996423721313,0.000490084465127438,-0.00263448758050799,-0.999996364116669,0.000490084465127438,-0.00263448781333864,-0.999996423721313,0.999997913837433,0.000921086641028523,0.00179405196104199,0.999997973442078,0.000921086641028523,0.00179405196104199,0.999997913837433,0.000921086582820863,0.00179405184462667,0.999998033046722,0.000921086699236184,0.00179405196104199,-0.00136169034522027,0.00291819614358246,0.99999475479126,-0.00136169046163559,0.00291819637641311,0.999994874000549,-0.00136169046163559,0.00291819637641311,0.999994814395905,-0.00136169034522027,0.00291819614358246,0.999994874000549,-0.999998569488525,-0.00145863159559667,0.000931915070395917,-0.999998509883881,-0.00145863147918135,0.000931915070395917,-0.999998509883881,-0.00145863147918135,0.000931915012188256,-0.999998509883881,-0.00145863159559667,0.000931915070395917,-0.999992251396179,-0.00256202695891261,0.00300397141836584,-0.999992191791534,-0.00256202695891261,0.00300397141836584,-0.999992311000824,-0.00256202672608197,0.00300397141836584,
  982. -0.999992191791534,-0.00256202695891261,0.00300397141836584,-0.000377618853235617,-0.00596026238054037,-0.999982118606567,-0.000377618882339448,-0.00596026284620166,-0.999982178211212,-0.000377618824131787,-0.00596026284620166,-0.999982178211212,-0.000377618882339448,-0.00596026377752423,-0.999982178211212,0.999993920326233,0.00145334133412689,0.00317211169749498,0.999993920326233,0.00145334145054221,0.00317211169749498,0.999993920326233,0.00145334156695753,0.00317211193032563,0.999993920326233,0.00145334133412689,0.00317211146466434,-0.00401657726615667,0.00686091184616089,0.999968349933624,-0.00401657680049539,0.0068609113804996,0.999968349933624,-0.0040165763348341,0.0068609113804996,0.999968349933624,-0.00401657680049539,0.00686091091483831,0.999968409538269,-0.00326570170000196,-0.999987721443176,0.0037226676940918,-0.00326570146717131,-0.999987781047821,0.0037226676940918,-0.00326570146717131,-0.999987721443176,0.00372266746126115,-0.00326570146717131,-0.999987661838531,0.00372266746126115,-0.011266035027802,-0.999934256076813,0.00215973914600909,-0.0112660340964794,-0.999934196472168,0.00215973891317844,-0.0112660340964794,-0.999934196472168,0.00215973891317844,-0.0112660340964794,-0.999934196472168,0.00215973891317844,0.999933362007141,0.0115434098988771,9.18951482162811e-005,0.999933302402496,0.0115434108301997,9.18951554922387e-005,0.999933421611786,0.0115434108301997,9.18951627681963e-005,0.999933362007141,0.0115434098988771,9.18951554922387e-005,-0.999906122684479,-0.0136665580794215,0.00095822912408039,-0.999906122684479,-0.0136665608733892,0.000958229240495712,-0.999906122684479,-0.0136665599420667,0.00095822912408039,-0.999906182289124,-0.0136665608733892,0.000958229182288051,0.0158144477754831,-0.999741673469543,0.0163275729864836,0.015814445912838,-0.999741554260254,0.0163275711238384,0.0158144477754831,-0.999741613864899,0.0163275729864836,0.0158144477754831,-0.999741673469543,0.0163275729864836,8.4081941167824e-005,-0.911782443523407,-0.410673677921295,8.40819484437816e-005,-0.911782443523407,-0.410673648118973,
  983. 8.40819484437816e-005,-0.911782503128052,-0.410673648118973,8.4081941167824e-005,-0.911782443523407,-0.410673677921295,-3.33224124915432e-005,0.911740660667419,0.41076648235321,-3.33224088535644e-005,0.91174054145813,0.41076648235321,-3.33224124915432e-005,0.911740601062775,0.410766452550888,-3.33224124915432e-005,0.91174054145813,0.41076648235321,-0.999964773654938,0.001337252673693,0.00829852093011141,-0.999964714050293,0.001337252673693,0.00829852093011141,-0.999964654445648,0.00133725255727768,0.00829852186143398,-0.999964654445648,0.00133725255727768,0.00829852093011141,0.999988079071045,0.00454977480694652,0.00179225276224315,0.999988079071045,0.0045497752726078,0.00179225276224315,0.9999880194664,0.0045497752726078,0.00179225264582783,0.999988079071045,0.0045497752726078,0.00179225276224315
  984. }
  985. NormalsW: *168 {
  986. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  987. }
  988. }
  989. LayerElementBinormal: 0 {
  990. Version: 102
  991. Name: "UVmap_0"
  992. MappingInformationType: "ByPolygonVertex"
  993. ReferenceInformationType: "Direct"
  994. Binormals: *504 {
  995. a: 0.00817509740591049,0.999823570251465,-0.0169152300804853,0.00817511603236198,0.999818325042725,-0.0172195434570313,0.00817509647458792,0.99982351064682,-0.0169152282178402,0.00817507691681385,0.999828636646271,-0.0166109129786491,0.999998092651367,-0.00140446529258043,0.00140089762862772,0.999996483325958,-0.00138793746009469,0.00225425674580038,0.999998033046722,-0.00140446505974978,0.0014008975122124,0.999998927116394,-0.00142099184449762,0.000547537056263536,-0.00936380587518215,-0.999628245830536,0.0256073456257582,-0.00936496071517468,-0.99965488910675,0.0245441403239965,-0.00936380680650473,-0.999628305435181,0.0256073474884033,-0.00936264172196388,-0.999600470066071,0.0266705267131329,-0.999946057796478,0.0103759374469519,0.000462700787466019,-0.999945938587189,0.0103823458775878,0.00075190665666014,-0.999945521354675,0.010388751514256,0.00104111223481596,-0.999945938587189,0.0103823458775878,0.00075190665666014,-0.999653875827789,-0.0262695513665676,-0.00145014235749841,-0.999652624130249,-0.0262826085090637,-0.00196748459711671,-0.999653875827789,-0.0262695495039225,-0.00145014235749841,-0.999654829502106,-0.0262564867734909,-0.000932799826841801,0.00612098164856434,0.913070142269135,0.40775665640831,0.00686608720570803,0.913065969944,0.407754153013229,0.00761118857190013,0.913061261177063,0.407751470804214,0.00686608767136931,0.913065969944,0.407754182815552,0.0026093942578882,0.914767384529114,0.403972595930099,0.00192463689018041,0.914768815040588,0.403973162174225,0.00123987859115005,0.914769768714905,0.403973579406738,0.00192463689018041,0.914768874645233,0.403973132371902,0.99999988079071,-0.000187052588444203,0.000419929216150194,1,-9.35263087740168e-005,0.000209964637178928,1,0,-0,1,-9.35263014980592e-005,0.000209964637178928,-1,0,-0,-1,9.37398945097812e-005,-0.000209869322134182,-0.99999988079071,0.000187479789019562,-0.000419738644268364,-1,9.37399090616964e-005,-0.000209869336686097,0,-0.913267076015472,-0.407361418008804,0,-0.913474261760712,-0.406896710395813,0,-0.913267016410828,-0.407361388206482,
  996. 0,-0.913059651851654,-0.407826036214828,-6.98431322234683e-005,0.913267076015472,0.407361418008804,-7.00772070558742e-005,0.913059651851654,0.407826036214828,-6.98431467753835e-005,0.913267076015472,0.407361418008804,-6.96090355631895e-005,0.913474202156067,0.406896680593491,1,0,0,1,0,0,1,0,0,1,0,0,-0.999730467796326,-0.0224031489342451,-0.00609479704871774,-0.999730467796326,-0.0224031489342451,-0.00609479704871774,-0.999730467796326,-0.0224031489342451,-0.00609479704871774,-0.999730467796326,-0.0224031489342451,-0.00609479704871774,0.999999821186066,-0.000255168328294531,0.000597160775214434,1,-0.000123894278658554,0.000308424030663446,1,7.37980508347391e-006,1.96871878870297e-005,1,-0.000123894278658554,0.000308424001559615,-0.999992370605469,0.00162561377510428,-0.00356579618528485,-1,6.59746801829897e-005,-0.000144715973874554,-0.999993622303009,-0.00149366538971663,0.00327636697329581,-1,6.59746874589473e-005,-0.000144715973874554,-6.5919834014494e-005,-0.912352800369263,-0.409405171871185,-6.59607030684128e-005,-0.91476845741272,-0.403978556394577,-6.5919834014494e-005,-0.912352740764618,-0.409405142068863,-6.5876629378181e-005,-0.909904778003693,-0.414817214012146,-2.50750708801206e-005,0.913281738758087,0.407328426837921,-2.1844869479537e-005,0.915255486965179,0.402873873710632,-2.50750745180994e-005,0.913281798362732,0.407328456640244,-2.83046683762223e-005,0.911286294460297,0.411773324012756,0.999138236045837,0.0402633771300316,0.0100843040272594,0.999787747859955,0.0199754051864147,0.00505529157817364,1,-0.000321302039083093,2.40707340708468e-005,0.99978768825531,0.0199754033237696,0.00505529157817364,-0.999106526374817,-0.041037879884243,-0.0101107656955719,-0.999498844146729,-0.0307350065559149,-0.00758318416774273,-0.999778509140015,-0.020428666844964,-0.0050547500140965,-0.999498903751373,-0.03073500841856,-0.00758318463340402,0.99999988079071,-0.000182577263331041,0.000419576477725059,1,-8.97027784958482e-005,0.00021107574866619,1,3.17172771246987e-006,2.57499959843699e-006,1,-8.97027784958482e-005,0.000211075734114274,
  997. -1,0,-0,-1,9.37398726819083e-005,-0.000209869336686097,-0.99999988079071,0.000187479745363817,-0.000419738673372194,-1,9.37398872338235e-005,-0.000209869351238012,1.22929204735556e-005,-0.913267016410828,-0.407361537218094,1.22930159704993e-005,-0.913059830665588,-0.407825797796249,1.22929213830503e-005,-0.913267016410828,-0.407361537218094,1.22928231576225e-005,-0.913473963737488,-0.406897187232971,-4.34816756751388e-005,0.913266897201538,0.407361805438995,-4.32487468060572e-005,0.913473784923553,0.406897753477097,-4.34816647612024e-005,0.913266956806183,0.407361835241318,-4.37146118201781e-005,0.913059830665588,0.407825797796249,1,-4.63364376628306e-005,-1.07286621187086e-006,0.999915063381195,0.0125296358019114,0.00359758245758712,0.99965900182724,0.0251034628599882,0.00719562172889709,0.99991512298584,0.0125296358019114,0.00359758222475648,-0.999649405479431,-0.0254879835993052,-0.00718265725299716,-0.999649405479431,-0.0254879835993052,-0.00718265725299716,-0.999649405479431,-0.0254879835993052,-0.00718265725299716,-0.999649405479431,-0.0254879835993052,-0.00718265725299716,-0.9999960064888,-0.00278492155484855,-0.000482747389469296,-0.9999960064888,-0.00279480568133295,-0.000482721341541037,-0.999996066093445,-0.0027849217876792,-0.000482747447676957,-0.999996066093445,-0.00277503719553351,-0.000482773437397555,0.00179143401328474,0.00283560529351234,-0.999994456768036,0.00179139792453498,0.00287428824231029,-0.999994277954102,0.00179143389686942,0.00283560529351234,-0.999994456768036,0.0017914695199579,0.0027969223447144,-0.999994516372681,0.999994456768036,0.00304497685283422,0.00135280413087457,0.999995052814484,0.00286717340350151,0.00135332369245589,0.999994516372681,0.00304497708566487,0.0013528042472899,0.999993920326233,0.0032227800693363,0.00135228445287794,0.000935662828851491,-0.00257081910967827,0.999996304512024,0.000934799551032484,-0.00197813147678971,0.999997615814209,0.00093566277064383,-0.00257081910967827,0.999996244907379,0.000936525815632194,-0.00316350581124425,0.999994575977325,0.00302287819795311,-0.00740805035457015,0.999967992305756,
  998. 0.0030200791079551,-0.00630644848570228,0.999975621700287,0.00302287819795311,-0.00740805082023144,0.9999680519104,0.00302567472681403,-0.00850964430719614,0.999959290027618,-0.999999940395355,-0.000308956805383787,0.000379467091988772,-0.999999940395355,0.000104652674053796,0.000377001822926104,-0.999999821186066,0.000518262095283717,0.000374536466551945,-0.999999940395355,0.000104652674053796,0.000377001822926104,0.0031607870478183,0.00772926490753889,-0.999965190887451,0.00315865105949342,0.00917239487171173,-0.999952971935272,0.00316078728064895,0.00772926490753889,-0.999965190887451,0.00316291651688516,0.00628611817955971,-0.999975264072418,0.9999920129776,3.70827292499598e-005,0.00401641800999641,0.9999920129776,-2.49414515565149e-005,0.00401684315875173,0.9999920129776,3.7082725611981e-005,0.00401641707867384,0.999991953372955,9.91068955045193e-005,0.00401599146425724,0.999977886676788,-0.00324404961429536,0.00580753153190017,0.999994575977325,-0.00326777622103691,-0.000551338191144168,0.99997079372406,-0.00329137104563415,-0.00691018672659993,0.999994575977325,-0.0032677766866982,-0.000551338191144168,0.999889016151428,-0.0112865390256047,-0.00972933322191238,0.99979156255722,-0.0113011486828327,-0.0170015953481197,0.999889075756073,-0.0112865390256047,-0.00972933322191238,0.999933540821075,-0.0112713323906064,-0.00245655444450676,-0.0115388641133904,0.999708473682404,-0.0212105214595795,-0.011536949314177,0.999584019184113,-0.0264344066381454,-0.011538865044713,0.999708533287048,-0.0212105233222246,-0.0115404669195414,0.999805688858032,-0.0159860607236624,0.0136820301413536,-0.999733209609985,0.0186108388006687,0.0136854210868478,-0.999626159667969,0.0236731041222811,0.0136820320039988,-0.999733209609985,0.0186108388006687,0.0136782936751843,-0.999814629554749,0.0135480994358659,0.999874174594879,0.0157921388745308,-0.0014943266287446,0.999874114990234,0.0157904010266066,-0.00160064874216914,0.999873995780945,0.0157886650413275,-0.00170697073917836,0.999874114990234,0.0157904010266066,-0.00160064874216914,
  999. 0.999997973442078,0.000900863145943731,-0.0017953657079488,0.999998092651367,0.000891525240149349,-0.00177463365253061,0.999998152256012,0.000882187217939645,-0.00175390136428177,0.999998033046722,0.000891525181941688,-0.00177463341969997,-0.999998271465302,-0.00080437317956239,0.00170427095144987,-0.999998331069946,-0.00079540116712451,0.00168435636442155,-0.999998211860657,-0.000804373063147068,0.00170427083503455,-0.999998211860657,-0.000813345366623253,0.0017241855384782,-0.00464559951797128,-0.910702347755432,-0.413037031888962,-0.00460066460072994,-0.913327693939209,-0.407199323177338,-0.00455554155632854,-0.915915727615356,-0.401344984769821,-0.00460066506639123,-0.913327753543854,-0.40719935297966,-0.00488543510437012,0.913599610328674,0.406585723161697,-0.00488485209643841,0.91251266002655,0.409019321203232,-0.00488423369824886,0.911419332027435,0.411450088024139,-0.00488485209643841,0.91251266002655,0.409019321203232
  1000. }
  1001. BinormalsW: *168 {
  1002. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1003. }
  1004. }
  1005. LayerElementBinormal: 1 {
  1006. Version: 102
  1007. Name: "LightMapUV"
  1008. MappingInformationType: "ByPolygonVertex"
  1009. ReferenceInformationType: "Direct"
  1010. Binormals: *504 {
  1011. a: 0.000141001684824005,-0.00771503755822778,-0.999970257282257,0.000215862455661409,0.00144367129541934,-0.999998986721039,0.000141001684824005,-0.00771503802388906,-0.999970316886902,6.6129068727605e-005,-0.0168731007725,-0.999857664108276,0.020973214879632,-0.0193872526288033,-0.999592125415802,0.0477253906428814,-0.0194077305495739,-0.99867194890976,0.0209732130169868,-0.0193872526288033,-0.999592065811157,-0.00579398823902011,-0.0193528812378645,-0.999795973300934,-0.000918520556297153,-0.00730529893189669,-0.999972939491272,-0.000991830253042281,-0.0151212476193905,-0.999885201454163,-0.000918520498089492,-0.0073052984662354,-0.999972879886627,-0.00084515439812094,0.000511096208356321,-0.999999523162842,-0.000289762858301401,-0.0221568383276463,-0.999754548072815,-0.00404602661728859,-0.0221177358180285,-0.999747276306152,-0.00780223356559873,-0.022078325971961,-0.999725878238678,-0.00404602661728859,-0.0221177358180285,-0.999747276306152,0.0157192628830671,-0.0248772501945496,-0.999566972255707,0.031434640288353,-0.0244557335972786,-0.99920666217804,0.0157192628830671,-0.0248772520571947,-0.999566972255707,-5.82076609134674e-011,-0.0252926163375378,-0.99968010187149,-0.0151824075728655,0.912975490093231,0.407731860876083,-0.0152570689097047,0.912974417209625,0.40773144364357,-0.0153317283838987,0.912973344326019,0.407731026411057,-0.0152570698410273,0.912974417209625,0.407731473445892,-0.00882508512586355,0.914734959602356,0.403958022594452,-0.00951498094946146,0.914729237556458,0.403955459594727,-0.0102048730477691,0.914722979068756,0.403952717781067,-0.00951498094946146,0.914729177951813,0.403955370187759,0,-0.406896471977234,0.913474261760712,0,-0.406896501779556,0.913474261760712,0,-0.406896471977234,0.913474261760712,0,-0.406896471977234,0.913474261760712,-1,0,-0,-1,9.37398945097812e-005,-0.000209869322134182,-0.99999988079071,0.000187479789019562,-0.000419738644268364,-1,9.37399090616964e-005,-0.000209869336686097,0,-0.263983935117722,0.964527130126953,0,-0.262510061264038,0.964929342269897,
  1012. 0,-0.263983935117722,0.964527070522308,0,-0.265457183122635,0.964122653007507,-0.000465316348709166,-0.263983935117722,0.964527070522308,-0.000465317047201097,-0.265457153320313,0.964122593402863,-0.000465316319605336,-0.263983935117722,0.964527070522308,-0.000465314515167847,-0.262510031461716,0.964929223060608,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,-0,-1,0,-0,-1,0,-0,-1,0,-0,-9.88079482340254e-005,-0.413881540298462,0.910330772399902,-0.000140997406560928,-0.41388151049614,0.910330832004547,-0.000183186886715703,-0.413881540298462,0.910330832004547,-0.000140997406560928,-0.41388151049614,0.910330772399902,0,-0.414817243814468,0.909904778003693,0,-0.414817243814468,0.909904837608337,0,-0.414817184209824,0.909904778003693,0,-0.414817243814468,0.909904778003693,-6.59203069517389e-005,-0.912380516529083,-0.409343153238297,-6.59616125631146e-005,-0.914823293685913,-0.40385428071022,-6.59203142276965e-005,-0.912380576133728,-0.409343183040619,-6.5876629378181e-005,-0.909904778003693,-0.414817214012146,-2.5053508579731e-005,0.913295030593872,0.407298743724823,-2.15881900658133e-005,0.915411472320557,0.402519583702087,-2.50535122177098e-005,0.913295090198517,0.407298773527145,-2.85181195067707e-005,0.911153733730316,0.412066787481308,1,2.66909592028242e-005,0.000110332875919994,1,-0.000147305545397103,6.72017995384522e-005,1,-0.000321302039083093,2.40707340708468e-005,1,-0.000147305530845188,6.72017995384522e-005,-0.999183893203735,-0.0392219945788383,-0.00966527778655291,-0.999794721603394,-0.0196704342961311,-0.00486873369663954,-1,-0.000110898719867691,-7.02156175975688e-005,-0.999794721603394,-0.0196704342961311,-0.00486873416230083,0,-0.406897455453873,0.913473844528198,-1.15693846964859e-005,-0.406897515058517,0.913473904132843,-2.31387675739825e-005,-0.406897485256195,0.913473844528198,-1.15693837869912e-005,-0.406897485256195,0.913473844528198,0,-0.407825767993927,0.913059890270233,0,-0.407825708389282,0.913059830665588,0,-0.407825767993927,0.913059890270233,0,-0.407825767993927,0.913059890270233,-1.93590130947996e-006,-0.273185402154922,0.961961448192596,
  1013. -1.91136405192083e-006,-0.275128662586212,0.961407482624054,-1.93590062735893e-006,-0.273185402154922,0.961961448192596,-1.9604301542131e-006,-0.271241039037704,0.962511479854584,-0.000459972012322396,-0.273168206214905,0.961966276168823,-0.000459926581243053,-0.271241068840027,0.962511420249939,-0.000459971983218566,-0.273168206214905,0.961966216564178,-0.000460015668068081,-0.275094240903854,0.961417257785797,0.99868905544281,0.0492092967033386,0.0140935741364956,0.999671995639801,0.0246218796819448,0.00705781579017639,1,1.83330630534329e-005,1.74325268744724e-005,0.999671936035156,0.0246218796819448,0.00705781485885382,-1,0,-0,-0.999661803245544,-0.0250318925827742,-0.0070541282184422,-0.998647332191467,-0.0500468537211418,-0.0141034852713346,-0.999661803245544,-0.0250318925827742,-0.0070541282184422,0.123547576367855,-0.992335081100464,0.00267485342919827,0.245202034711838,-0.969468355178833,0.00267423177137971,0.123547583818436,-0.992335140705109,0.00267485319636762,0,-0.999996542930603,0.00263448827899992,0.00179102388210595,0.00327808130532503,-0.999993026256561,0.00179208815097809,0.00212849513627589,-0.99999612569809,0.00179102376569062,0.00327808130532503,-0.999993026256561,0.00178995681926608,0.00442766258493066,-0.999988615512848,0.104705646634102,-0.994498610496521,0.00304473470896482,0,-0.999995768070221,0.00291819917038083,0.104705654084682,-0.994498670101166,0.00304473494179547,0.208260163664818,-0.97806841135025,0.00313779735006392,0.000937033502850682,-0.00351237575523555,0.999993443489075,0.000938544457312673,-0.00455088447779417,0.999989211559296,0.000937033444643021,-0.00351237575523555,0.99999338388443,0.000935521675273776,-0.00247386307455599,0.999996542930603,0.00255518825724721,-0.999994158744812,-0.00227816961705685,0.00257054320536554,-0.999992668628693,0.00283457757905126,0.00255518755875528,-0.999994099140167,-0.00227816961705685,0.00253976695239544,-0.99996954202652,-0.00739085813984275,-0.450950920581818,-0.892531931400299,0.00549011025577784,-0.231787919998169,-0.972748637199402,0.00588546972721815,
  1014. 0,-0.999982237815857,0.00596026331186295,-0.231787919998169,-0.972748637199402,0.00588547065854073,0.00315924943424761,0.00876856222748756,-0.999956607818604,0.00315790227614343,0.00967730209231377,-0.99994820356369,0.00315924966707826,0.00876856222748756,-0.999956607818604,0.00316059403121471,0.00785981398075819,-0.999964118003845,0.205227538943291,-0.978685259819031,0.00753922434523702,0,-0.999976456165314,0.00686096679419279,0.205227538943291,-0.978685259819031,0.00753922387957573,0.401718080043793,-0.915729343891144,0.00789651833474636,0.999977886676788,-0.00324404961429536,0.00580753153190017,0.999921441078186,-0.00322039029560983,0.0121133448556066,0.999825239181519,-0.00319660361856222,0.0184186790138483,0.999921441078186,-0.00322039076127112,0.0121133457869291,-0.018702631816268,-0.00194878084585071,-0.999823212623596,-0.0383839718997478,-0.0017258224543184,-0.999261617660522,-0.018702631816268,-0.00194878084585071,-0.999823272228241,0.000985962571576238,-0.00217098370194435,-0.99999725818634,0.000225564726861194,-0.0115789631381631,-0.999932944774628,9.1875008365605e-005,2.27626082960342e-006,-1,0.000225564755965024,-0.0115789640694857,-0.999933004379272,0.000359224242856726,-0.0231586508452892,-0.999731838703156,-0.000889802991878241,-0.00501203583553433,-0.999987125396729,-0.000958349963184446,2.27625992010871e-006,-0.999999642372131,-0.000889802991878241,-0.00501203583553433,-0.999987125396729,-0.000821233785245568,-0.0100262220948935,-0.99994945526123,0.000519224151503295,-0.016321400180459,-0.999866664409637,0.000259612075751647,-0.0163255073130131,-0.999866724014282,0,-0.0163296163082123,-0.999866664409637,0.000259612075751647,-0.0163255073130131,-0.999866724014282,0.999997854232788,0.000940143771003932,-0.00188257696572691,0.999997556209564,0.000989063177257776,-0.00199118861928582,0.999997317790985,0.0010379827581346,-0.0020998006220907,0.999997615814209,0.000989063177257776,-0.00199118861928582,0.00884344521909952,0.4107506275177,-0.911704778671265,0.00894391257315874,0.410750389099121,-0.911704063415527,
  1015. 0.0088434461504221,0.410750657320023,-0.911704838275909,0.00874297879636288,0.410751104354858,-0.911705732345581,-0.00704202940687537,0.405773639678955,-0.913946449756622,-0.007018459495157,0.410443961620331,-0.911858797073364,-0.00699470611289144,0.415103524923325,-0.909747302532196,-0.00701846042647958,0.410443991422653,-0.911858856678009,-0.000186815741471946,0.401786714792252,-0.915733337402344,-0.000184214790351689,0.401299208402634,-0.915947079658508,-0.000181613737368025,0.400811642408371,-0.916160583496094,-0.000184214790351689,0.401299208402634,-0.915947079658508
  1016. }
  1017. BinormalsW: *168 {
  1018. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1019. }
  1020. }
  1021. LayerElementTangent: 0 {
  1022. Version: 102
  1023. Name: "UVmap_0"
  1024. MappingInformationType: "ByPolygonVertex"
  1025. ReferenceInformationType: "Direct"
  1026. Tangents: *504 {
  1027. a: 6.57755954307504e-005,-0.0169163327664137,-0.999856948852539,6.32870869594626e-005,-0.017220638692379,-0.999851822853088,6.57756390864961e-005,-0.0169163327664137,-0.999856948852539,6.82640966260806e-005,-0.0166120268404484,-0.999862015247345,0.00137344107497483,-0.0193634461611509,-0.99981164932251,0.0022269596811384,-0.0193646363914013,-0.999810099601746,0.00137344107497483,-0.0193634461611509,-0.99981164932251,0.000519921304658055,-0.0193622373044491,-0.999812424182892,-0.00109001831151545,-0.0255982503294945,-0.999671757221222,-0.00108005956280977,-0.0245350878685713,-0.999698400497437,-0.00109001831151545,-0.0255982503294945,-0.999671757221222,-0.00109997647814453,-0.0266613848507404,-0.999643921852112,-0.000692479079589248,-0.0221526585519314,-0.999754369258881,-0.000981740187853575,-0.0221496522426605,-0.999754190444946,-0.0012710012961179,-0.0221466515213251,-0.999753952026367,-0.000981740187853575,-0.0221496522426605,-0.999754190444946,0.0021133772097528,-0.0252371374517679,-0.999679327011108,0.00263070617802441,-0.0252235382795334,-0.999678373336792,0.0021133772097528,-0.0252371393144131,-0.999679327011108,0.00159604742657393,-0.0252507254481316,-0.999679863452911,0.999980986118317,-0.00528333429247141,-0.00318035366944969,0.999976217746735,-0.00596368173137307,-0.00348418112844229,0.999970734119415,-0.00664402404800057,-0.0037880064919591,0.999976217746735,-0.00596368173137307,-0.00348418136127293,-0.999996602535248,0.00239507015794516,0.00103584630414844,-0.999998152256012,0.00176867423579097,0.000759222137276083,-0.999999225139618,0.00114227738231421,0.000482597592053935,-0.999998152256012,0.00176867423579097,0.000759222020860761,-0.000459705595858395,-0.406896442174912,0.913474202156067,-0.000229852827033028,-0.406896531581879,0.913474321365356,0,-0.406896471977234,0.913474261760712,-0.000229852827033028,-0.406896531581879,0.913474321365356,-0,-0.407825827598572,0.913059771060944,-0.000229852812481113,-0.407825827598572,0.913059830665588,-0.000459705566754565,-0.407825767993927,0.913059651851654,
  1028. -0.000229852812481113,-0.407825857400894,0.913059830665588,0,-0.407361447811127,0.913267135620117,-0,-0.406896680593491,0.913474202156067,0,-0.407361447811127,0.913267135620117,0,-0.407826036214828,0.913059651851654,-0.00046004555770196,-0.407361418008804,0.913267016410828,-0.000460009905509651,-0.407826006412506,0.913059532642365,-0.00046004552859813,-0.407361418008804,0.913267016410828,-0.000460080918855965,-0.406896650791168,0.913474082946777,0,-0.964122712612152,-0.265457034111023,0,-0.964122712612152,-0.265457034111023,0,-0.964122712612152,-0.265457034111023,0,-0.964122712612152,-0.265457034111023,0.0232174005359411,-0.964669287204742,-0.262439161539078,0.0232174005359411,-0.964669287204742,-0.262439161539078,0.0232174005359411,-0.964669287204742,-0.262439161539078,0.0232174005359411,-0.964669287204742,-0.262439161539078,-0.000649223336949945,-0.41388151049614,0.910330653190613,-0.000332045427057892,-0.413881480693817,0.910330772399902,-1.48674880620092e-005,-0.41388151049614,0.910330772399902,-0.000332045397954062,-0.413881540298462,0.910330772399902,-0.00391886802390218,-0.414814114570618,0.909897863864899,-0.000159045172040351,-0.414817214012146,0.909904718399048,0.00360077945515513,-0.414814502000809,0.90989887714386,-0.000159045186592266,-0.414817273616791,0.909904778003693,-7.07652861819952e-006,-0.409405112266541,0.912352681159973,-6.68484381094459e-006,-0.403978556394577,0.91476845741272,-7.07653089193627e-006,-0.409405112266541,0.912352681159973,-7.46796331441146e-006,-0.414817214012146,0.909904778003693,-0.000662921345792711,-0.407328397035599,0.913281619548798,-0.000663035491015762,-0.402873814105988,0.915255308151245,-0.00066292128758505,-0.407328397035599,0.913281619548798,-0.000662791193462908,-0.411773264408112,0.911286115646362,0.0415069013834,-0.969788312911987,-0.240391418337822,0.0206049159169197,-0.970418035984039,-0.240549638867378,-0.000306071859085932,-0.97062361240387,-0.240602761507034,0.0206049159169197,-0.970418035984039,-0.240549653768539,0.0422650352120399,-0.97033303976059,-0.238049328327179,
  1029. 0.0316566489636898,-0.970714032649994,-0.238143220543861,0.0210446957498789,-0.970985591411591,-0.238210305571556,0.0316566489636898,-0.970714032649994,-0.238143220543861,-0.000457562360679731,-0.40689742565155,0.913473725318909,-0.000229312019655481,-0.406897515058517,0.913473904132843,-1.06162679003319e-006,-0.406897485256195,0.913473844528198,-0.000229312019655481,-0.406897515058517,0.913473904132843,-0,-0.407825767993927,0.913059890270233,-0.000229852783377282,-0.40782567858696,0.913059771060944,-0.000459705566754565,-0.40782567858696,0.913059711456299,-0.000229852812481113,-0.407825767993927,0.913059830665588,-1.87609373369924e-007,-0.407361537218094,0.913267016410828,-1.81359467887887e-007,-0.407825767993927,0.913059771060944,-1.87608591772914e-007,-0.407361537218094,0.913267016410828,-1.93858852526319e-007,-0.406897187232971,0.913473963737488,-0.000458452035672963,-0.407361775636673,0.913266777992249,-0.000458474096376449,-0.406897693872452,0.913473606109619,-0.000458452035672963,-0.407361775636673,0.913266777992249,-0.000458429916761816,-0.407825738191605,0.913059651851654,-4.48435821454041e-005,-0.961412370204926,-0.275111347436905,0.0130358813330531,-0.961330711841583,-0.275087833404541,0.0261143781244755,-0.96108466386795,-0.275017261505127,0.0130358813330531,-0.961330771446228,-0.275087833404541,0.0264807045459747,-0.962173879146576,-0.27114599943161,0.0264807045459747,-0.962173879146576,-0.27114599943161,0.0264807045459747,-0.962173879146576,-0.27114599943161,0.0264807045459747,-0.962173879146576,-0.27114599943161,0.00278364005498588,-0.999992728233337,0.00263584242202342,0.00279352394863963,-0.999992609024048,0.00263584684580565,0.00278364005498588,-0.999992728233337,0.00263584242202342,0.0027737554628402,-0.999992668628693,0.00263583729974926,0.000926168751902878,-0.999995589256287,-0.00283394940197468,0.000926237960811704,-0.999995470046997,-0.00287263235077262,0.000926168693695217,-0.999995589256287,-0.00283394940197468,0.000926099484786391,-0.999995768070221,-0.00279526668600738,0.00304101360961795,-0.999991178512573,0.00292232655920088,
  1030. 0.00286320899613202,-0.999991655349731,0.00292208581231534,0.00304101360961795,-0.999991178512573,0.00292232655920088,0.00321881752461195,-0.99999064207077,0.00292256684042513,0.00145623029675335,-0.999995708465576,-0.00257218023762107,0.00145678455010057,-0.999996960163116,-0.00197949213907123,0.00145623029675335,-0.999995708465576,-0.00257218023762107,0.00145567557774484,-0.999993920326233,-0.00316486693918705,0.0025396915152669,-0.999969363212585,-0.00741573749110103,0.00254302029497921,-0.999976933002472,-0.00631413701921701,0.00253969104960561,-0.999969363212585,-0.00741573749110103,0.00253635994158685,-0.999960601329803,-0.00851732958108187,0.000311212992528453,-0.999982178211212,0.00596014549955726,-0.000102403777418658,-0.999982237815857,0.00596030242741108,-0.000516020518261939,-0.999982118606567,0.00596045749261975,-0.000102403777418658,-0.999982237815857,0.00596030335873365,0.00147780880797654,-0.999969124794006,-0.00772462412714958,0.00148236891254783,-0.999956905841827,-0.00916774850338697,0.00147780904080719,-0.999969124794006,-0.00772462412714958,0.00147324556019157,-0.999979197978973,-0.00628148298710585,9.52526715991553e-006,-0.999976456165314,0.00686100590974092,-5.24998649780173e-005,-0.999976456165314,0.00686075631529093,9.52527079789434e-006,-0.999976456165314,0.00686100544407964,7.1550406573806e-005,-0.999976456165314,0.00686125364154577,0.00579538382589817,-0.00374155095778406,-0.999976217746735,-0.000563496258109808,-0.00372084672562778,-0.999992966651917,-0.006922353990376,-0.00369999185204506,-0.999969184398651,-0.000563496258109808,-0.00372084695845842,-0.999992966651917,-0.00975306797772646,-0.00204988825134933,-0.999950349330902,-0.0170248840004206,-0.00196774839423597,-0.999853134155273,-0.00975306797772646,-0.00204988825134933,-0.999950349330902,-0.00248073576949537,-0.00213191960938275,-0.99999463558197,0.000336710130795836,-0.0212080478668213,-0.999775052070618,0.000397000316297635,-0.0264315828680992,-0.999650537967682,0.000336710130795836,-0.0212080478668213,-0.999775052070618,0.000276410923106596,-0.015983933582902,-0.999872207641602,
  1031. -0.00070362736005336,-0.0186222046613693,-0.999826431274414,-0.000634340976830572,-0.0236839931458235,-0.999719321727753,-0.00070362736005336,-0.0186222046613693,-0.999826431274414,-0.000772895640693605,-0.0135599365457892,-0.999907851219177,-0.00123609334696084,-0.0163491498678923,-0.999865591526031,-0.00134241615887731,-0.0163508281111717,-0.999865412712097,-0.00144873897079378,-0.0163525082170963,-0.999865233898163,-0.00134241615887731,-0.0163508281111717,-0.999865412712097,-0.00200694380328059,0.410672664642334,-0.911780655384064,-0.00198420556262136,0.410672664642334,-0.911780714988709,-0.00196146755479276,0.410672724246979,-0.911780834197998,-0.00198420556262136,0.410672694444656,-0.911780714988709,-0.001884262310341,0.410765647888184,-0.911738991737366,-0.00186242000199854,0.410765737295151,-0.911739051342011,-0.001884262310341,0.410765647888184,-0.911738991737366,-0.00190610473509878,0.410765707492828,-0.911738932132721,-0.00700514717027545,0.413060992956162,-0.910676419734955,-0.00703474180772901,0.407223165035248,-0.913301706314087,-0.00706404680386186,0.40136855840683,-0.915889382362366,-0.00703474227339029,0.407223165035248,-0.913301706314087,-0.000212472208659165,0.40658962726593,-0.913610875606537,-0.00022549279674422,0.409023195505142,-0.912523984909058,-0.000238511725910939,0.411453872919083,-0.911430537700653,-0.00022549279674422,0.409023195505142,-0.912523984909058
  1032. }
  1033. TangentsW: *168 {
  1034. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1035. }
  1036. }
  1037. LayerElementTangent: 1 {
  1038. Version: 102
  1039. Name: "LightMapUV"
  1040. MappingInformationType: "ByPolygonVertex"
  1041. ReferenceInformationType: "Direct"
  1042. Tangents: *504 {
  1043. a: -0.00817414652556181,-0.999936938285828,0.0077136280015111,-0.00817250739783049,-0.99996554851532,-0.00144538714084774,-0.00817414652556181,-0.999936938285828,0.0077136280015111,-0.00817509740591049,-0.999824225902557,0.0168719943612814,-0.999779105186462,0.00102467054966837,-0.0209970120340586,-0.998859465122223,0.000505391100887209,-0.0477441735565662,-0.999779105186462,0.00102467031683773,-0.0209970120340586,-0.999982178211212,0.00154320860747248,0.00576519593596458,0.00938218180090189,0.999929308891296,-0.00731359794735909,0.00937470700591803,0.999841690063477,-0.0151298884302378,0.00938218366354704,0.999929308891296,-0.00731359794735909,0.00938907358795404,0.999955892562866,0.000503138697240502,0.999946355819702,-0.0103670125827193,-6.00618222961202e-005,0.999938189983368,-0.0104501731693745,-0.00381560670211911,0.999915957450867,-0.0105331866070628,-0.00757109792903066,0.999938189983368,-0.0104501731693745,-0.00381560670211911,0.999532580375671,0.0266106184571981,0.015056436881423,0.999161720275879,0.0269985143095255,0.0307724345475435,0.999532580375671,0.026610616594553,0.015056436881423,0.999656081199646,0.0262161381542683,-0.000663286889903247,0.999884486198425,0.0141684543341398,0.00550656532868743,0.999883413314819,0.0142366271466017,0.00553701026365161,0.999882280826569,0.0143047980964184,0.00556745566427708,0.999883413314819,0.0142366271466017,0.0055370107293129,-0.999961078166962,-0.00806485489010811,-0.00358338467776775,-0.99995481967926,-0.00869595166295767,-0.00386208482086658,-0.999947905540466,-0.00932704377919436,-0.00414078216999769,-0.99995481967926,-0.00869595166295767,-0.0038620843552053,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0,-0.407825827598572,0.913059771060944,-0.000229852812481113,-0.407825827598572,0.913059830665588,-0.000459705566754565,-0.407825767993927,0.913059651851654,-0.000229852812481113,-0.407825857400894,0.913059830665588,-0,0.964527070522308,0.263983935117722,-0,0.964929282665253,0.262510061264038,-0,0.964527070522308,0.263983935117722,-0,0.964122653007507,0.265457183122635,
  1044. -8.12144719475327e-007,-0.964527070522308,-0.263983935117722,-1.01229254312329e-007,-0.964122653007507,-0.265457183122635,-8.12124312687956e-007,-0.964527070522308,-0.263983935117722,-1.52303016420774e-006,-0.964929282665253,-0.262510061264038,0,-0.964122712612152,-0.265457034111023,0,-0.964122712612152,-0.265457034111023,0,-0.964122712612152,-0.265457034111023,0,-0.964122712612152,-0.265457034111023,0,-0.964929401874542,-0.262509942054749,0,-0.964929401874542,-0.262509942054749,0,-0.964929401874542,-0.262509942054749,0,-0.964929401874542,-0.262509942054749,-1,2.73615969490493e-005,-9.61007681326009e-005,-1,4.48230348411016e-005,-0.000134507135953754,-1,6.22844672761858e-005,-0.000172913511050865,-1,4.48230384790804e-005,-0.000134507135953754,1,0,0,1,0,0,1,0,0,1,0,0,-7.07205254002474e-006,-0.409343153238297,0.912380516529083,-6.67588528813212e-006,-0.403854340314865,0.914823412895203,-7.07205435901415e-006,-0.409343153238297,0.912380516529083,-7.46796331441146e-006,-0.414817214012146,0.909904778003693,-0.000662922102492303,-0.407298654317856,0.913294792175293,-0.000663043872918934,-0.402519464492798,0.915411174297333,-0.000662922044284642,-0.407298654317856,0.913294792175293,-0.000662782054860145,-0.412066668272018,0.911153435707092,5.24532733834349e-005,-0.970623672008514,-0.240602791309357,-0.000126809303765185,-0.970623731613159,-0.240602791309357,-0.000306071859085932,-0.97062361240387,-0.240602761507034,-0.000126809303765185,-0.970623731613159,-0.240602791309357,0.040395300835371,-0.970408141613007,-0.238067820668221,0.0202639773488045,-0.971001207828522,-0.238214150071144,0.00012443472223822,-0.971200466156006,-0.238263919949532,0.0202639773488045,-0.971001207828522,-0.238214150071144,-1,-3.60370063390292e-006,-1.60523109116184e-006,-1,1.10385212792607e-006,-1.21735602078843e-005,-1,5.81140511712874e-006,-2.27418895519804e-005,-1,1.10385246898659e-006,-1.21735602078843e-005,1,0,0,1,0,0,1,0,0,1,0,0,-1.2140978469688e-005,0.961961448192596,0.273185402154922,-1.21448683785275e-005,0.961407423019409,0.275128662586212,
  1045. -1.21409793791827e-005,0.961961448192596,0.273185402154922,-1.21370421766187e-005,0.962511479854584,0.271241039037704,-2.22416892938782e-005,-0.961966335773468,-0.273168236017227,-2.3162858269643e-005,-0.962511420249939,-0.271241068840027,-2.22417129407404e-005,-0.961966335773468,-0.273168236017227,-2.13204457395477e-005,-0.961417257785797,-0.275094240903854,0.0511877350509167,-0.960152268409729,-0.274750143289566,0.0256134625524282,-0.961097002029419,-0.275020837783813,2.24215200432809e-005,-0.961412370204926,-0.275111377239227,0.0256134625524282,-0.961097002029419,-0.275020778179169,0,-0.962511420249939,-0.271241128444672,0.0260068494826555,-0.962185859680176,-0.27114936709404,0.0519961081445217,-0.961209416389465,-0.270874232053757,0.0260068494826555,-0.962185859680176,-0.27114936709404,0.992338597774506,0.123548440635204,0.000160843439516611,0.969471871852875,0.245202466845512,-0.000170860410435125,0.992338597774506,0.123548440635204,0.000160843483172357,0.99999988079071,1.29112174818147e-006,0.000490082777105272,0.000926961365621537,-0.999994277954102,-0.00327642494812608,0.000924901687540114,-0.999997317790985,-0.0021268401760608,0.000926961249206215,-0.999994277954102,-0.00327642494812608,0.000929019646719098,-0.999989867210388,-0.00442600529640913,-0.994502305984497,-0.10470924526453,-0.00104864756576717,-0.999999165534973,-3.97368421545252e-006,-0.00136168487370014,-0.994502305984497,-0.10470924526453,-0.00104864768218249,-0.97807252407074,-0.208263382315636,-0.000724082055967301,0.00145534856710583,-0.999992847442627,-0.00351373758167028,0.00145437475293875,-0.999988675117493,-0.00455224746838212,0.00145534856710583,-0.999992847442627,-0.00351373758167028,0.00145632110070437,-0.999995887279511,-0.00247522396966815,-0.00300979055464268,0.00227047642692924,-0.999992966651917,-0.00299668707884848,-0.00284227728843689,-0.999991476535797,-0.00300979055464268,0.00227047642692924,-0.999992966651917,-0.00302281533367932,0.00738317053765059,-0.99996817111969,0.892548680305481,-0.450944930315018,0.00235074874944985,
  1046. 0.972766220569611,-0.231785967946053,0.00101418839767575,0.999999940395355,-2.2507076664624e-006,-0.000377612130250782,0.972766220569611,-0.231785967946053,0.0010141886305064,0.00148109323345125,-0.999960541725159,-0.00876391679048538,0.00148396368604153,-0.999952137470245,-0.00967265386134386,0.00148109346628189,-0.999960541725159,-0.00876391679048538,0.0014782213838771,-0.9999680519104,-0.00785517226904631,-0.978706002235413,-0.205251321196556,-0.00252291723154485,-0.999991953372955,-2.7557600333239e-005,-0.00401648227125406,-0.978706002235413,-0.205251321196556,-0.00252291653305292,-0.915754675865173,-0.401737153530121,-0.00092194537864998,0.00579538382589817,-0.00374155095778406,-0.999976217746735,0.0121012097224593,-0.00376193365082145,-0.999919772148132,0.0184065531939268,-0.00378216686658561,-0.999823451042175,0.0121012097224593,-0.00376193411648273,-0.999919772148132,-0.999761581420898,0.011304434388876,0.0186794437468052,-0.999199569225311,0.0113406144082546,0.0383620038628578,-0.999761581420898,0.011304434388876,0.0186794437468052,-0.999936044216156,0.0112638724967837,-0.00101035600528121,0.0115415723994374,-0.999866366386414,0.0115807959809899,0.0115434098988771,-0.999933362007141,-1.21555808618723e-006,0.01154157333076,-0.999866366386414,0.0115807959809899,0.0115381851792336,-0.999665141105652,0.0231612529605627,-0.0136711848899722,0.999894142150879,-0.0049994052387774,-0.0136665524914861,0.999906599521637,1.5373392670881e-005,-0.0136711867526174,0.999894142150879,-0.0049994052387774,-0.0136754754930735,0.999856352806091,-0.0100140571594238,-0.999874830245972,-0.0158208142966032,-0.000260976084973663,-0.999875009059906,-0.0158165786415339,-1.36611936341069e-006,-0.999874949455261,-0.0158123392611742,0.000258243846474215,-0.999875009059906,-0.0158165786415339,-1.36611936341069e-006,-0.00210259272716939,0.410672575235367,-0.911780476570129,-0.00222171284258366,0.410672456026077,-0.91178023815155,-0.00234083319082856,0.410672307014465,-0.911779999732971,-0.00222171284258366,0.4106724858284,-0.91178023815155,
  1047. 0.999960899353027,-0.00360221043229103,0.00807661563158035,0.999960005283356,-0.00364347943104804,0.00816821493208408,0.999960899353027,-0.00360221043229103,0.00807661563158035,0.999961793422699,-0.0035609423648566,0.00798501539975405,0.0045894980430603,0.913972735404968,0.405749946832657,0.00462546339258552,0.911884903907776,0.410420119762421,0.00466130813583732,0.909773290157318,0.415079563856125,0.0046254638582468,0.911884903907776,0.410420119762421,0.00488648330792785,-0.915722012519836,-0.401782751083374,0.00488658202812076,-0.915935754776001,-0.401295244693756,0.00488668028265238,-0.916149199008942,-0.400807619094849,0.00488658202812076,-0.915935754776001,-0.401295244693756
  1048. }
  1049. TangentsW: *168 {
  1050. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1051. }
  1052. }
  1053. LayerElementUV: 0 {
  1054. Version: 101
  1055. Name: "UVmap_0"
  1056. MappingInformationType: "ByPolygonVertex"
  1057. ReferenceInformationType: "IndexToDirect"
  1058. UV: *336 {
  1059. a: -0.483154296875,1.02938842773438,0.2021484375,1.03091430664063,-0.384033203125,1.0904541015625,0.202392578125,1.0897216796875,-0.480712890625,1.2763671875,0.2003173828125,1.27685546875,-0.480712890625,1.3271484375,0.20166015625,1.32958984375,0.2027587890625,1.2130126953125,-0.38330078125,1.1527099609375,0.2032470703125,1.15380859375,-0.48193359375,1.215087890625,-0.38037109375,2.3095703125,0.2025146484375,2.3115234375,-0.380126953125,2.3603515625,0.202392578125,2.36328125,-0.97216796875,2.4013671875,-0.427734375,2.455078125,-0.97314453125,2.4541015625,-0.427734375,2.4013671875,0.348511815071106,-1.36092686653137,-1.47265625,-1.375,0.349453777074814,-1.38817322254181,-1.47265625,-1.400390625,-0.84033203125,-0.400390625,-2.7235860824585,-0.371739625930786,-2.72387766838074,-0.397976815700531,-0.83984375,-0.376953125,0.1983642578125,0.548583984375,-0.6162109375,0.458984375,0.1983642578125,0.458984375,-0.6162109375,0.548583984375,0.1983642578125,0.6953125,-0.6162109375,0.6953125,0.1983642578125,0.605224609375,-0.6162109375,0.605224609375,-0.434814453125,1.75439453125,0.22314453125,1.75439453125,-0.434814453125,1.83544921875,0.22314453125,1.83544921875,0.21923828125,1.97412109375,-0.438720703125,1.89306640625,0.21923828125,1.89306640625,-0.438720703125,1.97412109375,-1.5791015625,-0.8330078125,-1.5810546875,-0.890625,-1.515625,-0.890625,-1.5146484375,-0.8330078125,-1.484375,-0.7744140625,-1.486328125,-0.716796875,-1.5478515625,-0.775390625,-1.5498046875,-0.7177734375,1.30859375,-0.3388671875,0.2403564453125,-0.4189453125,1.30859375,-0.4189453125,0.2403564453125,-0.3388671875,-0.281982421875,-1.267578125,-1.3203125,-1.271484375,-0.2822265625,-1.353515625,-1.3203125,-1.349609375,0.19091796875,0.765380859375,-0.59130859375,0.82861328125,-0.60009765625,0.751708984375,0.1993408203125,0.82861328125,-0.587890625,0.970046997070313,-0.57958984375,0.89404296875,0.1944580078125,0.95501708984375,0.20263671875,0.89056396484375,-1.56640625,-1.0703125,-1.564453125,-1.13671875,-1.5126953125,-1.072265625,-1.5146484375,
  1060. -1.13671875,-1.515625,-0.9482421875,-1.5654296875,-0.94921875,-1.5146484375,-1.01171875,-1.56640625,-1.013671875,0.195068359375,0.3955078125,-0.6279296875,0.3046875,0.195068359375,0.3046875,-0.6279296875,0.3955078125,0.1947021484375,0.2412109375,-0.62841796875,0.2412109375,0.1947021484375,0.150390625,-0.62841796875,0.150390625,-0.41455078125,2.109375,0.21923828125,2.0322265625,0.21923828125,2.109375,-0.41455078125,2.0322265625,0.2119140625,2.2490234375,-0.421875,2.2490234375,-0.421875,2.1708984375,0.2119140625,2.1708984375,-1.552734375,-0.6591796875,-1.4892578125,-0.6591796875,-1.48828125,-0.603515625,-1.5517578125,-0.6025390625,-1.5517578125,-0.48828125,-1.55078125,-0.5439453125,-1.48828125,-0.54296875,-1.490234375,-0.4873046875,-0.56884765625,1.5439453125,-0.9521484375,1.471435546875,-0.55517578125,1.472412109375,-0.9521484375,1.54296875,-0.49658203125,2.0009765625,-0.9365234375,1.9013671875,-0.4970703125,1.8984375,-0.97412109375,2.00390625,-0.92041015625,1.2147216796875,-0.5693359375,1.214111328125,-0.92041015625,1.287109375,-0.55908203125,1.28564453125,-0.9794921875,1.7294921875,-0.5029296875,1.73193359375,-0.94140625,1.83251953125,-0.50146484375,1.83544921875,-0.9755859375,2.2314453125,-0.48486328125,2.23828125,-0.94384765625,2.33203125,-0.48583984375,2.33984375,-0.53564453125,1.671875,-0.96337890625,1.67333984375,-0.5576171875,1.60205078125,-0.96337890625,1.60302734375,-0.486328125,2.16796875,-0.94384765625,2.0732421875,-0.482421875,2.064453125,-0.9755859375,2.1748046875,-0.5791015625,1.344970703125,-0.955078125,1.41357421875,-0.955078125,1.343017578125,-0.5595703125,1.4140625,-1.6025390625,-1.25,-1.505859375,-1.25,-1.6025390625,-1.189453125,-1.505859375,-1.189453125,-1.61328125,-1.36328125,-1.5146484375,-1.302734375,-1.61328125,-1.3046875,-1.5146484375,-1.36328125,0.203369140625,1.4521484375,0.203369140625,1.391845703125,-0.3505859375,1.452880859375,-0.474609375,1.392822265625,0.22216796875,1.51513671875,0.22216796875,1.57568359375,-0.332763671875,1.515625,-0.455810546875,1.57470703125,0.22216796875,1.6923828125,
  1061. 0.22216796875,1.638671875,-0.444091796875,1.63916015625,-0.444091796875,1.69189453125,-0.7431640625,-0.013671875,-0.743182003498077,1.93016731739044,0.194550603628159,1.93211567401886,0.195556640625,-0.01953125,-0.738292813301086,-2.04185438156128,-0.7412109375,-0.083984375,0.199446618556976,-2.04381608963013,0.1978759765625,-0.078125,0.2420654296875,0.33642578125,0.2423095703125,0.3564453125,1.322265625,0.3603515625,1.322265625,0.32763671875,0.651535391807556,99.7782897949219,0.651546537876129,99.8015213012695,1.73052608966827,99.7775802612305,1.73051488399506,99.8075866699219
  1062. }
  1063. UVIndex: *168 {
  1064. a: 2,0,1,3,6,4,5,7,9,10,8,11,14,12,13,15,17,18,16,19,22,20,21,23,25,26,24,27,29,30,28,31,34,32,33,35,38,36,37,39,41,42,40,43,44,45,46,47,50,48,49,51,53,54,52,55,58,56,57,59,61,62,60,63,66,64,65,67,70,68,69,71,74,72,73,75,77,78,76,79,82,80,81,83,85,86,84,87,88,89,90,91,92,93,94,95,96,97,98,99,101,102,100,103,105,106,104,107,110,108,109,111,114,112,113,115,118,116,117,119,122,120,121,123,125,126,124,127,129,130,128,131,134,132,133,135,137,138,136,139,141,140,142,143,146,144,145,147,150,149,148,151,153,152,155,154,157,156,158,159,162,161,160,163,167,165,164,166
  1065. }
  1066. }
  1067. LayerElementUV: 1 {
  1068. Version: 101
  1069. Name: "LightMapUV"
  1070. MappingInformationType: "ByPolygonVertex"
  1071. ReferenceInformationType: "IndexToDirect"
  1072. UV: *336 {
  1073. a: 0.261962890625,0.3876953125,0.26171875,0.524169921875,0.25,0.40771484375,0.25,0.524169921875,0.47021484375,0.35546875,0.469970703125,0.49169921875,0.4599609375,0.35595703125,0.459716796875,0.49169921875,0.2181396484375,0.524169921875,0.2301025390625,0.40771484375,0.2298583984375,0.524169921875,0.2176513671875,0.3876953125,0.921875,0.1982421875,0.92138671875,0.314453125,0.91162109375,0.1982421875,0.9111328125,0.314453125,0.5830078125,0.107421875,0.572265625,0.2177734375,0.572265625,0.10693359375,0.5830078125,0.2177734375,1.0187224149704,0.0819173082709312,0.65283203125,0.08740234375,1.01872503757477,0.0765703320503235,0.65283203125,0.08251953125,0.787109375,0.099609375,0.41675066947937,0.101191200315952,0.416733056306839,0.0960337892174721,0.787109375,0.1044921875,0.1854248046875,0.70166015625,0.1995849609375,0.49658203125,0.1995849609375,0.70166015625,0.1854248046875,0.49658203125,0.423095703125,0.66943359375,0.2176513671875,0.66943359375,0.423095703125,0.6552734375,0.2176513671875,0.6552734375,0.405517578125,0.36767578125,0.405517578125,0.57275390625,0.39501953125,0.36767578125,0.39501953125,0.57275390625,0.42724609375,0.57275390625,0.437744140625,0.36767578125,0.437744140625,0.57275390625,0.42724609375,0.36767578125,0.379150390625,0.12109375,0.37890625,0.10693359375,0.389404296875,0.10693359375,0.3896484375,0.12109375,0.421630859375,0.10693359375,0.42138671875,0.12109375,0.411376953125,0.10693359375,0.4111328125,0.12109375,0.10479736328125,0.70166015625,0.121826171875,0.503662109375,0.121826171875,0.70166015625,0.10479736328125,0.503662109375,0.056427001953125,0.70166015625,0.057342529296875,0.503662109375,0.0743408203125,0.70166015625,0.07342529296875,0.503662109375,0.41748046875,0.594970703125,0.2197265625,0.60498046875,0.2176513671875,0.5927734375,0.419677734375,0.60498046875,0.2176513671875,0.63720703125,0.2197265625,0.625244140625,0.41748046875,0.634765625,0.41943359375,0.624755859375,0.88330078125,0.185546875,0.8837890625,0.16845703125,0.8916015625,0.185546875,0.89111328125,0.16845703125,
  1074. 0.74609375,0.16943359375,0.73828125,0.16943359375,0.74609375,0.15283203125,0.73828125,0.15234375,0.1531982421875,0.70166015625,0.1676025390625,0.49658203125,0.1676025390625,0.70166015625,0.1531982421875,0.49658203125,0.55615234375,0.7662353515625,0.55615234375,0.560791015625,0.57080078125,0.7662353515625,0.57080078125,0.560791015625,0.9111328125,0.33251953125,0.9208984375,0.54052734375,0.9111328125,0.54052734375,0.9208984375,0.33251953125,0.87890625,0.54052734375,0.87890625,0.33251953125,0.88818359375,0.33251953125,0.88818359375,0.54052734375,0.95947265625,0.10693359375,0.96923828125,0.1064453125,0.96923828125,0.12109375,0.95947265625,0.12109375,0.25,0.10498046875,0.25,0.09033203125,0.259521484375,0.0908203125,0.25927734375,0.10498046875,0.87890625,0.3037109375,0.89111328125,0.212890625,0.89111328125,0.306640625,0.87939453125,0.212890625,0.84912109375,0.572021484375,0.7578125,0.552978515625,0.84912109375,0.552490234375,0.75,0.57275390625,0.61669921875,0.12451171875,0.61669921875,0.20849609375,0.6044921875,0.12451171875,0.60498046875,0.2109375,0.45947265625,0.51953125,0.55859375,0.520263671875,0.467529296875,0.539306640625,0.55908203125,0.539794921875,0.368408203125,0.466796875,0.366943359375,0.569580078125,0.34912109375,0.4736328125,0.34765625,0.5693359375,0.6533203125,0.4365234375,0.65283203125,0.33837890625,0.6650390625,0.43115234375,0.6650390625,0.33837890625,0.31982421875,0.5712890625,0.2242431640625,0.553466796875,0.32080078125,0.5517578125,0.2176513671875,0.57275390625,0.55224609375,0.25439453125,0.54052734375,0.16796875,0.552734375,0.16796875,0.54052734375,0.25927734375,0.68505859375,0.142578125,0.7041015625,0.14208984375,0.68505859375,0.154296875,0.7041015625,0.154296875,0.921875,0.1513671875,0.91015625,0.17041015625,0.91015625,0.15087890625,0.921875,0.17041015625,0.2822265625,0.5244140625,0.294189453125,0.5244140625,0.281982421875,0.41357421875,0.2939453125,0.38916015625,0.326416015625,0.5244140625,0.314453125,0.5244140625,0.326416015625,0.41357421875,0.314697265625,0.38916015625,0.49169921875,0.4921875,0.501953125,
  1075. 0.4921875,0.501953125,0.35693359375,0.491943359375,0.35693359375,0.00801849365234375,0.731201171875,0.0088286641985178,1.08125376701355,0.215640008449554,1.08162438869476,0.215087890625,0.730224609375,1.29553270339966,0.562517762184143,0.9443359375,0.55908203125,1.29601347446442,0.769315361976624,0.943359375,0.7662353515625,0.0936279296875,0.2744140625,0.08941650390625,0.2744140625,0.088623046875,0.47607421875,0.095458984375,0.47607421875,-20.8138275146484,0.351202249526978,-20.8186111450195,0.351204335689545,-20.8136672973633,0.552376210689545,-20.8198699951172,0.552374124526978
  1076. }
  1077. UVIndex: *168 {
  1078. a: 2,0,1,3,6,4,5,7,9,10,8,11,14,12,13,15,17,18,16,19,22,20,21,23,25,26,24,27,29,30,28,31,34,32,33,35,38,36,37,39,41,42,40,43,44,45,46,47,50,48,49,51,53,54,52,55,58,56,57,59,61,62,60,63,66,64,65,67,70,68,69,71,74,72,73,75,77,78,76,79,82,80,81,83,85,86,84,87,88,89,90,91,92,93,94,95,96,97,98,99,101,102,100,103,105,106,104,107,110,108,109,111,114,112,113,115,118,116,117,119,122,120,121,123,125,126,124,127,129,130,128,131,134,132,133,135,137,138,136,139,141,140,142,143,146,144,145,147,150,149,148,151,153,152,155,154,157,156,158,159,162,161,160,163,167,165,164,166
  1079. }
  1080. }
  1081. LayerElementSmoothing: 0 {
  1082. Version: 102
  1083. Name: ""
  1084. MappingInformationType: "ByEdge"
  1085. ReferenceInformationType: "Direct"
  1086. Smoothing: *96 {
  1087. 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
  1088. }
  1089. }
  1090. LayerElementMaterial: 0 {
  1091. Version: 101
  1092. Name: ""
  1093. MappingInformationType: "AllSame"
  1094. ReferenceInformationType: "IndexToDirect"
  1095. Materials: *1 {
  1096. a: 0
  1097. }
  1098. }
  1099. Layer: 0 {
  1100. Version: 100
  1101. LayerElement: {
  1102. Type: "LayerElementNormal"
  1103. TypedIndex: 0
  1104. }
  1105. LayerElement: {
  1106. Type: "LayerElementBinormal"
  1107. TypedIndex: 0
  1108. }
  1109. LayerElement: {
  1110. Type: "LayerElementTangent"
  1111. TypedIndex: 0
  1112. }
  1113. LayerElement: {
  1114. Type: "LayerElementMaterial"
  1115. TypedIndex: 0
  1116. }
  1117. LayerElement: {
  1118. Type: "LayerElementSmoothing"
  1119. TypedIndex: 0
  1120. }
  1121. LayerElement: {
  1122. Type: "LayerElementUV"
  1123. TypedIndex: 0
  1124. }
  1125. }
  1126. Layer: 1 {
  1127. Version: 100
  1128. LayerElement: {
  1129. Type: "LayerElementBinormal"
  1130. TypedIndex: 1
  1131. }
  1132. LayerElement: {
  1133. Type: "LayerElementTangent"
  1134. TypedIndex: 1
  1135. }
  1136. LayerElement: {
  1137. Type: "LayerElementUV"
  1138. TypedIndex: 1
  1139. }
  1140. }
  1141. }
  1142. Geometry: 2267733767840, "Geometry::", "Mesh" {
  1143. Vertices: *24 {
  1144. a: -200.222412109375,3.1033935546875,202.251953125,202.3046875,3.1033935546875,202.251953125,-200.222412109375,101.476135253906,-13.9570922851563,202.3046875,101.476135253906,-13.9570922851563,-200.222412109375,85.4677124023438,-18.8228149414063,202.3046875,85.4677124023438,-18.8228149414063,-200.222412109375,-8.74563598632813,193.066223144531,202.3046875,-8.74563598632813,193.066223144531
  1145. }
  1146. PolygonVertexIndex: *24 {
  1147. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  1148. }
  1149. Edges: *12 {
  1150. a: 0,2,6,10,3,1,7,5,11,9,15,13
  1151. }
  1152. GeometryVersion: 124
  1153. LayerElementNormal: 0 {
  1154. Version: 102
  1155. Name: ""
  1156. MappingInformationType: "ByPolygonVertex"
  1157. ReferenceInformationType: "Direct"
  1158. Normals: *72 {
  1159. a: 0,0.910214245319366,0.41413751244545,0,0.910214245319366,0.41413751244545,0,0.910214245319366,0.41413751244545,0,0.910214245319366,0.41413751244545,0,0.29081118106842,-0.956780433654785,0,0.29081118106842,-0.956780433654785,0,0.29081118106842,-0.956780433654785,0,0.29081118106842,-0.956780433654785,0,-0.913746774196625,-0.406284064054489,0,-0.913746774196625,-0.406284064054489,0,-0.913746774196625,-0.406284064054489,0,-0.913746774196625,-0.406284064054489,0,-0.612685441970825,0.790326833724976,0,-0.612685441970825,0.790326833724976,0,-0.612685441970825,0.790326833724976,0,-0.612685441970825,0.790326833724976,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,-1,-1.06787695131061e-006,0,-1,-1.06787695131061e-006,0,-1,-1.06787695131061e-006,0,-0.999999940395355,-1.06787695131061e-006,0
  1160. }
  1161. NormalsW: *24 {
  1162. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1163. }
  1164. }
  1165. LayerElementBinormal: 0 {
  1166. Version: 102
  1167. Name: "map1"
  1168. MappingInformationType: "ByPolygonVertex"
  1169. ReferenceInformationType: "Direct"
  1170. Binormals: *72 {
  1171. a: 0,0.414137572050095,-0.910214364528656,0,0.414137572050095,-0.910214364528656,0,0.414137572050095,-0.910214364528656,0,0.414137572050095,-0.910214364528656,0,-0.956780552864075,-0.290811210870743,0,-0.956780552864075,-0.290811210870743,0,-0.956780552864075,-0.290811210870743,0,-0.956780552864075,-0.290811210870743,0,-0.406284123659134,0.913746893405914,0,-0.406284123659134,0.913746893405914,0,-0.406284123659134,0.913746893405914,0,-0.406284123659134,0.913746893405914,0,0.790326952934265,0.61268550157547,0,0.790326952934265,0.61268550157547,0,0.790326952934265,0.61268550157547,0,0.790326952934265,0.61268550157547,0,0.61268550157547,-0.790326833724976,0,0.459350913763046,-0.888254880905151,0,0.29081118106842,-0.956780552864075,0,0.459350913763046,-0.888254880905151,-4.90530226215924e-007,0.459350913763046,-0.888254880905151,-6.5427275330876e-007,0.61268550157547,-0.790326833724976,-4.90530226215924e-007,0.459350913763046,-0.888254880905151,-3.10550575477464e-007,0.29081118106842,-0.956780552864075
  1172. }
  1173. BinormalsW: *24 {
  1174. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1175. }
  1176. }
  1177. LayerElementTangent: 0 {
  1178. Version: 102
  1179. Name: "map1"
  1180. MappingInformationType: "ByPolygonVertex"
  1181. ReferenceInformationType: "Direct"
  1182. Tangents: *72 {
  1183. a: 1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,0,-0.790326833724976,-0.61268550157547,0,-0.888254880905151,-0.459350913763046,0,-0.95678049325943,-0.29081118106842,0,-0.888254880905151,-0.459350913763046,-9.48546926338167e-007,0.888254880905151,0.459350913763046,-8.43971804442845e-007,0.790326833724976,0.61268550157547,-9.48546926338167e-007,0.888254880905151,0.459350913763046,-1.02172373317444e-006,0.95678049325943,0.29081118106842
  1184. }
  1185. TangentsW: *24 {
  1186. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1187. }
  1188. }
  1189. LayerElementUV: 0 {
  1190. Version: 101
  1191. Name: "map1"
  1192. MappingInformationType: "ByPolygonVertex"
  1193. ReferenceInformationType: "IndexToDirect"
  1194. UV: *28 {
  1195. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  1196. }
  1197. UVIndex: *24 {
  1198. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  1199. }
  1200. }
  1201. LayerElementSmoothing: 0 {
  1202. Version: 102
  1203. Name: ""
  1204. MappingInformationType: "ByEdge"
  1205. ReferenceInformationType: "Direct"
  1206. Smoothing: *12 {
  1207. a: 0,0,0,0,0,0,0,0,0,0,0,0
  1208. }
  1209. }
  1210. LayerElementMaterial: 0 {
  1211. Version: 101
  1212. Name: ""
  1213. MappingInformationType: "AllSame"
  1214. ReferenceInformationType: "IndexToDirect"
  1215. Materials: *1 {
  1216. a: 0
  1217. }
  1218. }
  1219. Layer: 0 {
  1220. Version: 100
  1221. LayerElement: {
  1222. Type: "LayerElementNormal"
  1223. TypedIndex: 0
  1224. }
  1225. LayerElement: {
  1226. Type: "LayerElementBinormal"
  1227. TypedIndex: 0
  1228. }
  1229. LayerElement: {
  1230. Type: "LayerElementTangent"
  1231. TypedIndex: 0
  1232. }
  1233. LayerElement: {
  1234. Type: "LayerElementMaterial"
  1235. TypedIndex: 0
  1236. }
  1237. LayerElement: {
  1238. Type: "LayerElementSmoothing"
  1239. TypedIndex: 0
  1240. }
  1241. LayerElement: {
  1242. Type: "LayerElementUV"
  1243. TypedIndex: 0
  1244. }
  1245. }
  1246. }
  1247. Geometry: 2267733777056, "Geometry::", "Mesh" {
  1248. Vertices: *24 {
  1249. a: -198.37646484375,-35.7303924560547,19.4862670898438,-184.025390625,-35.7303924560547,19.4862670898438,-198.37646484375,70.8925170898438,19.4862670898438,-184.025390625,70.8925170898438,19.4862670898438,-198.37646484375,80.1271667480469,-2.32000732421875,-184.025390625,80.1271667480469,-2.32000732421875,-198.37646484375,-35.7303924560547,-2.32000732421875,-184.025390625,-35.7303924560547,-2.32000732421875
  1250. }
  1251. PolygonVertexIndex: *24 {
  1252. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  1253. }
  1254. Edges: *12 {
  1255. a: 0,2,6,10,3,1,7,5,11,9,15,13
  1256. }
  1257. GeometryVersion: 124
  1258. LayerElementNormal: 0 {
  1259. Version: 102
  1260. Name: ""
  1261. MappingInformationType: "ByPolygonVertex"
  1262. ReferenceInformationType: "Direct"
  1263. Normals: *72 {
  1264. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0.92083203792572,0.389959365129471,0,0.92083203792572,0.389959365129471,0,0.92083203792572,0.389959365129471,0,0.92083203792572,0.389959365129471,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0
  1265. }
  1266. NormalsW: *24 {
  1267. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1268. }
  1269. }
  1270. LayerElementBinormal: 0 {
  1271. Version: 102
  1272. Name: "map1"
  1273. MappingInformationType: "ByPolygonVertex"
  1274. ReferenceInformationType: "Direct"
  1275. Binormals: *72 {
  1276. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,0.389959424734116,-0.92083215713501,0,0.389959424734116,-0.92083215713501,0,0.389959424734116,-0.92083215713501,0,0.389959424734116,-0.92083215713501,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,-0,1,0,-0,0.980008184909821,0.198957219719887,-0,0.92083203792572,0.389959394931793,-0,0.980008184909821,0.198957219719887,0,0.980008184909821,0.198957219719887,0,1,0,0,0.980008184909821,0.198957219719887,0,0.92083203792572,0.389959394931793
  1277. }
  1278. BinormalsW: *24 {
  1279. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1280. }
  1281. }
  1282. LayerElementTangent: 0 {
  1283. Version: 102
  1284. Name: "map1"
  1285. MappingInformationType: "ByPolygonVertex"
  1286. ReferenceInformationType: "Direct"
  1287. Tangents: *72 {
  1288. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,0,0,-1,0,0.198957219719887,-0.980008184909821,0,0.389959454536438,-0.92083215713501,0,0.198957219719887,-0.980008184909821,0,-0.198957219719887,0.980008184909821,0,-0,1,0,-0.198957219719887,0.980008184909821,0,-0.389959454536438,0.92083215713501
  1289. }
  1290. TangentsW: *24 {
  1291. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1292. }
  1293. }
  1294. LayerElementUV: 0 {
  1295. Version: 101
  1296. Name: "map1"
  1297. MappingInformationType: "ByPolygonVertex"
  1298. ReferenceInformationType: "IndexToDirect"
  1299. UV: *28 {
  1300. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  1301. }
  1302. UVIndex: *24 {
  1303. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  1304. }
  1305. }
  1306. LayerElementSmoothing: 0 {
  1307. Version: 102
  1308. Name: ""
  1309. MappingInformationType: "ByEdge"
  1310. ReferenceInformationType: "Direct"
  1311. Smoothing: *12 {
  1312. a: 0,0,0,0,0,0,0,0,0,0,0,0
  1313. }
  1314. }
  1315. LayerElementMaterial: 0 {
  1316. Version: 101
  1317. Name: ""
  1318. MappingInformationType: "AllSame"
  1319. ReferenceInformationType: "IndexToDirect"
  1320. Materials: *1 {
  1321. a: 0
  1322. }
  1323. }
  1324. Layer: 0 {
  1325. Version: 100
  1326. LayerElement: {
  1327. Type: "LayerElementNormal"
  1328. TypedIndex: 0
  1329. }
  1330. LayerElement: {
  1331. Type: "LayerElementBinormal"
  1332. TypedIndex: 0
  1333. }
  1334. LayerElement: {
  1335. Type: "LayerElementTangent"
  1336. TypedIndex: 0
  1337. }
  1338. LayerElement: {
  1339. Type: "LayerElementMaterial"
  1340. TypedIndex: 0
  1341. }
  1342. LayerElement: {
  1343. Type: "LayerElementSmoothing"
  1344. TypedIndex: 0
  1345. }
  1346. LayerElement: {
  1347. Type: "LayerElementUV"
  1348. TypedIndex: 0
  1349. }
  1350. }
  1351. }
  1352. Geometry: 2267733760160, "Geometry::", "Mesh" {
  1353. Vertices: *24 {
  1354. a: 184.825439453125,-35.7303924560547,19.8388671875,199.0390625,-35.7303924560547,19.8388671875,184.825439453125,70.8925170898438,19.8388671875,199.0390625,70.8925170898438,19.8388671875,184.825439453125,80.1271667480469,-1.58245849609375,199.0390625,80.1271667480469,-1.58245849609375,184.825439453125,-35.7303924560547,-1.58245849609375,199.0390625,-35.7303924560547,-1.58245849609375
  1355. }
  1356. PolygonVertexIndex: *24 {
  1357. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  1358. }
  1359. Edges: *12 {
  1360. a: 0,2,6,10,3,1,7,5,11,9,15,13
  1361. }
  1362. GeometryVersion: 124
  1363. LayerElementNormal: 0 {
  1364. Version: 102
  1365. Name: ""
  1366. MappingInformationType: "ByPolygonVertex"
  1367. ReferenceInformationType: "Direct"
  1368. Normals: *72 {
  1369. a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0.918303549289703,0.395877063274384,0,0.918303549289703,0.395877063274384,0,0.918303549289703,0.395877063274384,0,0.918303549289703,0.395877063274384,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0
  1370. }
  1371. NormalsW: *24 {
  1372. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1373. }
  1374. }
  1375. LayerElementBinormal: 0 {
  1376. Version: 102
  1377. Name: "map1"
  1378. MappingInformationType: "ByPolygonVertex"
  1379. ReferenceInformationType: "Direct"
  1380. Binormals: *72 {
  1381. a: 0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,0.395877063274384,-0.918303549289703,0,0.395877063274384,-0.918303549289703,0,0.395877063274384,-0.918303549289703,0,0.395877063274384,-0.918303549289703,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,-0,1,0,-0,0.979363024234772,0.2021095007658,-0,0.918303549289703,0.395877063274384,-0,0.979363024234772,0.2021095007658,0,0.979363024234772,0.2021095007658,0,1,0,0,0.979363024234772,0.2021095007658,0,0.918303549289703,0.395877063274384
  1382. }
  1383. BinormalsW: *24 {
  1384. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1385. }
  1386. }
  1387. LayerElementTangent: 0 {
  1388. Version: 102
  1389. Name: "map1"
  1390. MappingInformationType: "ByPolygonVertex"
  1391. ReferenceInformationType: "Direct"
  1392. Tangents: *72 {
  1393. a: 1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,0,0,-1,0,0.202109470963478,-0.979362905025482,0,0.395877063274384,-0.918303549289703,0,0.202109470963478,-0.979362905025482,0,-0.202109470963478,0.979362905025482,0,-0,1,0,-0.202109470963478,0.979362905025482,0,-0.395877063274384,0.918303549289703
  1394. }
  1395. TangentsW: *24 {
  1396. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1397. }
  1398. }
  1399. LayerElementUV: 0 {
  1400. Version: 101
  1401. Name: "map1"
  1402. MappingInformationType: "ByPolygonVertex"
  1403. ReferenceInformationType: "IndexToDirect"
  1404. UV: *28 {
  1405. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  1406. }
  1407. UVIndex: *24 {
  1408. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  1409. }
  1410. }
  1411. LayerElementSmoothing: 0 {
  1412. Version: 102
  1413. Name: ""
  1414. MappingInformationType: "ByEdge"
  1415. ReferenceInformationType: "Direct"
  1416. Smoothing: *12 {
  1417. a: 0,0,0,0,0,0,0,0,0,0,0,0
  1418. }
  1419. }
  1420. LayerElementMaterial: 0 {
  1421. Version: 101
  1422. Name: ""
  1423. MappingInformationType: "AllSame"
  1424. ReferenceInformationType: "IndexToDirect"
  1425. Materials: *1 {
  1426. a: 0
  1427. }
  1428. }
  1429. Layer: 0 {
  1430. Version: 100
  1431. LayerElement: {
  1432. Type: "LayerElementNormal"
  1433. TypedIndex: 0
  1434. }
  1435. LayerElement: {
  1436. Type: "LayerElementBinormal"
  1437. TypedIndex: 0
  1438. }
  1439. LayerElement: {
  1440. Type: "LayerElementTangent"
  1441. TypedIndex: 0
  1442. }
  1443. LayerElement: {
  1444. Type: "LayerElementMaterial"
  1445. TypedIndex: 0
  1446. }
  1447. LayerElement: {
  1448. Type: "LayerElementSmoothing"
  1449. TypedIndex: 0
  1450. }
  1451. LayerElement: {
  1452. Type: "LayerElementUV"
  1453. TypedIndex: 0
  1454. }
  1455. }
  1456. }
  1457. Geometry: 2267733757088, "Geometry::", "Mesh" {
  1458. Vertices: *24 {
  1459. a: -197.3388671875,0.680130004882813,17.8121337890625,-184.90478515625,0.680130004882813,17.8121337890625,-197.3388671875,3.82270812988281,165.593811035156,-184.90478515625,3.82270812988281,165.593811035156,-197.3388671875,17.3307647705078,165.593811035156,-184.90478515625,17.3307647705078,165.593811035156,-197.3388671875,14.1881866455078,17.8121337890625,-184.90478515625,14.1881866455078,17.8121337890625
  1460. }
  1461. PolygonVertexIndex: *24 {
  1462. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  1463. }
  1464. Edges: *12 {
  1465. a: 0,2,6,10,3,1,7,5,11,9,15,13
  1466. }
  1467. GeometryVersion: 124
  1468. LayerElementNormal: 0 {
  1469. Version: 102
  1470. Name: ""
  1471. MappingInformationType: "ByPolygonVertex"
  1472. ReferenceInformationType: "Direct"
  1473. Normals: *72 {
  1474. a: 0,-0.999773919582367,0.0212602019309998,0,-0.999773919582367,0.0212602019309998,0,-0.999773919582367,0.0212602019309998,0,-0.999773919582367,0.0212602019309998,0,0,1,0,0,1,0,0,1,0,0,1,0,0.999773919582367,-0.0212602019309998,0,0.999773919582367,-0.0212602019309998,0,0.999773919582367,-0.0212602019309998,0,0.999773919582367,-0.0212602019309998,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0
  1475. }
  1476. NormalsW: *24 {
  1477. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1478. }
  1479. }
  1480. LayerElementBinormal: 0 {
  1481. Version: 102
  1482. Name: "map1"
  1483. MappingInformationType: "ByPolygonVertex"
  1484. ReferenceInformationType: "Direct"
  1485. Binormals: *72 {
  1486. a: 0,0.0212602037936449,0.999774038791656,0,0.0212602037936449,0.999774038791656,0,0.0212602037936449,0.999774038791656,0,0.0212602037936449,0.999774038791656,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,-0.0212602037936449,-0.999774038791656,0,-0.0212602037936449,-0.999774038791656,0,-0.0212602037936449,-0.999774038791656,0,-0.0212602037936449,-0.999774038791656,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1
  1487. }
  1488. BinormalsW: *24 {
  1489. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1490. }
  1491. }
  1492. LayerElementTangent: 0 {
  1493. Version: 102
  1494. Name: "map1"
  1495. MappingInformationType: "ByPolygonVertex"
  1496. ReferenceInformationType: "Direct"
  1497. Tangents: *72 {
  1498. a: 1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0
  1499. }
  1500. TangentsW: *24 {
  1501. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1502. }
  1503. }
  1504. LayerElementUV: 0 {
  1505. Version: 101
  1506. Name: "map1"
  1507. MappingInformationType: "ByPolygonVertex"
  1508. ReferenceInformationType: "IndexToDirect"
  1509. UV: *28 {
  1510. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  1511. }
  1512. UVIndex: *24 {
  1513. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  1514. }
  1515. }
  1516. LayerElementSmoothing: 0 {
  1517. Version: 102
  1518. Name: ""
  1519. MappingInformationType: "ByEdge"
  1520. ReferenceInformationType: "Direct"
  1521. Smoothing: *12 {
  1522. a: 0,0,0,0,0,0,0,0,0,0,0,0
  1523. }
  1524. }
  1525. LayerElementMaterial: 0 {
  1526. Version: 101
  1527. Name: ""
  1528. MappingInformationType: "AllSame"
  1529. ReferenceInformationType: "IndexToDirect"
  1530. Materials: *1 {
  1531. a: 0
  1532. }
  1533. }
  1534. Layer: 0 {
  1535. Version: 100
  1536. LayerElement: {
  1537. Type: "LayerElementNormal"
  1538. TypedIndex: 0
  1539. }
  1540. LayerElement: {
  1541. Type: "LayerElementBinormal"
  1542. TypedIndex: 0
  1543. }
  1544. LayerElement: {
  1545. Type: "LayerElementTangent"
  1546. TypedIndex: 0
  1547. }
  1548. LayerElement: {
  1549. Type: "LayerElementMaterial"
  1550. TypedIndex: 0
  1551. }
  1552. LayerElement: {
  1553. Type: "LayerElementSmoothing"
  1554. TypedIndex: 0
  1555. }
  1556. LayerElement: {
  1557. Type: "LayerElementUV"
  1558. TypedIndex: 0
  1559. }
  1560. }
  1561. }
  1562. Geometry: 2267733775008, "Geometry::", "Mesh" {
  1563. Vertices: *24 {
  1564. a: 186.361572265625,-1.8857421875,17.7713012695313,197.5029296875,-1.8857421875,17.7713012695313,186.361572265625,-0.97100830078125,170.686401367188,197.5029296875,-0.97100830078125,170.686401367188,186.361572265625,13.8302612304688,170.686401367188,197.5029296875,13.8302612304688,170.686401367188,186.361572265625,12.9155883789063,17.7713012695313,197.5029296875,12.9155883789063,17.7713012695313
  1565. }
  1566. PolygonVertexIndex: *24 {
  1567. a: 0,1,3,-3,2,3,5,-5,4,5,7,-7,6,7,1,-1,1,7,5,-4,6,0,2,-5
  1568. }
  1569. Edges: *12 {
  1570. a: 0,2,6,10,3,1,7,5,11,9,15,13
  1571. }
  1572. GeometryVersion: 124
  1573. LayerElementNormal: 0 {
  1574. Version: 102
  1575. Name: ""
  1576. MappingInformationType: "ByPolygonVertex"
  1577. ReferenceInformationType: "Direct"
  1578. Normals: *72 {
  1579. a: 0,-0.999982118606567,0.00598186533898115,0,-0.999982118606567,0.00598186533898115,0,-0.999982118606567,0.00598186533898115,0,-0.999982118606567,0.00598186533898115,0,0,1,0,0,1,0,0,1,0,0,1,0,0.999982118606567,-0.00598147045820951,0,0.999982118606567,-0.00598147045820951,0,0.999982118606567,-0.00598147045820951,0,0.999982118606567,-0.00598147045820951,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0
  1580. }
  1581. NormalsW: *24 {
  1582. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1583. }
  1584. }
  1585. LayerElementBinormal: 0 {
  1586. Version: 102
  1587. Name: "map1"
  1588. MappingInformationType: "ByPolygonVertex"
  1589. ReferenceInformationType: "Direct"
  1590. Binormals: *72 {
  1591. a: 0,0.00598186533898115,0.999982118606567,0,0.00598186533898115,0.999982118606567,0,0.00598186533898115,0.999982118606567,0,0.00598186533898115,0.999982118606567,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,-0.00598147045820951,-0.999982118606567,0,-0.00598147045820951,-0.999982118606567,0,-0.00598147045820951,-0.999982118606567,0,-0.00598147045820951,-0.999982118606567,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1
  1592. }
  1593. BinormalsW: *24 {
  1594. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1595. }
  1596. }
  1597. LayerElementTangent: 0 {
  1598. Version: 102
  1599. Name: "map1"
  1600. MappingInformationType: "ByPolygonVertex"
  1601. ReferenceInformationType: "Direct"
  1602. Tangents: *72 {
  1603. a: 1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,-0,-0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0
  1604. }
  1605. TangentsW: *24 {
  1606. a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
  1607. }
  1608. }
  1609. LayerElementUV: 0 {
  1610. Version: 101
  1611. Name: "map1"
  1612. MappingInformationType: "ByPolygonVertex"
  1613. ReferenceInformationType: "IndexToDirect"
  1614. UV: *28 {
  1615. a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.125,0,0.125,0.25
  1616. }
  1617. UVIndex: *24 {
  1618. a: 0,1,2,3,3,2,4,5,5,4,6,7,7,6,8,9,1,10,11,2,12,0,3,13
  1619. }
  1620. }
  1621. LayerElementSmoothing: 0 {
  1622. Version: 102
  1623. Name: ""
  1624. MappingInformationType: "ByEdge"
  1625. ReferenceInformationType: "Direct"
  1626. Smoothing: *12 {
  1627. a: 0,0,0,0,0,0,0,0,0,0,0,0
  1628. }
  1629. }
  1630. LayerElementMaterial: 0 {
  1631. Version: 101
  1632. Name: ""
  1633. MappingInformationType: "AllSame"
  1634. ReferenceInformationType: "IndexToDirect"
  1635. Materials: *1 {
  1636. a: 0
  1637. }
  1638. }
  1639. Layer: 0 {
  1640. Version: 100
  1641. LayerElement: {
  1642. Type: "LayerElementNormal"
  1643. TypedIndex: 0
  1644. }
  1645. LayerElement: {
  1646. Type: "LayerElementBinormal"
  1647. TypedIndex: 0
  1648. }
  1649. LayerElement: {
  1650. Type: "LayerElementTangent"
  1651. TypedIndex: 0
  1652. }
  1653. LayerElement: {
  1654. Type: "LayerElementMaterial"
  1655. TypedIndex: 0
  1656. }
  1657. LayerElement: {
  1658. Type: "LayerElementSmoothing"
  1659. TypedIndex: 0
  1660. }
  1661. LayerElement: {
  1662. Type: "LayerElementUV"
  1663. TypedIndex: 0
  1664. }
  1665. }
  1666. }
  1667. Model: 2268469014944, "Model::SM_Canopy_02", "Null" {
  1668. Version: 232
  1669. Properties70: {
  1670. P: "RotationActive", "bool", "", "",1
  1671. P: "InheritType", "enum", "", "",1
  1672. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1673. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1674. }
  1675. Shading: Y
  1676. Culling: "CullingOff"
  1677. }
  1678. Model: 2268469007984, "Model::LOD_Group_SM_Canopy_02", "LodGroup" {
  1679. Version: 232
  1680. Properties70: {
  1681. P: "RotationActive", "bool", "", "",1
  1682. P: "InheritType", "enum", "", "",1
  1683. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1684. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1685. }
  1686. Shading: Y
  1687. Culling: "CullingOff"
  1688. }
  1689. Model: 2268468984784, "Model::SM_Canopy_02_LOD0", "Mesh" {
  1690. Version: 232
  1691. Properties70: {
  1692. P: "RotationActive", "bool", "", "",1
  1693. P: "InheritType", "enum", "", "",1
  1694. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1695. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1696. P: "currentUVSet", "KString", "", "U", "map1"
  1697. }
  1698. Shading: T
  1699. Culling: "CullingOff"
  1700. }
  1701. Model: 2268469017264, "Model::SM_Canopy_02_LOD1", "Mesh" {
  1702. Version: 232
  1703. Properties70: {
  1704. P: "RotationPivot", "Vector3D", "Vector", "",-2.27373675443232e-013,-8.24229573481716e-013,0
  1705. P: "ScalingPivot", "Vector3D", "Vector", "",-2.27373675443232e-013,-8.24229573481716e-013,0
  1706. P: "RotationActive", "bool", "", "",1
  1707. P: "InheritType", "enum", "", "",1
  1708. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1709. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1710. P: "currentUVSet", "KString", "", "U", "map1"
  1711. }
  1712. Shading: T
  1713. Culling: "CullingOff"
  1714. }
  1715. Model: 2268468987104, "Model::SM_Canopy_02_LOD2", "Mesh" {
  1716. Version: 232
  1717. Properties70: {
  1718. P: "RotationPivot", "Vector3D", "Vector", "",-2.27373675443232e-013,-9.09494701772928e-013,0
  1719. P: "ScalingPivot", "Vector3D", "Vector", "",-2.27373675443232e-013,-9.09494701772928e-013,0
  1720. P: "RotationActive", "bool", "", "",1
  1721. P: "InheritType", "enum", "", "",1
  1722. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1723. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1724. P: "currentUVSet", "KString", "", "U", "map1"
  1725. }
  1726. Shading: T
  1727. Culling: "CullingOff"
  1728. }
  1729. Model: 2268469028864, "Model::UCX_SM_Canopy_02_LOD0_05", "Mesh" {
  1730. Version: 232
  1731. Properties70: {
  1732. P: "RotationActive", "bool", "", "",1
  1733. P: "InheritType", "enum", "", "",1
  1734. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1735. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1736. P: "currentUVSet", "KString", "", "U", "map1"
  1737. }
  1738. Shading: T
  1739. Culling: "CullingOff"
  1740. }
  1741. Model: 2268469024224, "Model::UCX_SM_Canopy_02_LOD0_01", "Mesh" {
  1742. Version: 232
  1743. Properties70: {
  1744. P: "RotationActive", "bool", "", "",1
  1745. P: "InheritType", "enum", "", "",1
  1746. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1747. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1748. P: "currentUVSet", "KString", "", "U", "map1"
  1749. }
  1750. Shading: T
  1751. Culling: "CullingOff"
  1752. }
  1753. Model: 2268469042784, "Model::UCX_SM_Canopy_02_LOD0_02", "Mesh" {
  1754. Version: 232
  1755. Properties70: {
  1756. P: "RotationActive", "bool", "", "",1
  1757. P: "InheritType", "enum", "", "",1
  1758. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1759. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1760. P: "currentUVSet", "KString", "", "U", "map1"
  1761. }
  1762. Shading: T
  1763. Culling: "CullingOff"
  1764. }
  1765. Model: 2268469045104, "Model::UCX_SM_Canopy_02_LOD0_03", "Mesh" {
  1766. Version: 232
  1767. Properties70: {
  1768. P: "RotationActive", "bool", "", "",1
  1769. P: "InheritType", "enum", "", "",1
  1770. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1771. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1772. P: "currentUVSet", "KString", "", "U", "map1"
  1773. }
  1774. Shading: T
  1775. Culling: "CullingOff"
  1776. }
  1777. Model: 2268469026544, "Model::UCX_SM_Canopy_02_LOD0_04", "Mesh" {
  1778. Version: 232
  1779. Properties70: {
  1780. P: "RotationActive", "bool", "", "",1
  1781. P: "InheritType", "enum", "", "",1
  1782. P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
  1783. P: "DefaultAttributeIndex", "int", "Integer", "",0
  1784. P: "currentUVSet", "KString", "", "U", "map1"
  1785. }
  1786. Shading: T
  1787. Culling: "CullingOff"
  1788. }
  1789. Material: 2267913032000, "Material::MI_Wood_01", "" {
  1790. Version: 102
  1791. ShadingModel: "phong"
  1792. MultiLayer: 0
  1793. Properties70: {
  1794. P: "AmbientColor", "Color", "", "A",0,0,0
  1795. P: "DiffuseColor", "Color", "", "A",1,1,1
  1796. P: "DiffuseFactor", "Number", "", "A",0.800000011920929
  1797. P: "TransparencyFactor", "Number", "", "A",1
  1798. P: "SpecularColor", "Color", "", "A",0,0,0
  1799. P: "ReflectionFactor", "Number", "", "A",0.5
  1800. P: "Emissive", "Vector3D", "Vector", "",0,0,0
  1801. P: "Ambient", "Vector3D", "Vector", "",0,0,0
  1802. P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
  1803. P: "Specular", "Vector3D", "Vector", "",0,0,0
  1804. P: "Shininess", "double", "Number", "",20
  1805. P: "Opacity", "double", "Number", "",1
  1806. P: "Reflectivity", "double", "Number", "",0
  1807. }
  1808. }
  1809. Material: 2267913033440, "Material::phong1", "" {
  1810. Version: 102
  1811. ShadingModel: "phong"
  1812. MultiLayer: 0
  1813. Properties70: {
  1814. P: "AmbientColor", "Color", "", "A",0,0,0
  1815. P: "DiffuseColor", "Color", "", "A",0.5,0.5,0.5
  1816. P: "DiffuseFactor", "Number", "", "A",0.800000011920929
  1817. P: "TransparencyFactor", "Number", "", "A",1
  1818. P: "SpecularColor", "Color", "", "A",0,0,0
  1819. P: "ReflectionFactor", "Number", "", "A",0.5
  1820. P: "Emissive", "Vector3D", "Vector", "",0,0,0
  1821. P: "Ambient", "Vector3D", "Vector", "",0,0,0
  1822. P: "Diffuse", "Vector3D", "Vector", "",0.400000005960464,0.400000005960464,0.400000005960464
  1823. P: "Specular", "Vector3D", "Vector", "",0,0,0
  1824. P: "Shininess", "double", "Number", "",20
  1825. P: "Opacity", "double", "Number", "",1
  1826. P: "Reflectivity", "double", "Number", "",0
  1827. }
  1828. }
  1829. Video: 2268161665152, "Video::file93", "Clip" {
  1830. Type: "Clip"
  1831. Properties70: {
  1832. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
  1833. }
  1834. UseMipMap: 0
  1835. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
  1836. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_BC.png"
  1837. }
  1838. Video: 2268161663552, "Video::file94", "Clip" {
  1839. Type: "Clip"
  1840. Properties70: {
  1841. P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
  1842. }
  1843. UseMipMap: 0
  1844. Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
  1845. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_N.png"
  1846. }
  1847. Texture: 2267913034880, "Texture::file93", "" {
  1848. Type: "TextureVideoClip"
  1849. Version: 202
  1850. TextureName: "Texture::file93"
  1851. Properties70: {
  1852. P: "CurrentTextureBlendMode", "enum", "", "",0
  1853. P: "UVSet", "KString", "", "", "UVmap_0"
  1854. P: "UseMaterial", "bool", "", "",1
  1855. }
  1856. Media: "Video::file93"
  1857. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_BC.png"
  1858. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_BC.png"
  1859. ModelUVTranslation: 0,0
  1860. ModelUVScaling: 1,1
  1861. Texture_Alpha_Source: "None"
  1862. Cropping: 0,0,0,0
  1863. }
  1864. Texture: 2267913041120, "Texture::file94", "" {
  1865. Type: "TextureVideoClip"
  1866. Version: 202
  1867. TextureName: "Texture::file94"
  1868. Properties70: {
  1869. P: "CurrentTextureBlendMode", "enum", "", "",0
  1870. P: "UVSet", "KString", "", "", "UVmap_0"
  1871. P: "UseMaterial", "bool", "", "",1
  1872. }
  1873. Media: "Video::file94"
  1874. FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wood_01_N.png"
  1875. RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wood_01_N.png"
  1876. ModelUVTranslation: 0,0
  1877. ModelUVScaling: 1,1
  1878. Texture_Alpha_Source: "None"
  1879. Cropping: 0,0,0,0
  1880. }
  1881. Texture: 2267913029600, "Texture::file55", "" {
  1882. Type: "TextureVideoClip"
  1883. Version: 202
  1884. TextureName: "Texture::file55"
  1885. Properties70: {
  1886. P: "CurrentTextureBlendMode", "enum", "", "",0
  1887. P: "UVSet", "KString", "", "", "map1"
  1888. P: "UseMaterial", "bool", "", "",1
  1889. }
  1890. Media: ""
  1891. FileName: ""
  1892. RelativeFilename: ""
  1893. ModelUVTranslation: 0,0
  1894. ModelUVScaling: 1,1
  1895. Texture_Alpha_Source: "None"
  1896. Cropping: 0,0,0,0
  1897. }
  1898. AnimationStack: 2268201114080, "AnimStack::Take 001", "" {
  1899. Properties70: {
  1900. P: "LocalStart", "KTime", "Time", "",1539538600
  1901. P: "LocalStop", "KTime", "Time", "",46186158000
  1902. P: "ReferenceStart", "KTime", "Time", "",1539538600
  1903. P: "ReferenceStop", "KTime", "Time", "",46186158000
  1904. }
  1905. }
  1906. AnimationLayer: 2268260375504, "AnimLayer::BaseLayer", "" {
  1907. }
  1908. }
  1909. ; Object connections
  1910. ;------------------------------------------------------------------
  1911. Connections: {
  1912. ;Model::SM_Canopy_02, Model::RootNode
  1913. C: "OO",2268469014944,0
  1914. ;AnimLayer::BaseLayer, AnimStack::Take 001
  1915. C: "OO",2268260375504,2268201114080
  1916. ;NodeAttribute::, Model::SM_Canopy_02
  1917. C: "OO",2268336202656,2268469014944
  1918. ;Model::LOD_Group_SM_Canopy_02, Model::SM_Canopy_02
  1919. C: "OO",2268469007984,2268469014944
  1920. ;Model::UCX_SM_Canopy_02_LOD0_05, Model::SM_Canopy_02
  1921. C: "OO",2268469028864,2268469014944
  1922. ;Model::UCX_SM_Canopy_02_LOD0_01, Model::SM_Canopy_02
  1923. C: "OO",2268469024224,2268469014944
  1924. ;Model::UCX_SM_Canopy_02_LOD0_02, Model::SM_Canopy_02
  1925. C: "OO",2268469042784,2268469014944
  1926. ;Model::UCX_SM_Canopy_02_LOD0_03, Model::SM_Canopy_02
  1927. C: "OO",2268469045104,2268469014944
  1928. ;Model::UCX_SM_Canopy_02_LOD0_04, Model::SM_Canopy_02
  1929. C: "OO",2268469026544,2268469014944
  1930. ;NodeAttribute::, Model::LOD_Group_SM_Canopy_02
  1931. C: "OO",2268523570192,2268469007984
  1932. ;Model::SM_Canopy_02_LOD0, Model::LOD_Group_SM_Canopy_02
  1933. C: "OO",2268468984784,2268469007984
  1934. ;Model::SM_Canopy_02_LOD1, Model::LOD_Group_SM_Canopy_02
  1935. C: "OO",2268469017264,2268469007984
  1936. ;Model::SM_Canopy_02_LOD2, Model::LOD_Group_SM_Canopy_02
  1937. C: "OO",2268468987104,2268469007984
  1938. ;Texture::file93, Material::MI_Wood_01
  1939. C: "OP",2267913034880,2267913032000, "DiffuseColor"
  1940. ;Texture::file94, Material::MI_Wood_01
  1941. C: "OP",2267913041120,2267913032000, "NormalMap"
  1942. ;Video::file93, Texture::file93
  1943. C: "OO",2268161665152,2267913034880
  1944. ;Video::file94, Texture::file94
  1945. C: "OO",2268161663552,2267913041120
  1946. ;Geometry::, Model::SM_Canopy_02_LOD0
  1947. C: "OO",2267733750432,2268468984784
  1948. ;Material::MI_Wood_01, Model::SM_Canopy_02_LOD0
  1949. C: "OO",2267913032000,2268468984784
  1950. ;Geometry::, Model::SM_Canopy_02_LOD1
  1951. C: "OO",2267733776544,2268469017264
  1952. ;Material::MI_Wood_01, Model::SM_Canopy_02_LOD1
  1953. C: "OO",2267913032000,2268469017264
  1954. ;Geometry::, Model::SM_Canopy_02_LOD2
  1955. C: "OO",2267733762208,2268468987104
  1956. ;Material::MI_Wood_01, Model::SM_Canopy_02_LOD2
  1957. C: "OO",2267913032000,2268468987104
  1958. ;Texture::file55, Material::phong1
  1959. C: "OP",2267913029600,2267913033440, "NormalMap"
  1960. ;Geometry::, Model::UCX_SM_Canopy_02_LOD0_05
  1961. C: "OO",2267733767840,2268469028864
  1962. ;Material::phong1, Model::UCX_SM_Canopy_02_LOD0_05
  1963. C: "OO",2267913033440,2268469028864
  1964. ;Geometry::, Model::UCX_SM_Canopy_02_LOD0_01
  1965. C: "OO",2267733777056,2268469024224
  1966. ;Material::phong1, Model::UCX_SM_Canopy_02_LOD0_01
  1967. C: "OO",2267913033440,2268469024224
  1968. ;Geometry::, Model::UCX_SM_Canopy_02_LOD0_02
  1969. C: "OO",2267733760160,2268469042784
  1970. ;Material::phong1, Model::UCX_SM_Canopy_02_LOD0_02
  1971. C: "OO",2267913033440,2268469042784
  1972. ;Geometry::, Model::UCX_SM_Canopy_02_LOD0_03
  1973. C: "OO",2267733757088,2268469045104
  1974. ;Material::phong1, Model::UCX_SM_Canopy_02_LOD0_03
  1975. C: "OO",2267913033440,2268469045104
  1976. ;Geometry::, Model::UCX_SM_Canopy_02_LOD0_04
  1977. C: "OO",2267733775008,2268469026544
  1978. ;Material::phong1, Model::UCX_SM_Canopy_02_LOD0_04
  1979. C: "OO",2267913033440,2268469026544
  1980. }
  1981. ;Takes section
  1982. ;----------------------------------------------------
  1983. Takes: {
  1984. Current: "Take 001"
  1985. Take: "Take 001" {
  1986. FileName: "Take_001.tak"
  1987. LocalTime: 1539538600,46186158000
  1988. ReferenceTime: 1539538600,46186158000
  1989. }
  1990. }